From aacb5e1c8866881f54ce75765a238976d76699bb Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 27 Aug 2019 02:02:47 -0300 Subject: testing/py3-billiard: rename from py-billiard --- testing/py3-billiard/APKBUILD | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 testing/py3-billiard/APKBUILD (limited to 'testing/py3-billiard') diff --git a/testing/py3-billiard/APKBUILD b/testing/py3-billiard/APKBUILD new file mode 100644 index 0000000000..dfc5f90072 --- /dev/null +++ b/testing/py3-billiard/APKBUILD @@ -0,0 +1,44 @@ +# Maintainer: Drew DeVault +pkgname=py-billiard +pkgver=3.6.0.0 +pkgrel=1 +pkgdesc="a message queue abstraction layer" +url="https://pypi.python.org/pypi/billiard/" +arch="all" +license="BSD" +makedepends="python2-dev python3-dev py2-setuptools py3-setuptools" +subpackages="py2-billiard:py2 py3-billiard:py3" +source="https://files.pythonhosted.org/packages/source/b/billiard/billiard-$pkgver.tar.gz" +builddir="$srcdir/billiard-$pkgver" + +build() { + cd "$_builddir" + python2 setup.py build + python3 setup.py build +} + +package() { + mkdir -p "$pkgdir" +} + +_py() { + local python="$1" + pkgdesc="$pkgdesc ${python#python}" + depends="$depends $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +py2() { + cd "$builddir" + _py python2 +} + +py3() { + cd "$builddir" + _py python3 +} + +sha512sums="0a71de026d2a781b83fe2c549ecbfe9b6fbd574d8067fc46ba7eca6b76633a123620853d22696df3563d050043cfe75b14b4b69bf5217e0af964aaa0bcbe08ff billiard-3.6.0.0.tar.gz" -- cgit v1.2.3