blob: f7d8bb90f2f1b697742b9a537172f24c83a58c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:
pkgname=py3-django-cors-headers
_pkgname=django-cors-headers
pkgver=3.1.1
pkgrel=1
pkgdesc="Django app for handling the server headers required for Cross-Origin Resource Sharing (CORS)"
options="!check" # Requires running django instance
url="https://github.com/OttoYiu/django-cors-headers"
arch="noarch"
license="MIT"
depends="py3-django"
makedepends="py3-setuptools"
checkdepends="py3-tz py3-mock py3-pytest py3-coverage py3-pytest-cov"
source="$pkgname-$pkgver.tar.gz::https://github.com/ottoyiu/$_pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
build() {
python3 setup.py --quiet build
}
check() {
python3 runtests.py ./tests
}
package() {
python3 setup.py --quiet install --prefix=/usr --root="$pkgdir"
}
sha512sums="a5df0d949be763d53cd794cde103f46ef9c9d0b318d64c0849e373a789aa1a6a7e6fb7a28ebfd17fb1ee68ab2ad2d7f3f80d1546d9f8488e988330bcb3aee1df py3-django-cors-headers-3.1.1.tar.gz"
|