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/requests-cache/
Date: Sat, 17 Jul 2021 13:11:05
Message-Id: 1626527454.8b1f205e64b3f890b9a10d160abbec8d425cf8d5.mgorny@gentoo
1 commit: 8b1f205e64b3f890b9a10d160abbec8d425cf8d5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 07:57:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 13:10:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b1f205e
7
8 dev-python/requests-cache: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/requests-cache/Manifest | 1 -
13 .../requests-cache/requests-cache-0.6.3.ebuild | 47 ----------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/requests-cache/Manifest b/dev-python/requests-cache/Manifest
17 index 5cdc32e7bf7..7263f500970 100644
18 --- a/dev-python/requests-cache/Manifest
19 +++ b/dev-python/requests-cache/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST requests-cache-0.6.3.gh.tar.gz 50303 BLAKE2B e8507a19f3883c050e1d819bf9ce8ebf720a5c6517e4004ecf745f5a197a8feac9cbca18ffa99001be0baffbad41d2ebfba5b63d90b55eda1d754d279242bbc6 SHA512 1fa801f60623dce0a5cd834272a74acf80b6ae52a602ae81fbd7e3653467800d9a58fb8220e30d53ef1b896aa01f2017f93dcbc2dacfd685ee9ae286f47077f5
22 DIST requests-cache-0.6.4.gh.tar.gz 50322 BLAKE2B c9a6cae957604bdfa6057621e028fad83476e5d918bbf9c58e73f09f8615398946f3cf6e3737c9ff916cba68d82ed66a674557fb733c74b874b0f68e2430d9a0 SHA512 31e2217e54892d8ec5fc9fcf60f650960621b1f97029c90deca925b9a1be9eb5a3ddb6ae68e581c805f20136f93eefa70d51e7e9f086ecbae76f8e550bbe3f1a
23 DIST requests-cache-0.7.1.gh.tar.gz 959455 BLAKE2B ce41514f21dc0708e437f70b92eb9d84f47433d04a11476cd5afefd050089e2d138213fa0b2f6bac200bd6d59db996187481ef3544d289a5117f3fe7160027b5 SHA512 cd83134ce9500c20c63fa92546cca41772ba3582a669914cd0885ec5aadf6ae4a6c4fc6a83dce73d2d5b24a80db2fde65cdb0a89b4b5703ddeac1d710404a05d
24
25 diff --git a/dev-python/requests-cache/requests-cache-0.6.3.ebuild b/dev-python/requests-cache/requests-cache-0.6.3.ebuild
26 deleted file mode 100644
27 index f3c4e497d2b..00000000000
28 --- a/dev-python/requests-cache/requests-cache-0.6.3.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{7..9} )
37 -PYTHON_REQ_USE="sqlite"
38 -
39 -inherit distutils-r1
40 -
41 -HOMEPAGE="
42 - https://pypi.org/project/requests-cache/
43 - https://github.com/reclosedev/requests-cache/"
44 -DESCRIPTION="Persistent cache for requests library"
45 -SRC_URI="
46 - https://github.com/reclosedev/requests-cache/archive/v${PV}.tar.gz
47 - -> ${P}.gh.tar.gz"
48 -
49 -LICENSE="BSD"
50 -SLOT="0"
51 -KEYWORDS="amd64 x86"
52 -
53 -RDEPEND="
54 - dev-python/itsdangerous[${PYTHON_USEDEP}]
55 - >=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
56 - >=dev-python/url-normalize-1.4[${PYTHON_USEDEP}]"
57 -BDEPEND="
58 - test? (
59 - dev-python/pytest-httpbin[${PYTHON_USEDEP}]
60 - dev-python/requests-mock[${PYTHON_USEDEP}]
61 - dev-python/timeout-decorator[${PYTHON_USEDEP}]
62 - )"
63 -
64 -distutils_enable_tests pytest
65 -
66 -python_test() {
67 - local skipped_tests=(
68 - # These require extra servers running
69 - tests/integration/test_dynamodb.py
70 - tests/integration/test_gridfs.py
71 - tests/integration/test_mongodb.py
72 - tests/integration/test_redis.py
73 - )
74 -
75 - local -x USE_PYTEST_HTTPBIN=true
76 - epytest ${skipped_tests[@]/#/--deselect }
77 -}