Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-cache/
Date: Thu, 07 May 2020 12:23:11
Message-Id: 1588854182.57fc84fdd745bd31fcf9fc9d0652a7d8743d5849.zlogene@gentoo
1 commit: 57fc84fdd745bd31fcf9fc9d0652a7d8743d5849
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 7 12:22:07 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu May 7 12:23:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57fc84fd
7
8 dev-python/requests-cache: Drop old
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 .../requests-cache/requests-cache-0.4.12.ebuild | 33 ----------------------
14 1 file changed, 33 deletions(-)
15
16 diff --git a/dev-python/requests-cache/requests-cache-0.4.12.ebuild b/dev-python/requests-cache/requests-cache-0.4.12.ebuild
17 deleted file mode 100644
18 index fbebceefaad..00000000000
19 --- a/dev-python/requests-cache/requests-cache-0.4.12.ebuild
20 +++ /dev/null
21 @@ -1,33 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python2_7 python3_6 )
28 -
29 -inherit distutils-r1
30 -
31 -HOMEPAGE="https://pypi.org/project/requests-cache/"
32 -DESCRIPTION="Persistent cache for requests library"
33 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86"
38 -IUSE="doc"
39 -
40 -# Portage only has versions of request >= minimum border
41 -RDEPEND=">=dev-python/requests-2.6[${PYTHON_USEDEP}]"
42 -DEPEND="
43 - dev-python/setuptools[${PYTHON_USEDEP}]
44 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
45 -
46 -# Testsuite excels in tests connecting to the network via local server daemons
47 -python_compile_all() {
48 - use doc && emake -C docs html
49 -}
50 -
51 -python_install_all() {
52 - use doc && local HTML_DOCS=( docs/_build/html/. )
53 - distutils-r1_python_install_all
54 -}