Date: Thursday, November 17, 2022 @ 17:43:24
Author: heftig
Revision: 1349382
archrelease: copy trunk to multilib-x86_64
Added:
lib32-libunwind/repos/multilib-x86_64/PKGBUILD
(from rev 1349381, lib32-libunwind/trunk/PKGBUILD)
lib32-libunwind/repos/multilib-x86_64/keys/
Deleted:
lib32-libunwind/repos/multilib-x86_64/PKGBUILD
----------+
PKGBUILD | 98 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 50 insertions(+), 48 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-17 17:43:03 UTC (rev 1349381)
+++ PKGBUILD 2022-11-17 17:43:24 UTC (rev 1349382)
@@ -1,48 +0,0 @@
-# Maintainer: Laurent Carlier <[email protected]>
-# Contributor: Lone_Wolf <lonewolf at xs4all dot nl>
-# Contributor: Moritz Lipp <[email protected]>
-
-_pkgbasename=libunwind
-pkgname=lib32-libunwind
-pkgver=1.6.2
-pkgrel=1
-pkgdesc="Portable and efficient C programming interface (API) to determine the
call-chain of a program (32-bit)"
-arch=('x86_64')
-url="https://www.nongnu.org/libunwind/"
-license=('GPL')
-makedepends=('gcc-multilib')
-depends=('lib32-gcc-libs' 'libunwind' 'lib32-xz')
-source=(https://download.savannah.gnu.org/releases/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz{,.sig})
-sha512sums=('1d17dfb14f99a894a6cda256caf9ec481c14068aaf8f3a85fa3befa7c7cca7fca0f544a91a3a7c2f2fc55bab19b06a67ca79f55ac9081151d94478c7f611f8f7'
- 'SKIP')
-validpgpkeys=('1675C8DA2EF907FB116EB709EC52B396E6874AF2') # Dave Watson
<[email protected]> , project admin for unwind
-validpgpkeys+=('75D2CFC56CC2E935A4143297015A268A17D55FA4') # Dave Watson
-
-build() {
- export CC="gcc -m32"
- export CXX="g++ -m32"
-
- cd $_pkgbasename-$pkgver
- ./configure \
- --build=i686-pc-linux-gnu \
- --host=i686-pc-linux-gnu \
- --prefix=/usr \
- --libdir=/usr/lib32 \
- --disable-documentation
- make
-
-}
-
-check() {
- cd "$srcdir/$_pkgbasename-$pkgver"
- # This function is ``supposed'' to fail. Upstream know, but haven't fixed it.
- make check || :
-}
-
-package_lib32-libunwind() {
- cd $_pkgbasename-$pkgver
- make DESTDIR="$pkgdir" install
-
- # this build only provides multilib binary for x86 on x86_64 , remove all
includes for other architectures
- find "$pkgdir"/usr/include/*.h -not -name "*x86*" -exec rm -f {} \;
-}
Copied: lib32-libunwind/repos/multilib-x86_64/PKGBUILD (from rev 1349381,
lib32-libunwind/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-11-17 17:43:24 UTC (rev 1349382)
@@ -0,0 +1,50 @@
+# Maintainer: Laurent Carlier <[email protected]>
+# Contributor: Lone_Wolf <lonewolf at xs4all dot nl>
+# Contributor: Moritz Lipp <[email protected]>
+
+_pkgbasename=libunwind
+pkgname=lib32-libunwind
+pkgver=1.6.2
+pkgrel=2
+pkgdesc="Portable and efficient C programming interface (API) to determine the
call-chain of a program (32-bit)"
+arch=('x86_64')
+url="https://www.nongnu.org/libunwind/"
+license=('GPL')
+depends=('lib32-gcc-libs' 'libunwind' 'lib32-xz')
+options=('debug')
+source=(https://download.savannah.gnu.org/releases/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz{,.sig})
+sha512sums=('1d17dfb14f99a894a6cda256caf9ec481c14068aaf8f3a85fa3befa7c7cca7fca0f544a91a3a7c2f2fc55bab19b06a67ca79f55ac9081151d94478c7f611f8f7'
+ 'SKIP')
+validpgpkeys=('1675C8DA2EF907FB116EB709EC52B396E6874AF2') # Dave Watson
<[email protected]> , project admin for unwind
+validpgpkeys+=('75D2CFC56CC2E935A4143297015A268A17D55FA4') # Dave Watson
+
+build() {
+ export CC="gcc -m32"
+ export CXX="g++ -m32"
+
+ cd $_pkgbasename-$pkgver
+ ./configure \
+ --build=i686-pc-linux-gnu \
+ --host=i686-pc-linux-gnu \
+ --prefix=/usr \
+ --libdir=/usr/lib32 \
+ --disable-documentation
+ make
+
+}
+
+check() {
+ cd "$srcdir/$_pkgbasename-$pkgver"
+ # This function is ``supposed'' to fail. Upstream know, but haven't fixed it.
+ make check || :
+}
+
+package() {
+ cd $_pkgbasename-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ # this build only provides multilib binary for x86 on x86_64 , remove all
includes for other architectures
+ find "$pkgdir"/usr/include/*.h -not -name "*x86*" -exec rm -f {} \;
+}
+
+# vim:set sw=2 sts=-1 et: