48 lines
1.5 KiB
Text
48 lines
1.5 KiB
Text
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=celery
|
|
pkgver=5.2.7
|
|
pkgrel=0
|
|
pkgdesc="An asynchronous task queue/job queue based on distributed message passing"
|
|
url="http://www.celeryproject.org/"
|
|
arch="noarch !s390x" # lmited by py3-kombu
|
|
license="Apache-2.0"
|
|
depends="py3-urllib3 py3-redis py3-vine py3-kombu py3-billiard py3-tz"
|
|
makedepends="python3-dev py3-setuptools"
|
|
install="$pkgname.pre-install"
|
|
source="https://files.pythonhosted.org/packages/source/c/celery/celery-$pkgver.tar.gz
|
|
celery.confd
|
|
celery.initd"
|
|
pkgusers="celery"
|
|
pkggroups="celery"
|
|
subpackages="$pkgname-openrc"
|
|
provides="py3-celery=$pkgver-r$pkgrel"
|
|
|
|
# TODO: requires many many many dependencies
|
|
options="!check"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
install -dm755 "$pkgdir/$confdir"
|
|
install -dm755 "$pkgdir/$confdir/conf.d"
|
|
|
|
# install scripts
|
|
install -m755 -D "$srcdir"/$pkgname.initd \
|
|
"$pkgdir"/etc/init.d/$pkgname
|
|
install -m644 -D "$srcdir"/$pkgname.confd \
|
|
"$pkgdir"/etc/conf.d/$pkgname
|
|
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
sha512sums="
|
|
68e3bb082f97ebe20391293cc8fa96c41c8f5ac5e8c24b2b7bd66eb104ec459bdfa49741e47486676e5daa88d7a71e3eb0d9432851aeafc74b0d4352e567e853 celery-5.2.7.tar.gz
|
|
f9458bce0d8990de646df564bec96baa0e45867f44e41380d38520905e00c941b1ce261314bb78edaa14c591e0aa9386d24c58a61f69fb0fecc616c34a24dea1 celery.confd
|
|
ff8c0451efa7157fd61f2335f4187bef6cbdd51856c7cfad4de02244c6c5ca7c584f9108731b52f020fee866365d9f092ded266c90d13cb34e92a7ffb63fed57 celery.initd
|
|
"
|