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/diskcache/
Date: Fri, 01 Apr 2022 07:45:55
Message-Id: 1648799109.da3017f8dc9f797d05b411ace810c382c77d8b51.mgorny@gentoo
1 commit: da3017f8dc9f797d05b411ace810c382c77d8b51
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 07:45:09 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 07:45:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da3017f8
7
8 dev-python/diskcache: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/diskcache/diskcache-5.4.0.ebuild | 36 -----------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-python/diskcache/diskcache-5.4.0.ebuild b/dev-python/diskcache/diskcache-5.4.0.ebuild
16 deleted file mode 100644
17 index 42daaf56c9bb..000000000000
18 --- a/dev-python/diskcache/diskcache-5.4.0.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -PYTHON_REQ_USE="sqlite"
28 -
29 -inherit distutils-r1
30 -
31 -HOMEPAGE="http://www.grantjenks.com/docs/diskcache/
32 - https://github.com/grantjenks/python-diskcache/"
33 -DESCRIPTION="Disk and file backed cache"
34 -SRC_URI="
35 - https://github.com/grantjenks/python-diskcache/archive/v${PV}.tar.gz
36 - -> ${P}.gh.tar.gz"
37 -S=${WORKDIR}/python-diskcache-${PV}
38 -
39 -LICENSE="Apache-2.0"
40 -SLOT="0"
41 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
42 -
43 -BDEPEND="
44 - test? (
45 - >=dev-python/django-3.2[${PYTHON_USEDEP}]
46 - )"
47 -
48 -distutils_enable_sphinx docs
49 -distutils_enable_tests pytest
50 -
51 -src_prepare() {
52 - # remove dep on pytest-xdist and pytest-cov
53 - sed -i -e '/-n auto/d' -e '/--cov/d' tox.ini || die
54 -
55 - distutils-r1_src_prepare
56 -}