summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-08-07 04:17:55 +0200
committerMichał Górny <mgorny@gentoo.org>2025-08-07 04:29:19 +0200
commite6a30ff52c0885d06b82e85fdaec13ac60c3abf9 (patch)
tree8ab3827edbb63fa734f57f357ba40bec9e319ead /dev-python
parentb2b14ee51cf5e7f03c715863a4dfd862f7ee88b2 (diff)
downloadgentoo-e6a30ff52c0885d06b82e85fdaec13ac60c3abf9.tar.gz
gentoo-e6a30ff52c0885d06b82e85fdaec13ac60c3abf9.tar.bz2
gentoo-e6a30ff52c0885d06b82e85fdaec13ac60c3abf9.zip
dev-python/django-template-partials: Bump to 25.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/django-template-partials/Manifest1
-rw-r--r--dev-python/django-template-partials/django-template-partials-25.1.ebuild35
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/django-template-partials/Manifest b/dev-python/django-template-partials/Manifest
index a5bed57f453d..1e32d4aee99c 100644
--- a/dev-python/django-template-partials/Manifest
+++ b/dev-python/django-template-partials/Manifest
@@ -1 +1,2 @@
DIST django_template_partials-24.4.tar.gz 14538 BLAKE2B 4c10d9cd236ac567515ca65c766d1af10dcd9ee7a0f47ccb8946296a8fda5f4b6f3a68e94f4f27833f862fff6ce4b09cfbe74899b64064cb036c28f21dca882a SHA512 9a9ff27229078b81c392233737585cfb5e6b92676328ae3b7668217894e4572f71b9665dff9c0b03f6d13f7a4fccc50339f1d3324ad8e41eee5d2a49425c8552
+DIST django_template_partials-25.1.tar.gz 17272 BLAKE2B ffe041046d7c30cd928ad4023263431381104d7d5c48d6c146a465063365700c34fec9d42ebced83092bf6ccbf9e240b791cfd87ee3c38404d952ddba48c44f6 SHA512 f8971d7a5e6afd0ca02e9bb4620f601b267afc0bf7ee99acae0e785b4fa2a9f6eeb9014958e19524c61d47379eea9d97411225707d93ea93f64d169ca5e066ee
diff --git a/dev-python/django-template-partials/django-template-partials-25.1.ebuild b/dev-python/django-template-partials/django-template-partials-25.1.ebuild
new file mode 100644
index 000000000000..b74eb8e6aa94
--- /dev/null
+++ b/dev-python/django-template-partials/django-template-partials-25.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3_11 python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Reusable named inline partials for the Django Template Language"
+HOMEPAGE="
+ https://github.com/carltongibson/django-template-partials/
+ https://pypi.org/project/django-template-partials/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/django[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ ${RDEPEND}
+ )
+"
+
+python_test() {
+ "${EPYTHON}" -m django test --settings=tests.settings -v 2 ||
+ die "Tests failed with ${EPYTHON}"
+}