mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-hotqueue
|
|
_pkgname=hotqueue
|
|
pkgver=0.2.7
|
|
pkgrel=0
|
|
pkgdesc="A Python library that allows to use Redis as a message queue"
|
|
url="http://github.com/richardhenry/hotqueue"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python2"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="13c80ac6ec08fd5fbc9bb9c1818d95b9 hotqueue-0.2.7.tar.gz"
|
|
sha256sums="978729391b91b9a29135fbc60b532466947bc4fb2e3ea26e88ca1574a582398f hotqueue-0.2.7.tar.gz"
|
|
sha512sums="9ff8a11b4c029544d0f842feaf423a209d464daa12852d2186c2723406659040d24c556d44c0e903aebc464b02b7cdeb05d373083aa0bcedc237e6cc5719b573 hotqueue-0.2.7.tar.gz"
|