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/httpretty/
Date: Sat, 18 Sep 2021 19:44:01
Message-Id: 1631994218.93a079297e7e0147fec49b89f1045cdbf6276a25.mgorny@gentoo
1 commit: 93a079297e7e0147fec49b89f1045cdbf6276a25
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 18 17:52:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 18 19:43:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a07929
7
8 dev-python/httpretty: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/httpretty/Manifest | 1 -
13 dev-python/httpretty/httpretty-1.1.3.ebuild | 46 -----------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/httpretty/Manifest b/dev-python/httpretty/Manifest
17 index b985df8da2d..b52ac27fddb 100644
18 --- a/dev-python/httpretty/Manifest
19 +++ b/dev-python/httpretty/Manifest
20 @@ -1,2 +1 @@
21 -DIST httpretty-1.1.3.tar.gz 441309 BLAKE2B 9c8138bd83fd93602d4ab72e9ee2ff27605a851ee4e7e61f5fbe0d1423041479311315cf0168acb2474c2b579401c6817f4713f61707e21faad076968b2aa1f5 SHA512 3bac68ecb78efc7592f9ab314ca9ef570c8193fb7c2ab3d3fa003b0ff623ac57d6a74f8f0e7b6c2ed45f30e520d157345db56837212d9acd4ec6259570a43dfe
22 DIST httpretty-1.1.4.tar.gz 442389 BLAKE2B 020a9fd2b5dc9790b53009caac37a3cf5a0e47102b9be05f4df255880f5daf5e7689714e0c0a8f223155d191c471cb5ff4f9b0d0d34b07bd5f377311ed56ba25 SHA512 4daceea4f30ce181e871167d304bd7af9d504364f55d42f8025770f2efe7e833d018aed681c8733d653d4de90db3433e999c56bccd4675f81e66d1cc4023e418
23
24 diff --git a/dev-python/httpretty/httpretty-1.1.3.ebuild b/dev-python/httpretty/httpretty-1.1.3.ebuild
25 deleted file mode 100644
26 index 2f421089dfc..00000000000
27 --- a/dev-python/httpretty/httpretty-1.1.3.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="HTTP client mock for Python"
40 -HOMEPAGE="https://github.com/gabrielfalcao/httpretty"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -SLOT="0"
44 -LICENSE="MIT"
45 -KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86"
46 -
47 -RDEPEND="
48 - dev-python/urllib3[${PYTHON_USEDEP}]"
49 -# redis skipped as it requires a redis server running
50 -DEPEND="
51 - test? (
52 - >=dev-python/boto3-1.17.72[${PYTHON_USEDEP}]
53 - dev-python/eventlet[${PYTHON_USEDEP}]
54 - dev-python/freezegun[${PYTHON_USEDEP}]
55 - dev-python/httplib2[${PYTHON_USEDEP}]
56 - >=dev-python/httpx-0.18.1[${PYTHON_USEDEP}]
57 - dev-python/pyopenssl[${PYTHON_USEDEP}]
58 - >=dev-python/requests-1.1[${PYTHON_USEDEP}]
59 - dev-python/sure[${PYTHON_USEDEP}]
60 - >=www-servers/tornado-2.2[${PYTHON_USEDEP}]
61 -)"
62 -
63 -distutils_enable_tests nose
64 -
65 -python_prepare_all() {
66 - # remove useless deps
67 - sed -i -e '/rednose/d' setup.cfg || die
68 - # tests requiring network access
69 - rm tests/functional/test_passthrough.py || die
70 - # requires running redis server
71 - # it is skipped correctly but it causes unnecessary dep on redis-py
72 - #rm tests/functional/bugfixes/test_redis.py || die
73 -
74 - distutils-r1_python_prepare_all
75 -}