Date: Thursday, October 13, 2022 @ 06:33:19
Author: grawlinson
Revision: 1327953
archrelease: copy trunk to community-x86_64
Added:
libabigail/repos/community-x86_64/PKGBUILD
(from rev 1327952, libabigail/trunk/PKGBUILD)
Deleted:
libabigail/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 176 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 88 insertions(+), 88 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-13 06:32:35 UTC (rev 1327952)
+++ PKGBUILD 2022-10-13 06:33:19 UTC (rev 1327953)
@@ -1,88 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-# Contributor: Alexander 'z33ky' Hirsch <[email protected]>
-
-pkgname=libabigail
-pkgver=2.0
-pkgrel=2
-pkgdesc='ABI Generic Analysis and Instrumentation Library'
-arch=('x86_64')
-license=('Apache')
-url='https://sourceware.org/libabigail/'
-depends=(
- 'libxml2'
- 'elfutils'
- 'python'
-)
-makedepends=(
- 'git'
- 'python-sphinx'
-)
-_commit='7060a0b2675e871e49ff0e17b691113bbe1a7c5d'
-source=("git://sourceware.org/git/libabigail.git#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
- cd "$pkgname"
-
- git describe --tags | sed 's/^libabigail-//'
-}
-
-prepare() {
- cd "$pkgname"
-
- # add man page for kmidiff
- git cherry-pick --no-commit eb3e549794d059294cf1f4a63865e6eb7af8b2e3
-
- autoreconf -fi
-}
-
-build() {
- cd "$pkgname"
-
- ./configure \
- --prefix=/usr \
- --enable-bash-completion \
- --disable-manual \
- --disable-apidoc \
- --disable-static
-
- make
-
- # man pages
- make -C doc/manuals man
-}
-
-check() {
- cd "$pkgname"
-
- make check
-}
-
-package() {
- cd "$pkgname"
-
- make DESTDIR="$pkgdir" install
-
- # man pages
- OLDIFS="$IFS"
- IFS="."
- pushd doc/manuals/man
-
- # delete Fedora-specific man page
- rm -vf fedabipkgdiff.1
-
- for filename in *; do
- read -ra PART <<< "$filename"
- section="${PART[1]}"
- install -vDm644 -t "$pkgdir/usr/share/man/man${section}" "$filename"
- done
- IFS="$OLDIFS"
- unset OLDIFS
- popd
-
- # bash completion
- cd bash-completion
- for filename in abicompat abidiff abidw abilint abipkgdiff; do
- install -vDm644 -t "$pkgdir/usr/share/bash-completion/completions"
"$filename"
- done
-}
Copied: libabigail/repos/community-x86_64/PKGBUILD (from rev 1327952,
libabigail/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-13 06:33:19 UTC (rev 1327953)
@@ -0,0 +1,88 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: Alexander 'z33ky' Hirsch <[email protected]>
+
+pkgname=libabigail
+pkgver=2.1
+pkgrel=1
+pkgdesc='ABI Generic Analysis and Instrumentation Library'
+arch=('x86_64')
+license=('Apache')
+url='https://sourceware.org/libabigail/'
+depends=(
+ 'libxml2'
+ 'elfutils'
+ 'python'
+)
+makedepends=(
+ 'git'
+ 'python-sphinx'
+)
+options=('debug')
+_commit='9e50fa7c408fa2f6a4f3200656ad9faf8972eb4e'
+source=("git://sourceware.org/git/libabigail.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd "$pkgname"
+
+ head -n 1 NEWS
+ # no git tag
+ #git describe --tags | sed 's/^libabigail-//'
+}
+
+prepare() {
+ cd "$pkgname"
+
+ autoreconf -fi
+}
+
+build() {
+ cd "$pkgname"
+
+ ./configure \
+ --prefix=/usr \
+ --enable-bash-completion \
+ --disable-manual \
+ --disable-apidoc \
+ --disable-static
+
+ make
+
+ # man pages
+ make -C doc/manuals man
+}
+
+check() {
+ cd "$pkgname"
+
+ make check
+}
+
+package() {
+ cd "$pkgname"
+
+ make DESTDIR="$pkgdir" install
+
+ # man pages
+ OLDIFS="$IFS"
+ IFS="."
+ pushd doc/manuals/man
+
+ # delete Fedora-specific man page
+ rm -vf fedabipkgdiff.1
+
+ for filename in *; do
+ read -ra PART <<< "$filename"
+ section="${PART[1]}"
+ install -vDm644 -t "$pkgdir/usr/share/man/man${section}" "$filename"
+ done
+ IFS="$OLDIFS"
+ unset OLDIFS
+ popd
+
+ # bash completion
+ cd bash-completion
+ for filename in abicompat abidiff abidw abilint abipkgdiff; do
+ install -vDm644 -t "$pkgdir/usr/share/bash-completion/completions"
"$filename"
+ done
+}