python3-django-appconf: initial commit, version 1.0.6

This commit is contained in:
Tim Biermann 2024-02-20 21:41:27 +01:00
parent 7a6d8ab124
commit 9071c8bb48
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/appconf/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/appconf/__init__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/appconf/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/appconf/__pycache__/__init__.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/appconf/__pycache__/base.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/appconf/__pycache__/utils.cpython-310.opt-2.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/appconf/base.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/appconf/utils.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/AUTHORS
-rw-r--r-- root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/WHEEL
-rw-r--r-- root/root usr/lib/python3.10/site-packages/django_appconf-1.0.6.dist-info/top_level.txt

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+oqezv9UG/Q1Sa4zRqzQnnAJbNAeE9rKDxKv2UMclKCaporh5X1DhTx+u2qDeCWn+6GrXBbawE+/Kenv08z1QE=
SHA256 (Pkgfile) = 37b5f2563369e09f8c085875276e46b655ef1fb6225babcd91e92af1157c2df3
SHA256 (.footprint) = 26e1f144c4fc884fccfca5279857bb53c9c31d4d7ee862896e58b05870ed0634
SHA256 (django-appconf-1.0.6.tar.gz) = cfe87ea827c4ee04b9a70fab90b86d704cb02f2981f89da8423cb0fabf88efbf

View File

@ -0,0 +1,16 @@
# Description: A helper class for handling configuration defaults of packaged apps gracefully
# URL: https://django-appconf.readthedocs.io/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: python3-django
name=python3-django-appconf
version=1.0.6
release=1
source=(https://pypi.org/packages/source/d/django-appconf/django-appconf-$version.tar.gz)
build() {
cd django-appconf-$version
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}