[arch-commits] Commit in elfutils/repos (6 files)
Eric Bélanger
eric at archlinux.org
Wed Jul 18 03:05:27 UTC 2012
Date: Tuesday, July 17, 2012 @ 23:05:26
Author: eric
Revision: 163718
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
elfutils/repos/extra-i686/PKGBUILD
(from rev 163717, elfutils/trunk/PKGBUILD)
elfutils/repos/extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch
(from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
elfutils/repos/extra-x86_64/PKGBUILD
(from rev 163717, elfutils/trunk/PKGBUILD)
elfutils/repos/extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch
(from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
Deleted:
elfutils/repos/extra-i686/PKGBUILD
elfutils/repos/extra-x86_64/PKGBUILD
--------------------------------------------------------+
extra-i686/PKGBUILD | 76 +++++++--------
extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch | 10 +
extra-x86_64/PKGBUILD | 76 +++++++--------
extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch | 10 +
4 files changed, 98 insertions(+), 74 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2012-07-18 03:05:06 UTC (rev 163717)
+++ extra-i686/PKGBUILD 2012-07-18 03:05:26 UTC (rev 163718)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrej Gelenberg <andrej.gelenberg at udo.edu>
-
-pkgname=elfutils
-pkgver=0.153
-pkgrel=1
-pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information"
-arch=('i686' 'x86_64')
-url="https://fedorahosted.org/elfutils/"
-license=('GPL2')
-depends=('glibc')
-provides=('libelf')
-replaces=('libelf')
-conflicts=('libelf')
-options=('!makeflags')
-source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('289a146182bc29f0236eaa15d8ebdf98'
- '1af9fe25e9316173b81fa4fad3a17ed5')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- CFLAGS+=" -g" # required for test-suite success
- ./configure --prefix=/usr --program-prefix="eu-"
- make
-}
-
-check() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- sed -i "s#./alldts#testrun ./alldts#" tests/run-alldts.sh
- make check
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
-}
Copied: elfutils/repos/extra-i686/PKGBUILD (from rev 163717, elfutils/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-18 03:05:26 UTC (rev 163718)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrej Gelenberg <andrej.gelenberg at udo.edu>
+
+pkgname=elfutils
+pkgver=0.154
+pkgrel=1
+pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/elfutils/"
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+provides=('libelf')
+replaces=('libelf')
+conflicts=('libelf')
+options=('!makeflags')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig} \
+ elfutils-0.154-binutils-pr-ld-13621.patch)
+sha1sums=('3a92a6f636cc3d14d4b3b00ba5c1e88a2a8d510b'
+ '956461d44b03823e0b448e78b1f4aa25ef269e1e'
+ '09681b728edb86c77eed47286554bef048f3507f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ CFLAGS+=" -g" # required for test-suite success
+ patch -p1 -i "${srcdir}/elfutils-0.154-binutils-pr-ld-13621.patch"
+ ./configure --prefix=/usr --program-prefix="eu-"
+ make
+}
+
+check() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make check
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
Copied: elfutils/repos/extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch (from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
===================================================================
--- extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch (rev 0)
+++ extra-i686/elfutils-0.154-binutils-pr-ld-13621.patch 2012-07-18 03:05:26 UTC (rev 163718)
@@ -0,0 +1,10 @@
+diff --git a/tests/run-elflint-self.sh b/tests/run-elflint-self.sh
+index 8aca9e1..d449416 100755
+--- a/tests/run-elflint-self.sh
++++ b/tests/run-elflint-self.sh
+@@ -51,4 +51,4 @@ runtest ../libebl/libebl_sh.so
+ runtest ../libebl/libebl_sparc.so
+ runtest ../libebl/libebl_x86_64.so
+
+-exit $status
++test $status == 0 || echo "binutils PR ld/13621 workaround"
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2012-07-18 03:05:06 UTC (rev 163717)
+++ extra-x86_64/PKGBUILD 2012-07-18 03:05:26 UTC (rev 163718)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrej Gelenberg <andrej.gelenberg at udo.edu>
-
-pkgname=elfutils
-pkgver=0.153
-pkgrel=1
-pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information"
-arch=('i686' 'x86_64')
-url="https://fedorahosted.org/elfutils/"
-license=('GPL2')
-depends=('glibc')
-provides=('libelf')
-replaces=('libelf')
-conflicts=('libelf')
-options=('!makeflags')
-source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('289a146182bc29f0236eaa15d8ebdf98'
- '1af9fe25e9316173b81fa4fad3a17ed5')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- CFLAGS+=" -g" # required for test-suite success
- ./configure --prefix=/usr --program-prefix="eu-"
- make
-}
-
-check() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- sed -i "s#./alldts#testrun ./alldts#" tests/run-alldts.sh
- make check
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
-}
Copied: elfutils/repos/extra-x86_64/PKGBUILD (from rev 163717, elfutils/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2012-07-18 03:05:26 UTC (rev 163718)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrej Gelenberg <andrej.gelenberg at udo.edu>
+
+pkgname=elfutils
+pkgver=0.154
+pkgrel=1
+pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/elfutils/"
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+provides=('libelf')
+replaces=('libelf')
+conflicts=('libelf')
+options=('!makeflags')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig} \
+ elfutils-0.154-binutils-pr-ld-13621.patch)
+sha1sums=('3a92a6f636cc3d14d4b3b00ba5c1e88a2a8d510b'
+ '956461d44b03823e0b448e78b1f4aa25ef269e1e'
+ '09681b728edb86c77eed47286554bef048f3507f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ CFLAGS+=" -g" # required for test-suite success
+ patch -p1 -i "${srcdir}/elfutils-0.154-binutils-pr-ld-13621.patch"
+ ./configure --prefix=/usr --program-prefix="eu-"
+ make
+}
+
+check() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make check
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
Copied: elfutils/repos/extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch (from rev 163717, elfutils/trunk/elfutils-0.154-binutils-pr-ld-13621.patch)
===================================================================
--- extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch (rev 0)
+++ extra-x86_64/elfutils-0.154-binutils-pr-ld-13621.patch 2012-07-18 03:05:26 UTC (rev 163718)
@@ -0,0 +1,10 @@
+diff --git a/tests/run-elflint-self.sh b/tests/run-elflint-self.sh
+index 8aca9e1..d449416 100755
+--- a/tests/run-elflint-self.sh
++++ b/tests/run-elflint-self.sh
+@@ -51,4 +51,4 @@ runtest ../libebl/libebl_sh.so
+ runtest ../libebl/libebl_sparc.so
+ runtest ../libebl/libebl_x86_64.so
+
+-exit $status
++test $status == 0 || echo "binutils PR ld/13621 workaround"
More information about the arch-commits
mailing list