summaryrefslogtreecommitdiff
path: root/dev-python/django-cacheops/django-cacheops-7.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-05-04 21:13:27 +0200
committerMichał Górny <mgorny@gentoo.org>2025-05-04 21:13:27 +0200
commitbe34934ff62181b20bd0c9a19d35ddb5d6c20ace (patch)
treee2c10128ef9542fe8a3b3ab478b0bd836a086ebd /dev-python/django-cacheops/django-cacheops-7.1.ebuild
parent69eaede1453cbd52e34a5213c901141f638fcd5a (diff)
downloadgentoo-be34934ff62181b20bd0c9a19d35ddb5d6c20ace.tar.gz
gentoo-be34934ff62181b20bd0c9a19d35ddb5d6c20ace.tar.bz2
gentoo-be34934ff62181b20bd0c9a19d35ddb5d6c20ace.zip
dev-python/django-cacheops: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/django-cacheops/django-cacheops-7.1.ebuild')
-rw-r--r--dev-python/django-cacheops/django-cacheops-7.1.ebuild68
1 files changed, 0 insertions, 68 deletions
diff --git a/dev-python/django-cacheops/django-cacheops-7.1.ebuild b/dev-python/django-cacheops/django-cacheops-7.1.ebuild
deleted file mode 100644
index bc22e91d846d..000000000000
--- a/dev-python/django-cacheops/django-cacheops-7.1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="ORM cache with automatic granular event-driven invalidation for Django"
-HOMEPAGE="
- https://github.com/Suor/django-cacheops/
- https://pypi.org/project/django-cacheops/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-python/django-3.2[${PYTHON_USEDEP}]
- >=dev-python/redis-2.9.1[${PYTHON_USEDEP}]
- >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
- >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- ${RDEPEND}
- dev-db/redis
- dev-python/dill[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- )
-"
-
-src_prepare() {
- # Remove test dependent on unpackaged before_after
- sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
- distutils-r1_src_prepare
-}
-
-python_test() {
- local -x DJANGO_SETTINGS_MODULE=tests.settings
- local -x PYTHONPATH=.
- django-admin test -v 2 || die
-}
-
-src_test() {
- local redis_pid="${T}"/redis.pid
- local redis_port=6379
-
- einfo "Spawning Redis"
- einfo "NOTE: Port ${redis_port} must be free"
- "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
- daemonize yes
- pidfile ${redis_pid}
- port ${redis_port}
- bind 127.0.0.1
- EOF
-
- # Run the tests
- distutils-r1_src_test
-
- # Clean up afterwards
- kill "$(<"${redis_pid}")" || die
-}