Date: Thursday, April 6, 2023 @ 14:36:32
Author: felixonmars
Revision: 1439265
archrelease: copy trunk to community-staging-x86_64
Added:
python-pyalsa/repos/community-staging-x86_64/
python-pyalsa/repos/community-staging-x86_64/PKGBUILD
(from rev 1439264, python-pyalsa/trunk/PKGBUILD)
python-pyalsa/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: python-pyalsa/repos/community-staging-x86_64/PKGBUILD (from rev
1439264, python-pyalsa/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-06 14:36:32 UTC (rev 1439265)
@@ -0,0 +1,29 @@
+# Maintainer: David Runge <[email protected]>
+
+_name=pyalsa
+pkgname=python-pyalsa
+pkgver=1.2.7
+pkgrel=2
+pkgdesc="Python binding for the ALSA library"
+arch=(x86_64)
+url="https://www.alsa-project.org"
+license=(LGPL2.1)
+groups=(alsa)
+depends=(alsa-lib python)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+source=(https://www.alsa-project.org/files/pub/$_name/$_name-$pkgver.tar.bz2{,.sig})
+sha512sums=('126501fe7b9c006f28e9290bdd3ad907ea9e053b71e21e2c6f0b0beeecdba07b4b557014041b03452f96be690f59f2e647e075487ee87054f21f66df7f39b34b'
+ 'SKIP')
+b2sums=('c100d16bd8c0d9fc6eddcda360f3582c55ed1b143a58a49caf76a62494882952d311271941ce0ecdf57ac934f3564dc922c80e8a5f5742b593341ff4215b700c'
+ 'SKIP')
+validpgpkeys=(F04DF50737AC1A884C4B3D718380596DA6E59C91) # ALSA Release Team
(Package Signing Key v1) <[email protected]>
+
+build() {
+ cd $_name-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd $_name-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}