diff options
| author | Michał Górny <mgorny@gentoo.org> | 2022-05-28 06:50:49 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2022-05-28 07:00:16 +0200 |
| commit | 4b06a6aeb967336e9d4a7c91a11a2ee3003f1c88 (patch) | |
| tree | 93acfbf41e31a89651489e01f47d3f0c154e2f84 /dev-python/django-cacheops/django-cacheops-6.1.ebuild | |
| parent | 6378f9ea2767792799024ec4390aa9daea0cb2d8 (diff) | |
| download | gentoo-4b06a6aeb967336e9d4a7c91a11a2ee3003f1c88.tar.gz gentoo-4b06a6aeb967336e9d4a7c91a11a2ee3003f1c88.tar.bz2 gentoo-4b06a6aeb967336e9d4a7c91a11a2ee3003f1c88.zip | |
dev-python/django-cacheops: Bump to 6.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/django-cacheops/django-cacheops-6.1.ebuild')
| -rw-r--r-- | dev-python/django-cacheops/django-cacheops-6.1.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/dev-python/django-cacheops/django-cacheops-6.1.ebuild b/dev-python/django-cacheops/django-cacheops-6.1.ebuild new file mode 100644 index 000000000000..9b7a1f421dc7 --- /dev/null +++ b/dev-python/django-cacheops/django-cacheops-6.1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="ORM cache with automatic granular event-driven invalidation for Django" +HOMEPAGE=" + https://github.com/Suor/django-cacheops/ + https://pypi.org/project/django-cacheops/ +" +SRC_URI=" + https://github.com/Suor/django-cacheops/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/django-1.8[${PYTHON_USEDEP}] + >=dev-python/redis-py-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}] + ) +" + +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 +} |
