Date: Thursday, April 13, 2023 @ 10:32:59
Author: dvzrv
Revision: 1445816
archrelease: copy trunk to community-staging-any
Added:
python-django-crispy-forms/repos/community-staging-any/
python-django-crispy-forms/repos/community-staging-any/PKGBUILD
(from rev 1445815, python-django-crispy-forms/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: python-django-crispy-forms/repos/community-staging-any/PKGBUILD (from
rev 1445815, python-django-crispy-forms/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-13 10:32:59 UTC (rev 1445816)
@@ -0,0 +1,55 @@
+# Maintainer: David Runge <[email protected]>
+
+_name=django-crispy-forms
+pkgname=python-django-crispy-forms
+pkgver=2.0
+pkgrel=1
+pkgdesc="The best way to have DRY Django forms"
+arch=(any)
+url="https://github.com/django-crispy-forms/django-crispy-forms"
+license=(MIT)
+depends=(
+ python
+ python-django
+)
+makedepends=(
+ python-build
+ python-installer
+ python-setuptools
+ python-wheel
+)
+checkdepends=(
+ python-crispy-bootstrap3
+ python-crispy-bootstrap4
+ python-pytest
+ python-pytest-django
+)
+optdepends=(
+ 'python-crispy-bootstrap3: for a bootstrap 3 theme pack'
+ 'python-crispy-bootstrap4: for a bootstrap 4 theme pack'
+)
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+sha512sums=('f090aa22ea370e6a2944f6bb339b0634cf802d1e02bd99501b70d6423baf8080e79d3cbbfd866874ac8572ed3ed9e84b59ee328c9e89d0f403cc936015a9f716')
+b2sums=('6313eb687a8cbd736fc0494504cc980ed89d9b23e5ec76769d7d923268ae26e7f6c3229ef8552c233f535e456b2addcef86195e946902f242dbbfc783e22f0e5')
+
+build() {
+ cd $_name-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ local site_packages=$(python -c "import site;
print(site.getsitepackages()[0])")
+
+ cd $_name-$pkgver
+ # install to temporary location, as importlib is used
+ python -m installer --destdir=test_dir dist/*.whl
+ export PYTHONPATH="test_dir/$site_packages:$PWD:$PYTHONPATH"
+ DJANGO_SETTINGS_MODULE=tests.test_settings pytest -vv tests
+}
+
+package() {
+ cd $_name-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ install -vDm 644 {CONTRIBUTORS.txt,README.rst} -t
"$pkgdir/usr/share/doc/$pkgname/"
+ install -vDm 644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
+}