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/aioresponses/
Date: Thu, 31 Mar 2022 12:42:27
Message-Id: 1648730535.4a43837de18a869d47c8710498105ef985ac4fe6.mgorny@gentoo
1 commit: 4a43837de18a869d47c8710498105ef985ac4fe6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 12:40:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 12:42:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a43837d
7
8 dev-python/aioresponses: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/aioresponses/aioresponses-0.7.3.ebuild | 36 -----------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-python/aioresponses/aioresponses-0.7.3.ebuild b/dev-python/aioresponses/aioresponses-0.7.3.ebuild
16 deleted file mode 100644
17 index 929183849024..000000000000
18 --- a/dev-python/aioresponses/aioresponses-0.7.3.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Helper to mock/fake web requests in Python's aiohttp package"
31 -HOMEPAGE="https://github.com/pnuckowski/aioresponses"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86"
37 -
38 -RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
39 -BDEPEND="
40 - dev-python/pbr[${PYTHON_USEDEP}]
41 - test? (
42 - dev-python/ddt[${PYTHON_USEDEP}]
43 - )
44 -"
45 -
46 -distutils_enable_sphinx docs
47 -distutils_enable_tests pytest
48 -
49 -python_test() {
50 - local deselect=(
51 - # These tests require Internet access
52 - tests/test_aioresponses.py::AIOResponsesTestCase::test_address_as_instance_of_url_combined_with_pass_through
53 - tests/test_aioresponses.py::AIOResponsesTestCase::test_pass_through_with_origin_params
54 - )
55 - epytest ${deselect[@]/#/--deselect }
56 -}