Date: Friday, March 3, 2023 @ 21:56:14
Author: dvzrv
Revision: 470211
archrelease: copy trunk to staging-x86_64
Added:
elfutils/repos/staging-x86_64/
elfutils/repos/staging-x86_64/PKGBUILD
(from rev 470210, elfutils/trunk/PKGBUILD)
elfutils/repos/staging-x86_64/keys/
----------+
PKGBUILD | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 133 insertions(+)
Copied: elfutils/repos/staging-x86_64/PKGBUILD (from rev 470210,
elfutils/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2023-03-03 21:56:14 UTC (rev 470211)
@@ -0,0 +1,133 @@
+# Maintainer: David Runge <[email protected]>
+# Contributor: Laurent Carlier <[email protected]>
+# Contributor: Stéphane Gaudreault <[email protected]>
+# Contributor: Andrej Gelenberg <[email protected]>
+
+pkgbase=elfutils
+pkgname=(debuginfod elfutils libelf)
+pkgver=0.189
+pkgrel=1
+pkgdesc="Handle ELF object files and DWARF debugging information"
+arch=(x86_64)
+url="https://sourceware.org/elfutils/"
+license=(LGPL3 GPL3)
+makedepends=(bzip2 curl gcc-libs libarchive libmicrohttpd sqlite xz zlib zstd)
+options=(staticlibs)
+source=(https://sourceware.org/$pkgbase/ftp/$pkgver/$pkgbase-$pkgver.tar.bz2{,.sig})
+sha512sums=('93a877e34db93e5498581d0ab2d702b08c0d87e4cafd9cec9d6636dfa85a168095c305c11583a5b0fb79374dd93bc8d0e9ce6016e6c172764bcea12861605b71'
+ 'SKIP')
+b2sums=('30596271e14cf3408326abc38a9775b849b8cb0ee119a5455df9434a7d3b9a57afb15e0236a179a26c7bd400d303749964c9d6350c419f747784fd99d12517e0'
+ 'SKIP')
+validpgpkeys=(
+ '47CC0331081B8BC6D0FD4DA08370665B57816A6A' # Mark J. Wielaard
<[email protected]>
+ 'EC3CFE88F6CA0788774F5C1D1AA44BE649DE760A' # Mark Wielaard <[email protected]>
+)
+
+_pick() {
+ local p="$1" f d; shift
+ for f; do
+ d="$srcdir/$p/${f#$pkgdir/}"
+ mkdir -p "$(dirname "$d")"
+ mv "$f" "$d"
+ rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+ done
+}
+
+prepare() {
+ # remove failing test due to missing glibc debug package during test:
https://bugs.archlinux.org/task/74875
+ sed -e 's/run-backtrace-native.sh//g' -i $pkgbase-$pkgver/tests/Makefile.am
+ (
+ cd $pkgbase-$pkgver
+ autoreconf -fiv
+ )
+
+ cp -av $pkgbase-$pkgver $pkgbase-test-$pkgver
+}
+
+
+build() {
+ local configure_options=(
+ --prefix=/usr
+ --sysconfdir=/etc
+ --program-prefix="eu-"
+ --enable-deterministic-archives
+ )
+
+ (
+ # fat-lto-objects is required for non-mangled .a files in libelf
+ CFLAGS+=" -ffat-lto-objects"
+ cd $pkgbase-$pkgver
+ ./configure "${configure_options[@]}"
+ make
+ )
+ (
+ cd $pkgbase-test-$pkgver
+ # debugging information is required for test-suite
+ CFLAGS+=" -g"
+ # fat-lto-objects is required for non-mangled .a files in libelf
+ CFLAGS+=" -ffat-lto-objects"
+ ./configure "${configure_options[@]}"
+ make
+ )
+}
+
+check() {
+ make check -C $pkgbase-test-$pkgver
+}
+
+package_debuginfod() {
+ pkgdesc+=" (debuginfod)"
+ depends=(
+ gcc-libs
+ glibc
+ libarchive libarchive.so
+ libelf=$pkgver
+ libmicrohttpd libmicrohttpd.so
+ sqlite libsqlite3.so
+ )
+ optdepends=("elfutils=$pkgver: for translations")
+
+ make DESTDIR="$pkgdir" install -C $pkgbase-$pkgver
+ install -vDm 644 $pkgbase-$pkgver/{AUTHORS,ChangeLog,NEWS,NOTES,README} -t
"$pkgdir/usr/share/doc/$pkgname/"
+
+ # set the default DEBUGINFOD_URLS environment variable to the distribution's
debuginfod URL
+ printf "https://debuginfod.archlinux.org\n" >
"$pkgdir/etc/debuginfod/archlinux.urls"
+
+ (
+ cd "$pkgdir"
+
+ _pick libelf etc/debuginfod/*
+ _pick libelf etc/profile.d/*
+ _pick libelf usr/{include,lib}
+ _pick elfutils usr/bin/eu-*
+ _pick elfutils usr/share/locale
+ _pick elfutils usr/share/man/man1/eu-*
+ _pick elfutils usr/share/man/man3/elf_*
+ )
+
+}
+
+package_elfutils() {
+ pkgdesc+=" (utilities)"
+ depends=(gcc-libs glibc libelf=$pkgver)
+
+ mv -v elfutils/* "$pkgdir"
+ install -vDm 644 $pkgbase-$pkgver/{AUTHORS,ChangeLog,NEWS,NOTES,README} -t
"$pkgdir/usr/share/doc/$pkgname/"
+}
+
+package_libelf() {
+ pkgdesc+=" (libraries)"
+ depends=(
+ bzip2 libbz2.so
+ curl libcurl.so
+ gcc-libs
+ glibc
+ xz liblzma.so
+ zlib
+ zstd libzstd.so
+ )
+ # NOTE: the shared objects can not be added to provides as they are not
versioned
+
+ mv -v libelf/* "$pkgdir"
+ install -vDm 644 $pkgbase-$pkgver/{AUTHORS,ChangeLog,NEWS,NOTES,README} -t
"$pkgdir/usr/share/doc/$pkgname/"
+}