commit: d7554704422db802bf0b3cf8a37236760c4d4bed Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org> AuthorDate: Thu Oct 12 19:28:02 2023 +0000 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org> CommitDate: Thu Oct 12 19:28:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7554704
dev-python/django-registration: add 3.4 Closes: https://bugs.gentoo.org/915329 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org> dev-python/django-registration/Manifest | 1 + .../django-registration-3.4.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-python/django-registration/Manifest b/dev-python/django-registration/Manifest index bfddf811c2f3..c84cc92e3e31 100644 --- a/dev-python/django-registration/Manifest +++ b/dev-python/django-registration/Manifest @@ -1 +1,2 @@ DIST django-registration-3.3.gh.tar.gz 77483 BLAKE2B 4d65479983a5aa104daffe07ed84218250893ccf6df44e5533473d587a6e76fe71c905124af3909efda515ea84df49f27eafc32f23480ca3e1f6ef55607b3cd7 SHA512 66ef0de4c1adb303717cf87e9d3ce7ab07ca60bab64cbc810f61f31d05a968c0b4fa216b90e7ad575e647c6fdb789ea875c428b0ca8b0104d055ed0882aae144 +DIST django-registration-3.4.gh.tar.gz 81582 BLAKE2B bc3ee4ed806486c8a0422cc4ef62c2628f6b5880e0aa63ffdfd5ba7f90967c96c5cd7555faf58254e0a49bdb025b9bdf8eb212bfce4596db7db4f97e4eb3400d SHA512 b6c87cbaeb9548e2c2d8672078b5967aee1e881c2b880193ba410a8c293c93fd0c8e57abac8deda2cb6f61a11936fd5c72060e4954f1d74de1e3a3646b63885b diff --git a/dev-python/django-registration/django-registration-3.4.ebuild b/dev-python/django-registration/django-registration-3.4.ebuild new file mode 100644 index 000000000000..36c13a4671a0 --- /dev/null +++ b/dev-python/django-registration/django-registration-3.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) +inherit distutils-r1 + +DESCRIPTION="user-registration application for Django" +HOMEPAGE=" + https://pypi.org/project/django-registration/ + https://github.com/ubernostrum/django-registration/ +" +SRC_URI=" + https://github.com/ubernostrum/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/django[${PYTHON_USEDEP}] + dev-python/confusable_homoglyphs[${PYTHON_USEDEP}] +" + +python_test() { + local -x DJANGO_SETTINGS_MODULE=tests.settings + PYTHONPATH=. "${EPYTHON}" runtests.py || die "Tests failed with ${EPYTHON}" +}
