mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
44 lines
1.1 KiB
Text
44 lines
1.1 KiB
Text
# Contributor: Fabricio Silva <hi@fabricio.dev>
|
|
# Maintainer: Fabricio Silva <hi@fabricio.dev>
|
|
pkgname=py3-plexapi
|
|
_pkgname=python-plexapi
|
|
pkgver=4.15.6
|
|
pkgrel=0
|
|
pkgdesc="Python bindings for the Plex API"
|
|
url="https://github.com/pkkid/python-plexapi"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
# tests requires an instance of plex running
|
|
# net for sphinx
|
|
options="net !check"
|
|
depends="
|
|
python3
|
|
py3-requests
|
|
"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-recommonmark
|
|
py3-setuptools
|
|
py3-sphinx_rtd_theme
|
|
py3-wheel
|
|
"
|
|
subpackages="$pkgname-doc $pkgname-pyc"
|
|
source="https://github.com/pkkid/python-plexapi/archive/$pkgver/py3-plexapi-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
sphinx-build -W -b man docs man
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
install -Dm644 man/pythonplexapi.1 -t "$pkgdir"/usr/share/man/man1
|
|
}
|
|
|
|
sha512sums="
|
|
dc7d5e6028fd852e8141496f9269ab2f33078fbada46d0af0ee760d4cbd34ef36443542e539c68978f15a577989c465d2913abadbf093a074db85cbd23ee5ba0 py3-plexapi-4.15.6.tar.gz
|
|
"
|