summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-11-15 07:59:26 +0100
committerMichał Górny <mgorny@gentoo.org>2025-11-15 08:08:46 +0100
commit55297e247ce6af505007ed283b05ff74bcafaa18 (patch)
tree53e6f2fd57b91b251790e0e4198a1acfa08b365b /dev-python
parent5f073cc10f935f04078a20d5f87598dbc3e028f8 (diff)
downloadgentoo-55297e247ce6af505007ed283b05ff74bcafaa18.tar.gz
gentoo-55297e247ce6af505007ed283b05ff74bcafaa18.tar.bz2
gentoo-55297e247ce6af505007ed283b05ff74bcafaa18.zip
dev-python/django-template-partials: Bump to 25.3
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.3.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 fc2479f01a17..c17ad3018132 100644
--- a/dev-python/django-template-partials/Manifest
+++ b/dev-python/django-template-partials/Manifest
@@ -1 +1,2 @@
DIST django_template_partials-25.2.tar.gz 17787 BLAKE2B e471e8a1b8844352ae7b880e3f4b2ab858ff847a0a1980e80cf50048bfe623869f43fafd0d76ae07f2c6c8e28c95175e5d33bed743cb8930ef7cb5fce4686d74 SHA512 be5b71b498b5828169ef1ad0a79097cd3fe88a0bf6ff9e82d5f7466fd0939855cd053a2349924d0e99cd35553df809a6cc73e383734b62fb8450e3f9b270f2aa
+DIST django_template_partials-25.3.tar.gz 18052 BLAKE2B 3e52d3faba0f4286059acca56587add0e5876614287c2a94698a53bbda76c1dad245a34543eb90868bfe1a35d7cbf24a7cc004c3e67eb9d8273a1e110fce39c0 SHA512 d2f1cff1a9e7907a70944057732f6b100dba6a33fdf0d112f7fa6a9e767d3bf8faaf9cb3c6ef238e31f4d63827e6d475c098577047248cd43f9d7dc6a7170e15
diff --git a/dev-python/django-template-partials/django-template-partials-25.3.ebuild b/dev-python/django-template-partials/django-template-partials-25.3.ebuild
new file mode 100644
index 000000000000..a5cbf0eb3b04
--- /dev/null
+++ b/dev-python/django-template-partials/django-template-partials-25.3.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..14} )
+
+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}"
+}