[arch-commits] Commit in lzo/repos (8 files)

Pierre Schmitz pierre at archlinux.org
Sat Feb 18 15:59:31 UTC 2012


    Date: Saturday, February 18, 2012 @ 10:59:31
  Author: pierre
Revision: 150589

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  lzo/repos/extra-i686/PKGBUILD
    (from rev 150588, lzo/trunk/PKGBUILD)
  lzo/repos/extra-i686/nasm-gcc3.patch
    (from rev 150588, lzo/trunk/nasm-gcc3.patch)
  lzo/repos/extra-x86_64/PKGBUILD
    (from rev 150588, lzo/trunk/PKGBUILD)
  lzo/repos/extra-x86_64/nasm-gcc3.patch
    (from rev 150588, lzo/trunk/nasm-gcc3.patch)
Deleted:
  lzo/repos/extra-i686/PKGBUILD
  lzo/repos/extra-i686/nasm-gcc3.patch
  lzo/repos/extra-x86_64/PKGBUILD
  lzo/repos/extra-x86_64/nasm-gcc3.patch

------------------------------+
 extra-i686/PKGBUILD          |   70 +++++++++++++++++------------------
 extra-i686/nasm-gcc3.patch   |   80 ++++++++++++++++++++---------------------
 extra-x86_64/PKGBUILD        |   70 +++++++++++++++++------------------
 extra-x86_64/nasm-gcc3.patch |   80 ++++++++++++++++++++---------------------
 4 files changed, 150 insertions(+), 150 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-02-18 15:59:04 UTC (rev 150588)
+++ extra-i686/PKGBUILD	2012-02-18 15:59:31 UTC (rev 150589)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
-# Contributor: Judd Vinet <jvinet at zeroflux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=lzo
-pkgver=1.08
-pkgrel=6
-pkgdesc='A portable lossless data compression library written in ANSI C'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://www.oberhumer.com/opensource/lzo'
-depends=('glibc')
-makedepends=('nasm')
-options=('!libtool')
-source=("http://www.oberhumer.com/opensource/lzo/download/LZO-v1/${pkgname}-${pkgver}.tar.gz"
-        'nasm-gcc3.patch')
-md5sums=('ab94d3da364c7cbd5b78d76f1875b0f6'
-         '43fb13762383b572d22152f8815ea4a5')
-
-build() {
-	cd "${srcdir}"/${pkgname}-${pkgver}
-
-	patch -p0 -i "${srcdir}"/nasm-gcc3.patch
-	autoconf
-	./configure --prefix=/usr --enable-shared
-	make
-}
-
-package() {
-	cd "${srcdir}"/${pkgname}-${pkgver}
-
-	make DESTDIR="${pkgdir}" install
-}

Copied: lzo/repos/extra-i686/PKGBUILD (from rev 150588, lzo/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-02-18 15:59:31 UTC (rev 150589)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer:
+# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
+# Contributor: Judd Vinet <jvinet at zeroflux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=lzo
+pkgver=1.08
+pkgrel=7
+pkgdesc='A portable lossless data compression library written in ANSI C'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://www.oberhumer.com/opensource/lzo'
+depends=('glibc')
+makedepends=('nasm')
+options=('!libtool')
+source=("http://www.oberhumer.com/opensource/lzo/download/LZO-v1/${pkgname}-${pkgver}.tar.gz"
+        'nasm-gcc3.patch')
+md5sums=('ab94d3da364c7cbd5b78d76f1875b0f6'
+         '43fb13762383b572d22152f8815ea4a5')
+
+build() {
+	cd "${srcdir}"/${pkgname}-${pkgver}
+
+	patch -p0 -i "${srcdir}"/nasm-gcc3.patch
+	autoconf
+	./configure --prefix=/usr --enable-shared
+	make
+}
+
+package() {
+	cd "${srcdir}"/${pkgname}-${pkgver}
+
+	make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/nasm-gcc3.patch
===================================================================
--- extra-i686/nasm-gcc3.patch	2012-02-18 15:59:04 UTC (rev 150588)
+++ extra-i686/nasm-gcc3.patch	2012-02-18 15:59:31 UTC (rev 150589)
@@ -1,40 +0,0 @@
---- configure.in	2002-07-13 01:31:52.000000000 +0000
-+++ configure.in.patched	2003-09-10 14:37:31.000000000 +0000
-@@ -319,13 +319,13 @@
- [AC_TRY_RUN([#include <stdio.h>
- int test() {
- #if defined(__GNUC__)
--  __asm__ __volatile__ ("
--  .align 4
--mfx_a1:
--  .byte 0
--  .align 4
--mfx_a2:
--  ");
-+  __asm__ __volatile__ (
-+  ".align 4\n"
-+"mfx_a1:\n"
-+  ".byte 0\n"
-+  ".align 4\n"
-+"mfx_a2:\n"
-+  );
- #endif
-   return 0;
- }
-@@ -363,11 +363,11 @@
- #endif
-   int mfx_asm_func();
-   static void test() {
--    __asm__ __volatile__("
--    .globl mfx_asm_func
--    mfx_asm_func:
--      .byte 0
--    ");
-+    __asm__ __volatile__(
-+    ".globl mfx_asm_func\n"
-+    "mfx_asm_func:\n"
-+      ".byte 0\n"
-+    );
-   }
- ], [
-   return mfx_asm_func();

Copied: lzo/repos/extra-i686/nasm-gcc3.patch (from rev 150588, lzo/trunk/nasm-gcc3.patch)
===================================================================
--- extra-i686/nasm-gcc3.patch	                        (rev 0)
+++ extra-i686/nasm-gcc3.patch	2012-02-18 15:59:31 UTC (rev 150589)
@@ -0,0 +1,40 @@
+--- configure.in	2002-07-13 01:31:52.000000000 +0000
++++ configure.in.patched	2003-09-10 14:37:31.000000000 +0000
+@@ -319,13 +319,13 @@
+ [AC_TRY_RUN([#include <stdio.h>
+ int test() {
+ #if defined(__GNUC__)
+-  __asm__ __volatile__ ("
+-  .align 4
+-mfx_a1:
+-  .byte 0
+-  .align 4
+-mfx_a2:
+-  ");
++  __asm__ __volatile__ (
++  ".align 4\n"
++"mfx_a1:\n"
++  ".byte 0\n"
++  ".align 4\n"
++"mfx_a2:\n"
++  );
+ #endif
+   return 0;
+ }
+@@ -363,11 +363,11 @@
+ #endif
+   int mfx_asm_func();
+   static void test() {
+-    __asm__ __volatile__("
+-    .globl mfx_asm_func
+-    mfx_asm_func:
+-      .byte 0
+-    ");
++    __asm__ __volatile__(
++    ".globl mfx_asm_func\n"
++    "mfx_asm_func:\n"
++      ".byte 0\n"
++    );
+   }
+ ], [
+   return mfx_asm_func();

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-02-18 15:59:04 UTC (rev 150588)
+++ extra-x86_64/PKGBUILD	2012-02-18 15:59:31 UTC (rev 150589)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
-# Contributor: Judd Vinet <jvinet at zeroflux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=lzo
-pkgver=1.08
-pkgrel=6
-pkgdesc='A portable lossless data compression library written in ANSI C'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://www.oberhumer.com/opensource/lzo'
-depends=('glibc')
-makedepends=('nasm')
-options=('!libtool')
-source=("http://www.oberhumer.com/opensource/lzo/download/LZO-v1/${pkgname}-${pkgver}.tar.gz"
-        'nasm-gcc3.patch')
-md5sums=('ab94d3da364c7cbd5b78d76f1875b0f6'
-         '43fb13762383b572d22152f8815ea4a5')
-
-build() {
-	cd "${srcdir}"/${pkgname}-${pkgver}
-
-	patch -p0 -i "${srcdir}"/nasm-gcc3.patch
-	autoconf
-	./configure --prefix=/usr --enable-shared
-	make
-}
-
-package() {
-	cd "${srcdir}"/${pkgname}-${pkgver}
-
-	make DESTDIR="${pkgdir}" install
-}

Copied: lzo/repos/extra-x86_64/PKGBUILD (from rev 150588, lzo/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-02-18 15:59:31 UTC (rev 150589)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer:
+# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
+# Contributor: Judd Vinet <jvinet at zeroflux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=lzo
+pkgver=1.08
+pkgrel=7
+pkgdesc='A portable lossless data compression library written in ANSI C'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://www.oberhumer.com/opensource/lzo'
+depends=('glibc')
+makedepends=('nasm')
+options=('!libtool')
+source=("http://www.oberhumer.com/opensource/lzo/download/LZO-v1/${pkgname}-${pkgver}.tar.gz"
+        'nasm-gcc3.patch')
+md5sums=('ab94d3da364c7cbd5b78d76f1875b0f6'
+         '43fb13762383b572d22152f8815ea4a5')
+
+build() {
+	cd "${srcdir}"/${pkgname}-${pkgver}
+
+	patch -p0 -i "${srcdir}"/nasm-gcc3.patch
+	autoconf
+	./configure --prefix=/usr --enable-shared
+	make
+}
+
+package() {
+	cd "${srcdir}"/${pkgname}-${pkgver}
+
+	make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/nasm-gcc3.patch
===================================================================
--- extra-x86_64/nasm-gcc3.patch	2012-02-18 15:59:04 UTC (rev 150588)
+++ extra-x86_64/nasm-gcc3.patch	2012-02-18 15:59:31 UTC (rev 150589)
@@ -1,40 +0,0 @@
---- configure.in	2002-07-13 01:31:52.000000000 +0000
-+++ configure.in.patched	2003-09-10 14:37:31.000000000 +0000
-@@ -319,13 +319,13 @@
- [AC_TRY_RUN([#include <stdio.h>
- int test() {
- #if defined(__GNUC__)
--  __asm__ __volatile__ ("
--  .align 4
--mfx_a1:
--  .byte 0
--  .align 4
--mfx_a2:
--  ");
-+  __asm__ __volatile__ (
-+  ".align 4\n"
-+"mfx_a1:\n"
-+  ".byte 0\n"
-+  ".align 4\n"
-+"mfx_a2:\n"
-+  );
- #endif
-   return 0;
- }
-@@ -363,11 +363,11 @@
- #endif
-   int mfx_asm_func();
-   static void test() {
--    __asm__ __volatile__("
--    .globl mfx_asm_func
--    mfx_asm_func:
--      .byte 0
--    ");
-+    __asm__ __volatile__(
-+    ".globl mfx_asm_func\n"
-+    "mfx_asm_func:\n"
-+      ".byte 0\n"
-+    );
-   }
- ], [
-   return mfx_asm_func();

Copied: lzo/repos/extra-x86_64/nasm-gcc3.patch (from rev 150588, lzo/trunk/nasm-gcc3.patch)
===================================================================
--- extra-x86_64/nasm-gcc3.patch	                        (rev 0)
+++ extra-x86_64/nasm-gcc3.patch	2012-02-18 15:59:31 UTC (rev 150589)
@@ -0,0 +1,40 @@
+--- configure.in	2002-07-13 01:31:52.000000000 +0000
++++ configure.in.patched	2003-09-10 14:37:31.000000000 +0000
+@@ -319,13 +319,13 @@
+ [AC_TRY_RUN([#include <stdio.h>
+ int test() {
+ #if defined(__GNUC__)
+-  __asm__ __volatile__ ("
+-  .align 4
+-mfx_a1:
+-  .byte 0
+-  .align 4
+-mfx_a2:
+-  ");
++  __asm__ __volatile__ (
++  ".align 4\n"
++"mfx_a1:\n"
++  ".byte 0\n"
++  ".align 4\n"
++"mfx_a2:\n"
++  );
+ #endif
+   return 0;
+ }
+@@ -363,11 +363,11 @@
+ #endif
+   int mfx_asm_func();
+   static void test() {
+-    __asm__ __volatile__("
+-    .globl mfx_asm_func
+-    mfx_asm_func:
+-      .byte 0
+-    ");
++    __asm__ __volatile__(
++    ".globl mfx_asm_func\n"
++    "mfx_asm_func:\n"
++      ".byte 0\n"
++    );
+   }
+ ], [
+   return mfx_asm_func();




More information about the arch-commits mailing list