From 1a4c29783588e032277fce6808d5e1bb3ddfc791 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Fri, 29 Aug 2025 14:13:38 +0200 Subject: [PATCH] dev-python/django-polymorphic: add 4.1.0 Signed-off-by: Andreas Billmeier --- dev-python/django-polymorphic/Manifest | 4 +-- .../django-polymorphic-3.0.0.ebuild | 32 ------------------- .../django-polymorphic-4.1.0.ebuild | 19 +++++++++++ 3 files changed, 21 insertions(+), 34 deletions(-) delete mode 100644 dev-python/django-polymorphic/django-polymorphic-3.0.0.ebuild create mode 100644 dev-python/django-polymorphic/django-polymorphic-4.1.0.ebuild diff --git a/dev-python/django-polymorphic/Manifest b/dev-python/django-polymorphic/Manifest index 3687123..d1429b3 100644 --- a/dev-python/django-polymorphic/Manifest +++ b/dev-python/django-polymorphic/Manifest @@ -1,3 +1,3 @@ -DIST django-polymorphic-3.0.0.tar.gz 51140 BLAKE2B d92e20276a4c6846969a4afaf9d8b05ab438094d3e38dc76655fae4733512ec734628acdcbcb1f29901f6401acb1017880a0594f48f64f6c9c975d884f9f5245 SHA512 31470ebd2ff86479d07ee6063a9e67a606369e31c62ba6b16a92464eb2fffd9e92eefe7a86636f4a7f82e1373b4ffceebc03bbcf99060bfa20be3d09a725f733 -EBUILD django-polymorphic-3.0.0.ebuild 755 BLAKE2B 4f34d57cf27b820ecc81277250aafa733684614a9123974de4cc60051512dc3ac45cd99044bbba7cf84b31037b479d8acb3a2343b5cda130055075d869aeb9d5 SHA512 c678b11b18564d88e2c13b3f7fec381aa642aa95a69b820dad55917211fddd7910f6f6e2c2df4ca27654640fbc3850c8ff9a0ebd303a46e4d7e136690354ed3f +DIST django_polymorphic-4.1.0.tar.gz 49696 BLAKE2B 9304897bbe428b2d83a512349335c742585fafd451f6fa48d873bd2cf1f87f03299da3b9d31dfaad52364fcd100e6ce8d81135c11510c3ebf9d025120299f383 SHA512 0f7859fce8607951ffcf4b1d463652c6719ac92b6185ebdfe6fe83e17c1bf6bc6c51788c1e0b2cf34095d9d80c016f66f44f304cb1e85ed1b01b0ba1de284c16 +EBUILD django-polymorphic-4.1.0.ebuild 532 BLAKE2B ffbca6fe3f766d29f14a0d1f5acd85d6da6aa3a9bbfa4df8f75a7ad3cd9c8830de5d6915159176d83e5989ea03e0ac308742524015a0fe8870f4c517bc319f8e SHA512 f8ff80cd7718cf6067bfc7edc0adca33653b2cc8ef780982221ac2c70fd96a9c4f095dfa5fd8879069adac425e958a048f0f15b47081430519cbe2cdd349e8f4 MISC metadata.xml 466 BLAKE2B 4445216e9025c6aed07e6a46f326ac3c40f18d979a63fa924c89ba5c3ebe2c73c299ed3012abe4f9949b7401c039e0272ff3d92e991993a0eee6547d97726be3 SHA512 ecba110cf26700c0b3c0ed9c2d3f22f24d6245b8c5a14ce9d66e00a36cce1d6e487d2842cc6bafedd26b575d79210e43032c6ea67612eb5bf2ce84fc3b51b956 diff --git a/dev-python/django-polymorphic/django-polymorphic-3.0.0.ebuild b/dev-python/django-polymorphic/django-polymorphic-3.0.0.ebuild deleted file mode 100644 index 8528964..0000000 --- a/dev-python/django-polymorphic/django-polymorphic-3.0.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="Seamless polymorphic inheritance for Django models" -HOMEPAGE="https://github.com/django-polymorphic/django-polymorphic https://pypi.org/project/django-polymorphic/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="all-rights-reserved" -RESTRICT="mirror" - -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" - -RDEPEND="" -DEPEND="${REDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - nosetests --verbose || die - py.test -v -v || die -} diff --git a/dev-python/django-polymorphic/django-polymorphic-4.1.0.ebuild b/dev-python/django-polymorphic/django-polymorphic-4.1.0.ebuild new file mode 100644 index 0000000..00d8a02 --- /dev/null +++ b/dev-python/django-polymorphic/django-polymorphic-4.1.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Seamless polymorphic inheritance for Django models" +HOMEPAGE="https://github.com/django-polymorphic/django-polymorphic https://pypi.org/project/django-polymorphic/" + +LICENSE="BSD" + +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="dev-python/django[${PYTHON_USEDEP}]"