mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
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"
|