From ad3abb04090229b649ef3aff00f104288e2bf4cc Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Mon, 1 Nov 2021 14:50:37 +0000 Subject: Adding metadata --- dev-python/django-cacheops/Manifest | 1 + .../django-cacheops/django-cacheops-5.1.ebuild | 41 +++++++++++++- .../django-cacheops/django-cacheops-6.0.ebuild | 62 ++++++++++++++++++++++ dev-python/django-cacheops/metadata.xml | 1 + 4 files changed, 103 insertions(+), 2 deletions(-) create mode 100644 dev-python/django-cacheops/django-cacheops-6.0.ebuild (limited to 'dev-python/django-cacheops') diff --git a/dev-python/django-cacheops/Manifest b/dev-python/django-cacheops/Manifest index 23223cae2c28..8ff19a8f58d7 100644 --- a/dev-python/django-cacheops/Manifest +++ b/dev-python/django-cacheops/Manifest @@ -1 +1,2 @@ DIST django-cacheops-5.1.tar.gz 67776 BLAKE2B d89ac7aeccecdb69e02e03a46c9d4250439319a840f4902a51909c762cdcb8b422c2b2be2921ac256cf4a3d3248782ece0378c19b99109038b2f4e2262c57bcd SHA512 c7c5b284af4a7ec4faf88613de8eaf2bee298208ef13efbb4bb337c1e71817f36afe51ae4cbfa566a999e2dcf1361f84684189d9748a08de32675820f8b9c91b +DIST django-cacheops-6.0.tar.gz 70280 BLAKE2B 9efe5a10d86f9ad25ad67701005de962185d2c491305bb56920203718c2d5fd0b28d43f2463e28c7c00c7592a78a3adea66090b398a205d5e361dfbcf90ae887 SHA512 54ecec62ff255a867b382bb1157117c8d14d7185891aacaae33ea11283beeae2fae60659621699a52f86d536b5a582d31f24f3b00f16c2e81c1a78ea4079504e diff --git a/dev-python/django-cacheops/django-cacheops-5.1.ebuild b/dev-python/django-cacheops/django-cacheops-5.1.ebuild index 8f0a469024cf..2ee73aebff16 100644 --- a/dev-python/django-cacheops/django-cacheops-5.1.ebuild +++ b/dev-python/django-cacheops/django-cacheops-5.1.ebuild @@ -13,12 +13,49 @@ SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" -DEPEND=" +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 + ) +" + +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 + 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 -RDEPEND="${DEPEND}" + # Clean up afterwards + kill "$(<"${redis_pid}")" || die +} diff --git a/dev-python/django-cacheops/django-cacheops-6.0.ebuild b/dev-python/django-cacheops/django-cacheops-6.0.ebuild new file mode 100644 index 000000000000..7e1b9d20eb69 --- /dev/null +++ b/dev-python/django-cacheops/django-cacheops-6.0.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +inherit distutils-r1 + +DESCRIPTION="ORM cache with automatic granular event-driven invalidation for Django" +HOMEPAGE="https://github.com/Suor/django-cacheops" +SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.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 + 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 +} diff --git a/dev-python/django-cacheops/metadata.xml b/dev-python/django-cacheops/metadata.xml index 9b3f8b75e471..01b9b81c0c24 100644 --- a/dev-python/django-cacheops/metadata.xml +++ b/dev-python/django-cacheops/metadata.xml @@ -8,4 +8,5 @@ django-cacheops gentoo-staging + \ No newline at end of file -- cgit v1.3.1