Date: Thursday, May 11, 2023 @ 08:16:56
  Author: grawlinson
Revision: 1459889

archrelease: copy trunk to community-x86_64

Added:
  libabigail/repos/community-x86_64/PKGBUILD
    (from rev 1459888, libabigail/trunk/PKGBUILD)
Deleted:
  libabigail/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  175 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 89 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-05-11 07:34:46 UTC (rev 1459888)
+++ PKGBUILD    2023-05-11 08:16:56 UTC (rev 1459889)
@@ -1,86 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-# Contributor: Alexander 'z33ky' Hirsch <[email protected]>
-
-pkgname=libabigail
-pkgver=2.2
-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='1f51b9e85dc42dc71caf7fe79436d64c6a3d03f3'
-source=("git+https://sourceware.org/git/libabigail.git#commit=$_commit";)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  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
-}

Copied: libabigail/repos/community-x86_64/PKGBUILD (from rev 1459888, 
libabigail/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-05-11 08:16:56 UTC (rev 1459889)
@@ -0,0 +1,89 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: Alexander 'z33ky' Hirsch <[email protected]>
+
+pkgname=libabigail
+pkgver=2.3
+pkgrel=1
+pkgdesc='ABI Generic Analysis and Instrumentation Library'
+arch=('x86_64')
+license=('Apache')
+url='https://sourceware.org/libabigail/'
+depends=(
+  'glibc'
+  'gcc-libs'
+  'binutils'
+  'libxml2'
+  'libelf'
+  'elfutils'
+  'python'
+)
+makedepends=(
+  'git'
+  'python-sphinx'
+)
+_commit='cdf3f8e2370b9c393b9fec097a8ef2dde2d45101'
+source=("git+https://sourceware.org/git/libabigail.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  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
+}

Reply via email to