[arch-commits] Commit in lzo2/repos (6 files)
Tobias Powalowski
tpowa at nymeria.archlinux.org
Sun Jun 29 09:18:23 UTC 2014
Date: Sunday, June 29, 2014 @ 11:18:22
Author: tpowa
Revision: 215563
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
lzo2/repos/testing-i686/
lzo2/repos/testing-i686/PKGBUILD
(from rev 215562, lzo2/trunk/PKGBUILD)
lzo2/repos/testing-i686/configure-2.07.patch
(from rev 215562, lzo2/trunk/configure-2.07.patch)
lzo2/repos/testing-x86_64/PKGBUILD
(from rev 215562, lzo2/trunk/PKGBUILD)
lzo2/repos/testing-x86_64/configure-2.07.patch
(from rev 215562, lzo2/trunk/configure-2.07.patch)
Deleted:
lzo2/repos/testing-x86_64/PKGBUILD
-------------------------------------+
/PKGBUILD | 47 ++++++++++++++++++++++++++++++++++
testing-i686/PKGBUILD | 47 ++++++++++++++++++++++++++++++++++
testing-i686/configure-2.07.patch | 12 ++++++++
testing-x86_64/PKGBUILD | 41 -----------------------------
testing-x86_64/configure-2.07.patch | 12 ++++++++
5 files changed, 118 insertions(+), 41 deletions(-)
Copied: lzo2/repos/testing-i686/PKGBUILD (from rev 215562, lzo2/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2014-06-29 09:18:22 UTC (rev 215563)
@@ -0,0 +1,47 @@
+# $Id$
+# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
+# Maintainer: dorphell <dorphell at archlinux.org>
+pkgname=lzo2
+pkgver=2.07
+pkgrel=2
+pkgdesc="Portable lossless data compression library"
+arch=('i686' 'x86_64')
+url="http://www.oberhumer.com/opensource/lzo"
+license=('GPL')
+depends=('glibc')
+source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz
+ configure-2.07.patch)
+md5sums=('4011935e95171e78ad4894f7335c982a'
+ 'db3ead3fb5590275838d3080ea7342d1')
+
+prepare() {
+ cd "${srcdir}/lzo-${pkgver}"
+ patch -Np0 -i ${srcdir}/configure-2.07.patch
+}
+
+build() {
+ cd "${srcdir}/lzo-${pkgver}"
+ ./configure --prefix=/usr --enable-shared
+ make
+
+ # build minilzo
+ gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
+ gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 minilzo/minilzo.o
+}
+
+check() {
+ cd "${srcdir}/lzo-${pkgver}"
+ make test # Larger test
+ make check
+}
+
+package() {
+ cd "${srcdir}/lzo-${pkgver}"
+ make DESTDIR=${pkgdir} install
+
+ # install minilzo
+ install -m 755 libminilzo.so.0 ${pkgdir}/usr/lib
+ install -p -m 644 minilzo/minilzo.h ${pkgdir}/usr/include/lzo
+ cd ${pkgdir}/usr/lib
+ ln -s libminilzo.so.0 libminilzo.so
+}
Copied: lzo2/repos/testing-i686/configure-2.07.patch (from rev 215562, lzo2/trunk/configure-2.07.patch)
===================================================================
--- testing-i686/configure-2.07.patch (rev 0)
+++ testing-i686/configure-2.07.patch 2014-06-29 09:18:22 UTC (rev 215563)
@@ -0,0 +1,12 @@
+--- configure.ORIG 2014-06-25 15:47:13.000000000 +0200
++++ configure 2014-06-26 00:05:33.000000000 +0200
+@@ -13953,7 +13953,7 @@
+ /* end confdefs.h. */
+ #define LZO_CFG_NO_CONFIG_HEADER 1
+ #define LZO_WANT_ACC_INCD_H 1
+-#include "include/lzo/lzodefs.h"
++#include "include/lzo/lzoconf.h"
+ #include "src/lzo_supp.h"
+
+ #undef LZOCHK_ASSERT
+
Deleted: testing-x86_64/PKGBUILD
===================================================================
--- testing-x86_64/PKGBUILD 2014-06-29 09:18:02 UTC (rev 215562)
+++ testing-x86_64/PKGBUILD 2014-06-29 09:18:22 UTC (rev 215563)
@@ -1,41 +0,0 @@
-# $Id$
-# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
-# Maintainer: dorphell <dorphell at archlinux.org>
-pkgname=lzo2
-pkgver=2.07
-pkgrel=1
-pkgdesc="Portable lossless data compression library"
-arch=('i686' 'x86_64')
-url="http://www.oberhumer.com/opensource/lzo"
-license=('GPL')
-depends=('glibc')
-source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
-md5sums=('4011935e95171e78ad4894f7335c982a')
-
-build() {
- cd "${srcdir}/lzo-${pkgver}"
-
- ./configure --prefix=/usr --enable-shared
- make
-
- # build minilzo
- gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
- gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 minilzo/minilzo.o
-}
-
-check() {
- cd "${srcdir}/lzo-${pkgver}"
- make test # Larger test
- make check
-}
-
-package() {
- cd "${srcdir}/lzo-${pkgver}"
- make DESTDIR=${pkgdir} install
-
- # install minilzo
- install -m 755 libminilzo.so.0 ${pkgdir}/usr/lib
- install -p -m 644 minilzo/minilzo.h ${pkgdir}/usr/include/lzo
- cd ${pkgdir}/usr/lib
- ln -s libminilzo.so.0 libminilzo.so
-}
Copied: lzo2/repos/testing-x86_64/PKGBUILD (from rev 215562, lzo2/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-06-29 09:18:22 UTC (rev 215563)
@@ -0,0 +1,47 @@
+# $Id$
+# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
+# Maintainer: dorphell <dorphell at archlinux.org>
+pkgname=lzo2
+pkgver=2.07
+pkgrel=2
+pkgdesc="Portable lossless data compression library"
+arch=('i686' 'x86_64')
+url="http://www.oberhumer.com/opensource/lzo"
+license=('GPL')
+depends=('glibc')
+source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz
+ configure-2.07.patch)
+md5sums=('4011935e95171e78ad4894f7335c982a'
+ 'db3ead3fb5590275838d3080ea7342d1')
+
+prepare() {
+ cd "${srcdir}/lzo-${pkgver}"
+ patch -Np0 -i ${srcdir}/configure-2.07.patch
+}
+
+build() {
+ cd "${srcdir}/lzo-${pkgver}"
+ ./configure --prefix=/usr --enable-shared
+ make
+
+ # build minilzo
+ gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
+ gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 minilzo/minilzo.o
+}
+
+check() {
+ cd "${srcdir}/lzo-${pkgver}"
+ make test # Larger test
+ make check
+}
+
+package() {
+ cd "${srcdir}/lzo-${pkgver}"
+ make DESTDIR=${pkgdir} install
+
+ # install minilzo
+ install -m 755 libminilzo.so.0 ${pkgdir}/usr/lib
+ install -p -m 644 minilzo/minilzo.h ${pkgdir}/usr/include/lzo
+ cd ${pkgdir}/usr/lib
+ ln -s libminilzo.so.0 libminilzo.so
+}
Copied: lzo2/repos/testing-x86_64/configure-2.07.patch (from rev 215562, lzo2/trunk/configure-2.07.patch)
===================================================================
--- testing-x86_64/configure-2.07.patch (rev 0)
+++ testing-x86_64/configure-2.07.patch 2014-06-29 09:18:22 UTC (rev 215563)
@@ -0,0 +1,12 @@
+--- configure.ORIG 2014-06-25 15:47:13.000000000 +0200
++++ configure 2014-06-26 00:05:33.000000000 +0200
+@@ -13953,7 +13953,7 @@
+ /* end confdefs.h. */
+ #define LZO_CFG_NO_CONFIG_HEADER 1
+ #define LZO_WANT_ACC_INCD_H 1
+-#include "include/lzo/lzodefs.h"
++#include "include/lzo/lzoconf.h"
+ #include "src/lzo_supp.h"
+
+ #undef LZOCHK_ASSERT
+
More information about the arch-commits
mailing list