mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-30 05:42:12 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-bottle-hotqueue
|
|
_pkgname=bottle-hotqueue
|
|
pkgver=0.2.5
|
|
pkgrel=0
|
|
pkgdesc="Bottle HotQueue plugin"
|
|
url="https://github.com/waawal/bottle_hotqueue"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python py-bottle py-hotqueue"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.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"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="579520adec41648b570f45267a618cd2 bottle-hotqueue-0.2.5.tar.gz"
|
|
sha256sums="acdf87e15a61cd6f3eab63eb3cdf0ffafd081509dae34c717f5b47890823ad70 bottle-hotqueue-0.2.5.tar.gz"
|
|
sha512sums="0ee8a1254d3997b7066443100a27de5ca22b31f4c24bd2bc92bb41fa296516a9096d170e1d48b30dea192fe424b3d9b487b851c6a4c272c0c4a55681a1afc2dc bottle-hotqueue-0.2.5.tar.gz"
|