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/
Date: Fri, 31 Jul 2020 06:21:13
Message-Id: 1596176454.cf069ca483d04ddf820004fa13cda9883b1d308c.mgorny@gentoo
1 commit: cf069ca483d04ddf820004fa13cda9883b1d308c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:32:28 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:20:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf069ca4
7
8 dev-python/requests: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/requests/Manifest | 1 -
13 dev-python/requests/requests-2.21.0-r1.ebuild | 53 ---------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/requests/Manifest b/dev-python/requests/Manifest
17 index b6aa08a4a64..2bffc9bf307 100644
18 --- a/dev-python/requests/Manifest
19 +++ b/dev-python/requests/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST requests-2.21.0.tar.gz 111528 BLAKE2B 7b40f9f572a8efde41c177fb5d1e1eaf29ca60cad0661fa28ac0085f3700348380d619f68c0082f24044d1af82b16d6b1e7d5dd2c2a2329f85fcee7141b1fbf6 SHA512 385e1d80993a21c09e7c4682500ca8c24155962ba41ecd8e73612722b2ff6618b736e827fc48ad1683b0d2bc7a420cfe680f5107860aca52656ef777f1d60104
22 DIST requests-2.23.0.tar.gz 114327 BLAKE2B 75bdf83e117e9f67c2032609ed5c20582f743519ab8364dd6b12685efd6b6e438f1c155fe9d3df87e48608747f59df6d99698d1f68e5df6c0cbced9e7d1a9b37 SHA512 a0f7db5cc9ce67af9f6f81b72e41491735a102f2a1da2fbde98e279846e2140cd26b6370aa5ec79c148c397885a7ae2bbce45c4587215f510dd02b8ac57cb46e
23 DIST requests-2.24.0.tar.gz 115071 BLAKE2B ae98be1d023b2a7b883e15a7a5d214ecbf482234e9de6bfc9cd06d1f04d1b57d101d41a2c6fdd07b7a6b468875463514841d2e023391ac8ae0797a2cb58b3424 SHA512 46ca8ab70eb39be8398c242404b9b3ffb6baddd5c78eaad125b55c719154eb8c7b6a737a8dc587b0cb51b3b9a074abaa8b2ff347a64d38f4f90cdba4db16a119
24
25 diff --git a/dev-python/requests/requests-2.21.0-r1.ebuild b/dev-python/requests/requests-2.21.0-r1.ebuild
26 deleted file mode 100644
27 index 6151447ebb1..00000000000
28 --- a/dev-python/requests/requests-2.21.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,53 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
37 -PYTHON_REQ_USE="threads(+)"
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="HTTP library for human beings"
42 -HOMEPAGE="https://requests.readthedocs.io/"
43 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris"
48 -IUSE="socks5 +ssl"
49 -
50 -RDEPEND="
51 - >=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
52 - >=dev-python/chardet-3.0.2[${PYTHON_USEDEP}]
53 - <dev-python/chardet-3.1.0[${PYTHON_USEDEP}]
54 - >=dev-python/idna-2.5[${PYTHON_USEDEP}]
55 - <dev-python/idna-2.9[${PYTHON_USEDEP}]
56 - <dev-python/urllib3-1.25[${PYTHON_USEDEP}]
57 - socks5? ( >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}] )
58 - ssl? (
59 - >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
60 - >=dev-python/pyopenssl-0.14[$(python_gen_usedep 'python*' pypy)]
61 - )
62 -"
63 -
64 -DEPEND="${RDEPEND}
65 - dev-python/setuptools[${PYTHON_USEDEP}]
66 -"
67 -
68 -# tests connect to various remote sites
69 -RESTRICT="test"
70 -
71 -#DEPEND+="
72 -# test? (
73 -# dev-python/pytest[${PYTHON_USEDEP}]
74 -# dev-python/pytest-httpbin[${PYTHON_USEDEP}]
75 -# dev-python/pytest-mock[${PYTHON_USEDEP}]
76 -# dev-python/pytest-xdist[${PYTHON_USEDEP}]
77 -# >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
78 -# )
79 -#"
80 -
81 -python_test() {
82 - py.test || die
83 -}