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/pycares/
Date: Sun, 21 Nov 2021 20:11:08
Message-Id: 1637525458.a47851ea4fb90e07de6ad22d2f3e24cf7ce737a0.mgorny@gentoo
1 commit: a47851ea4fb90e07de6ad22d2f3e24cf7ce737a0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 21 20:09:58 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 21 20:10:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a47851ea
7
8 dev-python/pycares: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycares/Manifest | 1 -
13 dev-python/pycares/pycares-4.0.0.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/pycares/Manifest b/dev-python/pycares/Manifest
17 index 6b8ea4e9a3b7..d672ee1b4d11 100644
18 --- a/dev-python/pycares/Manifest
19 +++ b/dev-python/pycares/Manifest
20 @@ -1,2 +1 @@
21 -DIST pycares-4.0.0.tar.gz 43512 BLAKE2B cccfd5738582da570a2b9b17e6e31764ff2fffe4306f08c09374707a8e1c997ca7bdf0c867252c6ec66712622c927989c4d8bcad42075c48cb2af0a5364908e8 SHA512 796f14fb13c5e848b98459287d9658e8d81a48b2b6e08793f794bf9bcf7381bd400f43a07b50b23c4578579098dab5954beae09f8d35da7b809552f701d03b05
22 DIST pycares-4.1.2.tar.gz 43668 BLAKE2B 4b26f8643ff5ce297981b0b60b3afb34b249138e8f702dd4aa0a38935e9e5338d048f3be1b4fb64d6d8b2259a279a8881dbd44b412c10427dbd7eee664e70495 SHA512 6fb2d24fb5f2638c55424608b02ebe9f630866d644decfb663ab9d8e2bb7a42629748fa220054747f9c36ce3dcb42f3b8e457c5c39009f94b564ff07efde0c84
23
24 diff --git a/dev-python/pycares/pycares-4.0.0.ebuild b/dev-python/pycares/pycares-4.0.0.ebuild
25 deleted file mode 100644
26 index eceb9a8469eb..000000000000
27 --- a/dev-python/pycares/pycares-4.0.0.ebuild
28 +++ /dev/null
29 @@ -1,31 +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 -PYTHON_COMPAT=( python3_{7..10} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Python interface for c-ares"
39 -HOMEPAGE="https://github.com/saghul/pycares/"
40 -SRC_URI="https://github.com/saghul/pycares/archive/${P/_p/-fix}.tar.gz"
41 -S=${WORKDIR}/${PN}-${P/_p/-fix}
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm64 ~x86"
46 -# Tests fail with network-sandbox, since they try to resolve google.com
47 -PROPERTIES="test_network"
48 -RESTRICT="test"
49 -
50 -DEPEND="net-dns/c-ares"
51 -BDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
52 -RDEPEND="
53 - ${DEPEND}
54 - ${BDEPEND}"
55 -
56 -export PYCARES_USE_SYSTEM_LIB=1
57 -
58 -python_test() {
59 - "${EPYTHON}" tests/tests.py -v || die
60 -}