aports/testing/py3-librtmp/APKBUILD
ptrcnull d6e150e932
testing/*: rebuild against python 3.12
this is only a partial rebuild,
including stuff that i built on my personal machine
with python 3.12.2; might fail with 3.12.3
2024-04-15 17:00:47 +02:00

33 lines
1 KiB
Text

# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-librtmp
_pkgname=python-librtmp
pkgver=0.3.0
pkgrel=6
pkgdesc="Python bindings for librtmp, built with cffi"
url="https://github.com/chrippa/python-librtmp"
arch="all"
license="BSD-2-Clause"
depends="py3-cffi"
makedepends="python3-dev py3-setuptools rtmpdump-dev"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
replaces="py-librtmp" # Backwards compatibility
provides="py-librtmp=$pkgver-r$pkgrel" # Backwards compatibility
build() {
python3 setup.py build
}
check() {
PYTHONPATH="$(echo $PWD/build/lib.*)" py.test-3 tests
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="1fa529f5c68341f225849061cbcf6883f80e48a492fae8319336ea1e17c22070d5bd204f768b2561b0ef8dfdf29b38789673fab3d3386290143eb94d2b51b8fe python-librtmp-0.3.0.tar.gz"