testing/py3-django-redis: move from user
This commit is contained in:
parent
7615e090b7
commit
c33d300107
2 changed files with 47 additions and 28 deletions
47
testing/py3-django-redis/APKBUILD
Normal file
47
testing/py3-django-redis/APKBUILD
Normal file
|
@ -0,0 +1,47 @@
|
|||
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
|
||||
_pyname=django-redis
|
||||
pkgname="py3-$_pyname"
|
||||
pkgver=5.3.0
|
||||
pkgrel=0
|
||||
arch="noarch"
|
||||
pkgdesc="Full featured redis cache backend for Django."
|
||||
url="https://pypi.python.org/project/$_pyname"
|
||||
license="BSD-3-Clause"
|
||||
depends="
|
||||
py3-django
|
||||
"
|
||||
makedepends="
|
||||
py3-setuptools
|
||||
py3-wheel
|
||||
py3-gpep517
|
||||
py3-installer
|
||||
py3-redis
|
||||
"
|
||||
checkdepends="
|
||||
py3-pytest
|
||||
"
|
||||
options="!check" # Missing depends for test
|
||||
source="$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz"
|
||||
builddir="$srcdir"/$_pyname-$pkgver
|
||||
subpackages="$pkgname-pyc"
|
||||
|
||||
build() {
|
||||
gpep517 build-wheel \
|
||||
--wheel-dir dist \
|
||||
--output-fd 3 3>&1 >&2
|
||||
}
|
||||
|
||||
check() {
|
||||
PYTHONPATH="$PYTHONPATH/dist" pytest -v
|
||||
}
|
||||
|
||||
package() {
|
||||
python3 -m installer -d "$pkgdir" \
|
||||
dist/*.whl
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
2867d405b69400355576eb3c052b4245844d56304979f09750251f8a2cf35ce704ebcdb6c80e6280fbfe24acfb237a3428f68081b6ada11ffc78257263703d7e py3-django-redis-5.3.0.tar.gz
|
||||
"
|
|
@ -1,28 +0,0 @@
|
|||
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
|
||||
_pyname=django-redis
|
||||
pkgname="py3-$_pyname"
|
||||
pkgver=5.2.0
|
||||
pkgrel=2
|
||||
arch="noarch"
|
||||
pkgdesc="Full featured redis cache backend for Django."
|
||||
url="https://pypi.python.org/project/$_pyname"
|
||||
license="BSD-3-CLAUSE"
|
||||
depends="py3-django"
|
||||
makedepends="py3-setuptools py3-redis"
|
||||
checkdepends="py3-pytest"
|
||||
source="$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz"
|
||||
builddir="$srcdir"/$_pyname-$pkgver
|
||||
|
||||
check() {
|
||||
PYTHONPATH="$PWD/src" pytest || true
|
||||
}
|
||||
|
||||
package() {
|
||||
python3 setup.py install --root="$pkgdir" -O1
|
||||
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
|
||||
}
|
||||
sha512sums="
|
||||
65d3dc6b1d72c8b90908cf368cb66ac2eb74bdd32d0b42c8a5288b4448bd7444b21320251262627bc950eaf0d1a1ef0c3014761b690122bea9e5e20f744dd433 py3-django-redis-5.2.0.tar.gz
|
||||
"
|
Loading…
Reference in a new issue