mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
testing/py-django-crispy-forms: new aport
This commit is contained in:
parent
8036338579
commit
9d9944f71b
49
testing/py-django-crispy-forms/APKBUILD
Normal file
49
testing/py-django-crispy-forms/APKBUILD
Normal file
@ -0,0 +1,49 @@
|
||||
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
||||
# Maintainer:
|
||||
pkgname=py-django-crispy-forms
|
||||
pkgver=1.7.0
|
||||
pkgrel=0
|
||||
pkgdesc="Dry Django forms"
|
||||
url="https://github.com/django-crispy-forms"
|
||||
arch="noarch"
|
||||
license="Custom"
|
||||
depends="py-django"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
||||
options="!check" #no testsuite
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/django-crispy-forms/$_pkgname/archive/$pkgver.tar.gz"
|
||||
builddir="$srcdir"/django-crispy-forms-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
python2 setup.py --quiet build
|
||||
python3 setup.py --quiet build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
mkdir -p "$pkgdir"/usr/bin
|
||||
}
|
||||
|
||||
_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="72a2656bc7a310fe0d4d855c7c4ce30a77ec210d61b24c27c5c51be9977228f97af2fdf2c0371b83eac23cb4c20120ff62f4aefa83ae6a44db99f6b18c8aefd3 py-django-crispy-forms-1.7.0.tar.gz"
|
Loading…
Reference in New Issue
Block a user