mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Maintainer:
|
|
pkgname=py-django-debug-toolbar
|
|
pkgver=1.11
|
|
pkgrel=0
|
|
pkgdesc="Configurable set of panels that display various debug information about the current request/response"
|
|
url="https://github.com/jazzband/django-debug-toolbar"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="py-django py-sqlparse"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
options="!check" #no testsuite
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/jazzband/django-debug-toolbar/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/django-debug-toolbar-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py --quiet build
|
|
python3 setup.py --quiet build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
mkdir -p "$pkgdir"/usr/bin
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python2 tests.py
|
|
python3 tests.py
|
|
}
|
|
|
|
_py2() {
|
|
depends="${depends//py-/py2-}"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${depends//py-/py3-}"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
local pyver="${1:6:1}"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py --quiet install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
sha512sums="8085b02fc25571e7b3bff02ff2bda8bec81a6000c6ed9e2aea10ec45eb1a3e5adf2ee95fcfbb0a11660fd716ebf2e35a9bdefbaf767b4afc732368a197857e62 py-django-debug-toolbar-1.11.tar.gz"
|