Gentoo Archives: gentoo-commits

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