mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
32 lines
922 B
Text
32 lines
922 B
Text
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=py3-pyro4
|
|
_pyname=Pyro4
|
|
pkgver=4.77
|
|
pkgrel=1
|
|
pkgdesc="Python remote objects"
|
|
url="http://pyro4.readthedocs.io/"
|
|
arch="noarch !s390x" # 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="52a9f90cec8c5e23ec30ddb69484a15bb86d61024d1bc718d075e01678a3d9655a1ed21f18da1891c121bf0e95282fb1151762b2fdb826a6408056079d2b1a66 Pyro4-4.77.tar.gz"
|