commit: 4037bd6afe8cd3df7af707e6e90947393b9d7518
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 25 04:19:03 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jan 25 04:24:15 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4037bd6a
dev-python/django-cache-url: Bump to 3.4.6
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/django-cache-url/Manifest | 1 +
.../django-cache-url/django-cache-url-3.4.6.ebuild | 37 ++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-python/django-cache-url/Manifest
b/dev-python/django-cache-url/Manifest
index 60a36d077406..d0af691269fc 100644
--- a/dev-python/django-cache-url/Manifest
+++ b/dev-python/django-cache-url/Manifest
@@ -1 +1,2 @@
DIST django-cache-url-3.4.5.gh.tar.gz 8761 BLAKE2B
44cfa956f33848dd7947a97b390ba792d44eb1fd42b4c33ae57e3575405c40d93be4716c9b990e20a482b4398ed69ff838993e30ae0bdecb5a33c3fd7685a6e6
SHA512
532f47f6c8d8150d3ec484e533b165430ee6fd9854ed1b0404b68f8acaf388bfa2fb9beba8349d56e1e9d00dd65065425fdbeeed5eb698d9a745f8293f8d93ee
+DIST django-cache-url-3.4.6.gh.tar.gz 9296 BLAKE2B
b13f06446d46f462714efa9522a8b13940774d7e0fb34930318a6771b3748a8fc4b80c33497495dd27ff237237675e31d60407f02f26f44508bf1f02bd6e64f2
SHA512
eb3c6045e31eac5f7c9bb4e84abbe0f68697267a2de83989409354c508bf5adcff0fd76568a7fb18461e4d64807362694a4ffe43814bd11124b347022a53beea
diff --git a/dev-python/django-cache-url/django-cache-url-3.4.6.ebuild
b/dev-python/django-cache-url/django-cache-url-3.4.6.ebuild
new file mode 100644
index 000000000000..bfadbf07c1dd
--- /dev/null
+++ b/dev-python/django-cache-url/django-cache-url-3.4.6.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2021-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{12..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Use Cache URLs in your Django application"
+HOMEPAGE="
+ https://github.com/epicserve/django-cache-url/
+ https://pypi.org/project/django-cache-url/
+"
+SRC_URI="
+ https://github.com/epicserve/django-cache-url/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc
~x86"
+
+RDEPEND="
+ dev-python/django[${PYTHON_USEDEP}]
+"
+
+DOCS=( AUTHORS.rst CHANGELOG.rst README.rst )
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ sed -e '/--cov/d' -i setup.cfg || die
+ distutils-r1_python_prepare_all
+}