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: Sat, 24 Jul 2021 17:30:14
Message-Id: 1627147795.f7a5b9b62a5fd2606b97838cf39a7dec36a4cbf2.mgorny@gentoo
1 commit: f7a5b9b62a5fd2606b97838cf39a7dec36a4cbf2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 24 15:19:08 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 24 17:29:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a5b9b6
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.2.1.ebuild | 37 -----------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/dev-python/diskcache/diskcache-5.2.1.ebuild b/dev-python/diskcache/diskcache-5.2.1.ebuild
16 deleted file mode 100644
17 index d5be692d8b6..00000000000
18 --- a/dev-python/diskcache/diskcache-5.2.1.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..9} )
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="amd64 ~arm arm64 ~mips ~ppc64 x86 ~amd64-linux ~x86-linux"
42 -
43 -BDEPEND="
44 - test? (
45 - <dev-python/django-3.2[${PYTHON_USEDEP}]
46 - )
47 -"
48 -
49 -distutils_enable_sphinx docs
50 -distutils_enable_tests pytest
51 -
52 -src_prepare() {
53 - # remove dep on pytest-xdist and pytest-cov
54 - sed -i -e '/-n auto/d' -e '/--cov/d' tox.ini || die
55 -
56 - distutils-r1_src_prepare
57 -}