diff options
author | Julien Roy <julien@jroy.ca> | 2024-06-09 15:02:58 -0400 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2024-06-09 15:02:58 -0400 |
commit | 7691c71afb8129266eefff8fdf9e2fa8a8c701a5 (patch) | |
tree | 98059f49f286e7dfff0ce55128bd0a0e83529c0e /dev-python | |
parent | 56272584a58e0c5694617182bd1b45135f7d7631 (diff) | |
download | MrRoy-Overlay-7691c71afb8129266eefff8fdf9e2fa8a8c701a5.tar.gz MrRoy-Overlay-7691c71afb8129266eefff8fdf9e2fa8a8c701a5.tar.bz2 MrRoy-Overlay-7691c71afb8129266eefff8fdf9e2fa8a8c701a5.zip |
dev-python/django-appconf: new package, add 1.0.6
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/django-appconf/Manifest | 1 | ||||
-rw-r--r-- | dev-python/django-appconf/django-appconf-1.0.6.ebuild | 25 | ||||
-rw-r--r-- | dev-python/django-appconf/metadata.xml | 23 |
3 files changed, 49 insertions, 0 deletions
diff --git a/dev-python/django-appconf/Manifest b/dev-python/django-appconf/Manifest new file mode 100644 index 0000000..7811642 --- /dev/null +++ b/dev-python/django-appconf/Manifest @@ -0,0 +1 @@ +DIST django-appconf-1.0.6.tar.gz 15895 BLAKE2B c0b692ce551abb0c4b0cc45a47dcd00a4bdac205a6a55ac24f27c80e96fffe737913b3063015fd58a1ebcf3a379211b74a806ab2d760d76334d3c2cb2b6f2162 SHA512 892f9c57d19ebade4ead39c0e6b27ac0d6ef7b570e671b19a2e5688b4ab27ef61d51e8a9a9c8b545bd7cb75b8840e592b351309662632c20b46ce0539bd1341b diff --git a/dev-python/django-appconf/django-appconf-1.0.6.ebuild b/dev-python/django-appconf/django-appconf-1.0.6.ebuild new file mode 100644 index 0000000..6b4c731 --- /dev/null +++ b/dev-python/django-appconf/django-appconf-1.0.6.ebuild @@ -0,0 +1,25 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 + +inherit distutils-r1 pypi + +DESCRIPTION="An app to handle configuration defaults of packaged Django apps gracefully" +HOMEPAGE=" + https://github.com/django-compressor/django-appconf + https://pypi.org/project/django-appconf/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/django[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +distutils_enable_sphinx docs diff --git a/dev-python/django-appconf/metadata.xml b/dev-python/django-appconf/metadata.xml new file mode 100644 index 0000000..d6bc39f --- /dev/null +++ b/dev-python/django-appconf/metadata.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>Julien Roy</name> + <email>julien@jroy.ca</email> + </maintainer> + <longdescription> + A helper class for handling configuration defaults of packaged Django apps gracefully. + + This app precedes Django's own AppConfig classes that act as "objects [to] store metadata for an application" inside Django's app loading mechanism. In other words, they solve a related but different use case than django-appconf and can't easily be used as a replacement. The similarity in name is purely coincidental. + </longdescription> + <upstream> + <maintainer> + <name>Jannis Leidel</name> + <email>jannis@leidel.info</email> + </maintainer> + <bugs-to>https://github.com/django-compressor/django-appconf/issues</bugs-to> + <doc>https://django-appconf.readthedocs.io/</doc> + <remote-id type="github">django-compressor/django-appconf</remote-id> + <remote-id type="pypi">django-appconf</remote-id> + </upstream> +</pkgmetadata> |