diff options
author | 2024-08-03 06:39:52 +0200 | |
---|---|---|
committer | 2024-08-03 06:39:52 +0200 | |
commit | 44afedffde794c9307b1b5d88d03b6f9c1676a9e (patch) | |
tree | a8b678e1b270bb1132536cc09291ff1ef41ab3c9 /dev-python/django-filter | |
parent | dev-python/django-filter: Remove old (diff) | |
download | gentoo-44afedffde794c9307b1b5d88d03b6f9c1676a9e.tar.gz gentoo-44afedffde794c9307b1b5d88d03b6f9c1676a9e.tar.bz2 gentoo-44afedffde794c9307b1b5d88d03b6f9c1676a9e.zip |
dev-python/django-filter: Bump to 24.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/django-filter')
-rw-r--r-- | dev-python/django-filter/Manifest | 1 | ||||
-rw-r--r-- | dev-python/django-filter/django-filter-24.3.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/django-filter/Manifest b/dev-python/django-filter/Manifest index e3dd51ba68e5..fd4fa3856bd5 100644 --- a/dev-python/django-filter/Manifest +++ b/dev-python/django-filter/Manifest @@ -1 +1,2 @@ DIST django-filter-24.2.gh.tar.gz 139679 BLAKE2B a45793644668525aee58eeea4d9e02c34d822234ef300853f393419ade54a00a3ff2b077db7d299a3b9165b5c689bb4d0e5f7f5417b33a73dc92202fafd9eeb3 SHA512 8a2f67ed497ab3866edd1fe12dc819ecaf5c1508eb44df164621c818c8e5a4ef9a5f4c584981170fd98d432b9231fb732826880ad37f63db65875195d1b4e103 +DIST django-filter-24.3.gh.tar.gz 141027 BLAKE2B e0403f597f2edb46efd800babedc227ce55b8e9084b7c1fabbd28d9fef85d43b3bc78c453f8c0edeaadfd74d4d3cfb9435378e7b1a2c1581acbed5593c235171 SHA512 73455b44400a60e7c68655b4bf755afc66a4f8c28f1700dbd2970c7c36d5ed61d8b673d72c75219bec5414b850d7cb5ac0a55ee90291c4ac17a672a5202d2934 diff --git a/dev-python/django-filter/django-filter-24.3.ebuild b/dev-python/django-filter/django-filter-24.3.ebuild new file mode 100644 index 000000000000..d8a17b109b61 --- /dev/null +++ b/dev-python/django-filter/django-filter-24.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Django app allowing declarative dynamic QuerySet filtering from URL parameters" +HOMEPAGE=" + https://github.com/carltongibson/django-filter/ + https://pypi.org/project/django-filter/ +" +SRC_URI=" + https://github.com/carltongibson/django-filter/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/django-4.2[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + ${RDEPEND} + dev-python/djangorestframework[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + !!dev-python/coreapi + ) +" + +python_test() { + local -x DJANGO_SETTINGS_MODULE=tests.settings + "${EPYTHON}" -m django test -v 2 || die +} |