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

David Runge dvzrv at gemini.archlinux.org
Sat Jul 9 10:03:37 UTC 2022


    Date: Saturday, July 9, 2022 @ 10:03:37
  Author: dvzrv
Revision: 450558

archrelease: copy trunk to testing-x86_64

Added:
  alsa-lib/repos/testing-x86_64/
  alsa-lib/repos/testing-x86_64/PKGBUILD
    (from rev 450557, alsa-lib/trunk/PKGBUILD)
  alsa-lib/repos/testing-x86_64/alsa-lib.install
    (from rev 450557, alsa-lib/trunk/alsa-lib.install)
  alsa-lib/repos/testing-x86_64/keys/

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

Copied: alsa-lib/repos/testing-x86_64/PKGBUILD (from rev 450557, alsa-lib/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-07-09 10:03:37 UTC (rev 450558)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=alsa-lib
+pkgver=1.2.7.2
+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=('79e5920384e570a1acd8ecd1eb8812879333c3cedb1d15780080afc40125b97df893c33f4163d9dd863871b628bc6026265f8ace2c8634fc1af5b52b62ac9cfe'
+            'SKIP')
+b2sums=('9ae3d4358d802970249e1b904faa7c4d646dec1d8c93e0de9c4b70065e912b910303d77e8f9f68c97b883ec270cf0dd8b97146b4a85f3aede4f290683c462fce'
+        '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() {
+  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
+  install -vDm 644 $pkgname-$pkgver/{MEMORY-LEAK,TODO,NOTES,ChangeLog,doc/asoundrc.txt} -t "$pkgdir/usr/share/doc/$pkgname/"
+}

Copied: alsa-lib/repos/testing-x86_64/alsa-lib.install (from rev 450557, alsa-lib/trunk/alsa-lib.install)
===================================================================
--- testing-x86_64/alsa-lib.install	                        (rev 0)
+++ testing-x86_64/alsa-lib.install	2022-07-09 10:03:37 UTC (rev 450558)
@@ -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