[arch-commits] Commit in alsa-lib/repos (3 files)

David Runge dvzrv at gemini.archlinux.org
Tue Jun 7 08:28:14 UTC 2022


    Date: Tuesday, June 7, 2022 @ 08:28:14
  Author: dvzrv
Revision: 447693

archrelease: copy trunk to staging-x86_64

Added:
  alsa-lib/repos/staging-x86_64/
  alsa-lib/repos/staging-x86_64/PKGBUILD
    (from rev 447692, alsa-lib/trunk/PKGBUILD)
  alsa-lib/repos/staging-x86_64/alsa-lib.install
    (from rev 447692, alsa-lib/trunk/alsa-lib.install)

------------------+
 PKGBUILD         |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 alsa-lib.install |    7 +++++++
 2 files changed, 55 insertions(+)

Copied: alsa-lib/repos/staging-x86_64/PKGBUILD (from rev 447692, alsa-lib/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2022-06-07 08:28:14 UTC (rev 447693)
@@ -0,0 +1,48 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=alsa-lib
+pkgver=1.2.7
+pkgrel=1
+pkgdesc="An alternative implementation of Linux sound support"
+arch=(x86_64)
+url="https://www.alsa-project.org"
+license=(LGPL2.1)
+depends=(glibc alsa-topology-conf alsa-ucm-conf)
+provides=(libasound.so libatopology.so)
+install=$pkgname.install
+options=(debug)
+source=(https://www.alsa-project.org/files/pub/lib/$pkgname-$pkgver.tar.bz2{,.sig})
+sha512sums=('6bd48b07d659fddad792876326a93b2a549ce94bc191131670365599c31f81f737bfd8e94dec6fe296bc5d86df2e3e381bbb7a694d24fe7e8e501f1c994ed084'
+            'SKIP')
+b2sums=('a3bfbbfcf31625be0749218b3c02b307da9077d4bd82e9f980b8e3d6f9275f3a3f3c8158bb28fb1c61724a35e794eb3f6cc8872202ff42fb847725058109087e'
+        'SKIP')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team (Package Signing Key v1) <release at alsa-project.org>
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fiv
+}
+
+build() {
+  # -flto=auto is not supported: https://github.com/alsa-project/alsa-lib/issues/110
+  CFLAGS+=" -flto-partition=none"
+  cd $pkgname-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --without-debug
+  # prevent excessive overlinking due to libtool
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  export LD_LIBRARY_PATH="$pkgname-$pkgver/src/.libs/:$LD_LIBRARY_PATH"
+  make -k check -C $pkgname-$pkgver
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -vDm 644 {MEMORY-LEAK,TODO,NOTES,ChangeLog,doc/asoundrc.txt} -t "$pkgdir/usr/share/doc/$pkgname/"
+}

Copied: alsa-lib/repos/staging-x86_64/alsa-lib.install (from rev 447692, alsa-lib/trunk/alsa-lib.install)
===================================================================
--- staging-x86_64/alsa-lib.install	                        (rev 0)
+++ staging-x86_64/alsa-lib.install	2022-06-07 08:28:14 UTC (rev 447693)
@@ -0,0 +1,7 @@
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if (( $(vercmp "$2" '1.2.5-1') < 0 )); then
+    printf "WARNING: Non-backwards compatible changes to ALSA require restarting of audio engines (e.g. pulseaudio or pipewire) using it.\n"
+  fi
+}



More information about the arch-commits mailing list