summaryrefslogtreecommitdiff
path: root/dev-python/django-cache-url
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-01-25 07:19:42 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-01-25 07:19:42 +0000
commit3d4b850d8b98dca3137fae8b958b71ac3cb518e7 (patch)
tree98e2577fdb852320c5ebb8756bccd6c44df72e28 /dev-python/django-cache-url
parent6d990b017763239a01d68bf1ae440904ca5a9d07 (diff)
downloadbaldeagleos-repo-3d4b850d8b98dca3137fae8b958b71ac3cb518e7.tar.gz
baldeagleos-repo-3d4b850d8b98dca3137fae8b958b71ac3cb518e7.tar.xz
baldeagleos-repo-3d4b850d8b98dca3137fae8b958b71ac3cb518e7.zip
Adding metadata
Diffstat (limited to 'dev-python/django-cache-url')
-rw-r--r--dev-python/django-cache-url/Manifest1
-rw-r--r--dev-python/django-cache-url/django-cache-url-3.4.6.ebuild37
2 files changed, 38 insertions, 0 deletions
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..40001627750b
--- /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_{10..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
+}