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/aiodns/
Date: Tue, 30 Aug 2022 19:09:11
Message-Id: 1661886544.791e1123864c1e4bef5158e34957f01a45d9c278.mgorny@gentoo
1 commit: 791e1123864c1e4bef5158e34957f01a45d9c278
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 19:02:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 19:09:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=791e1123
7
8 dev-python/aiodns: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/aiodns/aiodns-3.0.0.ebuild | 31 -------------------------------
13 1 file changed, 31 deletions(-)
14
15 diff --git a/dev-python/aiodns/aiodns-3.0.0.ebuild b/dev-python/aiodns/aiodns-3.0.0.ebuild
16 deleted file mode 100644
17 index c693ea13d3be..000000000000
18 --- a/dev-python/aiodns/aiodns-3.0.0.ebuild
19 +++ /dev/null
20 @@ -1,31 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -PYTHON_COMPAT=( python3_{8..10} )
26 -
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Simple DNS resolver for asyncio"
30 -HOMEPAGE="https://github.com/saghul/aiodns/"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm64 ~riscv ~x86"
36 -IUSE=""
37 -# Tests fail with network-sandbox, since they try to resolve google.com
38 -PROPERTIES="test_network"
39 -RESTRICT="test"
40 -
41 -RDEPEND=">=dev-python/pycares-3[${PYTHON_USEDEP}]"
42 -DEPEND="${RDEPEND}"
43 -
44 -PATCHES=(
45 - # https://github.com/saghul/aiodns/commit/146286601fe80eb4ede8126769e79b5d5e63f64e
46 - "${FILESDIR}/${P}-py3.10-tests.patch"
47 -)
48 -
49 -python_test() {
50 - "${EPYTHON}" tests.py -v || die
51 -}