Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/
Date: Mon, 01 Nov 2021 10:09:14
Message-Id: 1635761336.bb1205d8e53cce7b9f0f0e666de2d6bdc066735d.arthurzam@gentoo
1 commit: bb1205d8e53cce7b9f0f0e666de2d6bdc066735d
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 1 10:00:32 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 1 10:08:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1205d8
7
8 dev-python/django-cacheops: add 6.0, enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/django-cacheops/Manifest | 1 +
13 .../django-cacheops/django-cacheops-6.0.ebuild | 62 ++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/dev-python/django-cacheops/Manifest b/dev-python/django-cacheops/Manifest
17 index 23223cae2c2..8ff19a8f58d 100644
18 --- a/dev-python/django-cacheops/Manifest
19 +++ b/dev-python/django-cacheops/Manifest
20 @@ -1 +1,2 @@
21 DIST django-cacheops-5.1.tar.gz 67776 BLAKE2B d89ac7aeccecdb69e02e03a46c9d4250439319a840f4902a51909c762cdcb8b422c2b2be2921ac256cf4a3d3248782ece0378c19b99109038b2f4e2262c57bcd SHA512 c7c5b284af4a7ec4faf88613de8eaf2bee298208ef13efbb4bb337c1e71817f36afe51ae4cbfa566a999e2dcf1361f84684189d9748a08de32675820f8b9c91b
22 +DIST django-cacheops-6.0.tar.gz 70280 BLAKE2B 9efe5a10d86f9ad25ad67701005de962185d2c491305bb56920203718c2d5fd0b28d43f2463e28c7c00c7592a78a3adea66090b398a205d5e361dfbcf90ae887 SHA512 54ecec62ff255a867b382bb1157117c8d14d7185891aacaae33ea11283beeae2fae60659621699a52f86d536b5a582d31f24f3b00f16c2e81c1a78ea4079504e
23
24 diff --git a/dev-python/django-cacheops/django-cacheops-6.0.ebuild b/dev-python/django-cacheops/django-cacheops-6.0.ebuild
25 new file mode 100644
26 index 00000000000..ecfd5010beb
27 --- /dev/null
28 +++ b/dev-python/django-cacheops/django-cacheops-6.0.ebuild
29 @@ -0,0 +1,62 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="ORM cache with automatic granular event-driven invalidation for Django"
39 +HOMEPAGE="https://github.com/Suor/django-cacheops"
40 +SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="test"
46 +RESTRICT="!test? ( test )"
47 +
48 +RDEPEND="
49 + >=dev-python/django-1.8[${PYTHON_USEDEP}]
50 + >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
51 + >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
52 + >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + test? (
56 + ${RDEPEND}
57 + dev-db/redis
58 + dev-python/dill[${PYTHON_USEDEP}]
59 + )
60 +"
61 +
62 +src_prepare() {
63 + # Remove test dependent on unpackaged before_after
64 + sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
65 + distutils-r1_src_prepare
66 +}
67 +
68 +python_test() {
69 + local -x DJANGO_SETTINGS_MODULE=tests.settings
70 + django-admin test -v 2 || die
71 +}
72 +
73 +src_test() {
74 + local redis_pid="${T}"/redis.pid
75 + local redis_port=6379
76 +
77 + einfo "Spawning Redis"
78 + einfo "NOTE: Port ${redis_port} must be free"
79 + "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
80 + daemonize yes
81 + pidfile ${redis_pid}
82 + port ${redis_port}
83 + bind 127.0.0.1
84 + EOF
85 +
86 + # Run the tests
87 + distutils-r1_src_test
88 +
89 + # Clean up afterwards
90 + kill "$(<"${redis_pid}")" || die
91 +}