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: Sat, 28 Mar 2020 17:22:01
Message-Id: 1585415453.c565c73af2db06f8966b908d4358b1ddd445e9f1.mgorny@gentoo
1 commit: c565c73af2db06f8966b908d4358b1ddd445e9f1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 17:10:53 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 17:10:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c565c73a
7
8 dev-python/pycares: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycares/Manifest | 1 -
13 dev-python/pycares/pycares-3.1.0_p3.ebuild | 28 ----------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/pycares/Manifest b/dev-python/pycares/Manifest
17 index a4b1ed73ba0..abdf8a58404 100644
18 --- a/dev-python/pycares/Manifest
19 +++ b/dev-python/pycares/Manifest
20 @@ -1,2 +1 @@
21 -DIST pycares-3.1.0-fix3.tar.gz 217616 BLAKE2B 121d09bd57f60371f9ee7d6f9fec0b0acd9413e86367c278a73dd0b47151e937358bb955f51657c117b72d83de23fc6e530f9418fd6d4c1b96ccb31045096e25 SHA512 d386d1b3434fc7a868783b96a2ef635695efdea62365134287fcaef6e44f75ba266f095c3e667ea1a57940d81d23adbf6e031b8571537a041aba15a36df7a904
22 DIST pycares-3.1.1.tar.gz 216259 BLAKE2B 4481689e418695838c456f1e15b38dcdabadb106f393f52ec21a358b06621650d4e82086ca913abb341b9d8658db1c9ddd0064e68413e71a4ddded070647edfb SHA512 52c529510e3342c0b97ad0b4b9277d1f364da7719817a31a3cfac1f88613ea82f127182eab7c52c2fcd08008c689885bb4196f887a0f81b769f08f7cbf39909e
23
24 diff --git a/dev-python/pycares/pycares-3.1.0_p3.ebuild b/dev-python/pycares/pycares-3.1.0_p3.ebuild
25 deleted file mode 100644
26 index fba0f774f51..00000000000
27 --- a/dev-python/pycares/pycares-3.1.0_p3.ebuild
28 +++ /dev/null
29 @@ -1,28 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{6,7,8} )
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 ~x86"
46 -IUSE=""
47 -# Tests fail with network-sandbox, since they try to resolve google.com
48 -RESTRICT="test"
49 -
50 -# uses bundled/patched c-ares
51 -RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]"
52 -DEPEND="${RDEPEND}
53 - dev-python/setuptools[${PYTHON_USEDEP}]"
54 -
55 -python_test() {
56 - "${EPYTHON}" tests/tests.py -v || die
57 -}