diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-11-01 07:21:26 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-11-01 07:21:26 +0000 |
| commit | e8613737f8488d500058cc8c5e7ad45a96ad2a0a (patch) | |
| tree | 864bbd6ac42dad2589dbd46239e38b4a82e4e0af /dev-python/django-cacheops | |
| parent | a796170fd911c9b466cbcb63efaa4f9cf59da488 (diff) | |
| download | baldeagleos-repo-e8613737f8488d500058cc8c5e7ad45a96ad2a0a.tar.gz baldeagleos-repo-e8613737f8488d500058cc8c5e7ad45a96ad2a0a.tar.xz baldeagleos-repo-e8613737f8488d500058cc8c5e7ad45a96ad2a0a.zip | |
Adding metadata
Diffstat (limited to 'dev-python/django-cacheops')
| -rw-r--r-- | dev-python/django-cacheops/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/django-cacheops/django-cacheops-7.1.ebuild | 68 |
2 files changed, 69 insertions, 0 deletions
diff --git a/dev-python/django-cacheops/Manifest b/dev-python/django-cacheops/Manifest index 8f102264aaaf..f660b95d25c6 100644 --- a/dev-python/django-cacheops/Manifest +++ b/dev-python/django-cacheops/Manifest @@ -1 +1,2 @@ DIST django-cacheops-7.0.2.tar.gz 71747 BLAKE2B ceb5a536b1ee25c2b25beb9bac4b193325d74b58f7abc6f8edf62a9327eeb25fe8fd68292d5887aa02655f14290e7430d18747ccd487a4f44cdad7fa991f458c SHA512 cd6ea11c54d0c49c52a912033b0ef5d1940c9f061b5a248b4238bf22efa17aefdc48c10a3724613401e9972226e0ad20cbd607b4b63812efc5ae78c35968b767 +DIST django_cacheops-7.1.tar.gz 72352 BLAKE2B c6a13d78a44238666c6d2bf11ba5ec1df5c1ecc0eada5c2f787ab0df2aa917488a28a42688acfb88af24b7d12836de6cff9dbb80d7c505873d13a46ee18809af SHA512 1254d9765e94382eab0c75fd24f3f152d28b0a4814a1af5ba15ca0989f6181432025b68068228b538bb11da240672c17a47418b98fbce519cc80c4725b570e08 diff --git a/dev-python/django-cacheops/django-cacheops-7.1.ebuild b/dev-python/django-cacheops/django-cacheops-7.1.ebuild new file mode 100644 index 000000000000..e3c0b6dcde4b --- /dev/null +++ b/dev-python/django-cacheops/django-cacheops-7.1.ebuild @@ -0,0 +1,68 @@ +# 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_{9,10,11,12,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 +} |
