mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
32 lines
936 B
Text
32 lines
936 B
Text
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=py3-pyro4
|
|
_pyname=Pyro4
|
|
pkgver=4.80
|
|
pkgrel=1
|
|
pkgdesc="Python remote objects"
|
|
url="http://pyro4.readthedocs.io/"
|
|
arch="noarch !s390x !mips !mips64" # Limited by py3-dill
|
|
license="MIT"
|
|
depends="py3-serpent"
|
|
makedepends="python3 py3-setuptools"
|
|
checkdepends="py3-msgpack py3-dill py3-cloudpickle"
|
|
_pypiprefix="${_pyname%${_pyname#?}}"
|
|
source="https://files.pythonhosted.org/packages/source/$_pypiprefix/$_pyname/$_pyname-$pkgver.tar.gz"
|
|
builddir=$srcdir/$_pyname-$pkgver
|
|
|
|
replaces="py-pyro4" # Backwards compatibility
|
|
provides="py-pyro4=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="8e41285674edbe5c8d5ac63e33406c5ff7b6366d5dd251a1755eff81611193278a473ed8b15f995bc0ba2775dc5d316eb6a3cafd63626b95820591ea3a0a92e3 Pyro4-4.80.tar.gz"
|