mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
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
38 lines
908 B
Plaintext
38 lines
908 B
Plaintext
# Maintainer: Hoang Nguyen <folliekazetani@protonmail.com>
|
|
pkgname=py3-mopidy-local
|
|
_pyname=${pkgname#py3-}
|
|
pkgver=3.2.1
|
|
pkgrel=3
|
|
pkgdesc="Mopidy extension for playing music from local music archive"
|
|
url="https://github.com/mopidy/mopidy-local"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="
|
|
mopidy
|
|
python3
|
|
py3-pykka
|
|
py3-uritools
|
|
"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest"
|
|
subpackages="$pkgname-pyc"
|
|
source="$_pyname-$pkgver.tar.gz::https://github.com/mopidy/mopidy-local/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pyname-$pkgver"
|
|
options="!check" # tests fail on CI
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
2a34018306f9ca7b94e55c40f41e728329d10d6c530c58a7c5f58f6783b280069db27a1249e1d021126cda35be5f7cb1bc02affdd7b3eb7c77a4627fe588005f mopidy-local-3.2.1.tar.gz
|
|
"
|