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, 25 Jan 2020 20:54:27
Message-Id: 1579985634.40ca517025d99522b8a73d252a4a698759a77598.mgorny@gentoo
1 commit: 40ca517025d99522b8a73d252a4a698759a77598
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 25 20:31:24 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 25 20:53:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ca5170
7
8 dev-python/diskcache: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/diskcache/Manifest | 1 -
13 dev-python/diskcache/diskcache-2.8.3.ebuild | 42 -----------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/diskcache/Manifest b/dev-python/diskcache/Manifest
17 index e16bb839277..5cf476e6d6b 100644
18 --- a/dev-python/diskcache/Manifest
19 +++ b/dev-python/diskcache/Manifest
20 @@ -1,2 +1 @@
21 -DIST diskcache-2.8.3.tar.gz 438587 BLAKE2B 3b7b50fe6cabe8a4eb92b3dd72a2b99d6cedc8b7d055fcdf7b445f016957e6c7692571e9f83aafe36141b69a0e93f638b9e3e2f210bb56e6358260a5ff4130d3 SHA512 d96ac76dfb68cb817febd3f4ed8927a8409c02b13b4112a739528cade40f9a588c732dfc3148392dd12676380c3a2b006ee63b86f30ad70f5d205273003bf23d
22 DIST diskcache-3.1.0.tar.gz 489821 BLAKE2B 56b54662f31172f4f746ce885d57a3e9f34af9d7318300fe6906aee1b3373919f6ee33922ab30b7979cc6e271f2f780894438b4114483a7c76f198fb7b2213c1 SHA512 30ea3e6c1ed6430c1a7e3bf022bd9233e89a2486308d1f48f6e2f0b50ccc1ee50dade7c55d98a5611ef384bd193cd28f7e65f5737bae00845b17c159177dd345
23
24 diff --git a/dev-python/diskcache/diskcache-2.8.3.ebuild b/dev-python/diskcache/diskcache-2.8.3.ebuild
25 deleted file mode 100644
26 index 328f08ab6a9..00000000000
27 --- a/dev-python/diskcache/diskcache-2.8.3.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -HOMEPAGE="http://www.grantjenks.com/docs/diskcache/"
40 -DESCRIPTION="Disk and file backed cache"
41 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - dev-python/django[${PYTHON_USEDEP}]
51 -"
52 -DEPEND="
53 - dev-python/setuptools[${PYTHON_USEDEP}]
54 - test? (
55 - ${RDEPEND}
56 - dev-python/mock[${PYTHON_USEDEP}]
57 - dev-python/nose[${PYTHON_USEDEP}]
58 - )
59 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
60 -"
61 -
62 -python_compile_all() {
63 - if use doc; then
64 - emake -C docs html
65 - HTML_DOCS=( docs/_build/html/. )
66 - fi
67 -}
68 -
69 -python_test() {
70 - nosetests -v || die "failed with ${PYTHON}"
71 -}