diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-04-14 16:51:18 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-04-14 16:57:53 +0200 |
commit | 4b0605f60f8192f590df61fc6e025b10afaa6663 (patch) | |
tree | 120e109febef4e366b1762a534e182ec092cdaf3 /dev-python/django_polymorphic | |
parent | dev-python/django-taggit: Bump to 5.0.1 (diff) | |
download | gentoo-4b0605f60f8192f590df61fc6e025b10afaa6663.tar.gz gentoo-4b0605f60f8192f590df61fc6e025b10afaa6663.tar.bz2 gentoo-4b0605f60f8192f590df61fc6e025b10afaa6663.zip |
dev-python/django_polymorphic: Enable py3.12
Closes: https://bugs.gentoo.org/929449
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/django_polymorphic')
-rw-r--r-- | dev-python/django_polymorphic/django_polymorphic-3.1-r1.ebuild | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/dev-python/django_polymorphic/django_polymorphic-3.1-r1.ebuild b/dev-python/django_polymorphic/django_polymorphic-3.1-r1.ebuild index 63c1444d7b25..1bda2e1202ed 100644 --- a/dev-python/django_polymorphic/django_polymorphic-3.1-r1.ebuild +++ b/dev-python/django_polymorphic/django_polymorphic-3.1-r1.ebuild @@ -1,17 +1,22 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) + inherit distutils-r1 DESCRIPTION="Seamless Polymorphic Inheritance for Django Models" -HOMEPAGE="https://pypi.org/project/django-polymorphic/" +HOMEPAGE=" + https://github.com/django-polymorphic/django-polymorphic/ + https://pypi.org/project/django-polymorphic/ +" SRC_URI=" https://github.com/django-polymorphic/django-polymorphic/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz" + -> ${P}.gh.tar.gz +" S="${WORKDIR}/${P//_/-}" LICENSE="BSD" |