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/socketpool/
Date: Sat, 07 Mar 2020 15:03:11
Message-Id: 1583593157.7c86d5fc7ffa9c2b202bc6c573033f0c31aaeb46.mgorny@gentoo
1 commit: 7c86d5fc7ffa9c2b202bc6c573033f0c31aaeb46
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 7 14:59:17 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 7 14:59:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c86d5fc
7
8 dev-python/socketpool: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/socketpool/socketpool-0.5.3-r1.ebuild | 39 ------------------------
13 dev-python/socketpool/socketpool-0.5.3.ebuild | 38 -----------------------
14 2 files changed, 77 deletions(-)
15
16 diff --git a/dev-python/socketpool/socketpool-0.5.3-r1.ebuild b/dev-python/socketpool/socketpool-0.5.3-r1.ebuild
17 deleted file mode 100644
18 index e423b751259..00000000000
19 --- a/dev-python/socketpool/socketpool-0.5.3-r1.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python2_7 python3_{6,7} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="A simple Python socket pool"
32 -HOMEPAGE="https://github.com/benoitc/socketpool/"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
36 -IUSE="examples test"
37 -RESTRICT="!test? ( test )"
38 -LICENSE="|| ( MIT public-domain )"
39 -SLOT="0"
40 -
41 -RDEPEND="$(python_gen_cond_dep 'dev-python/gevent[${PYTHON_USEDEP}]' 'python2*')"
42 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
43 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
44 -
45 -PATCHES=( "${FILESDIR}"/${PN}-0.5.2-locale.patch )
46 -
47 -python_test() {
48 - py.test tests || die
49 -}
50 -
51 -python_install_all() {
52 - if use examples; then
53 - insinto /usr/share/doc/${PF}
54 - doins -r examples
55 - fi
56 - distutils-r1_python_install_all
57 -
58 - # package installs unneeded LICENSE files here
59 - rm -rf "${ED}"/usr/socketpool || die
60 -}
61
62 diff --git a/dev-python/socketpool/socketpool-0.5.3.ebuild b/dev-python/socketpool/socketpool-0.5.3.ebuild
63 deleted file mode 100644
64 index 15d48d4d48b..00000000000
65 --- a/dev-python/socketpool/socketpool-0.5.3.ebuild
66 +++ /dev/null
67 @@ -1,38 +0,0 @@
68 -# Copyright 1999-2020 Gentoo Authors
69 -# Distributed under the terms of the GNU General Public License v2
70 -
71 -EAPI=6
72 -PYTHON_COMPAT=( python{2_7,3_6} )
73 -
74 -inherit distutils-r1
75 -
76 -DESCRIPTION="A simple Python socket pool"
77 -HOMEPAGE="https://github.com/benoitc/socketpool/"
78 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
79 -
80 -KEYWORDS="amd64 arm ~arm64 ppc ppc64 s390 ~sh ~sparc x86"
81 -IUSE="examples test"
82 -RESTRICT="!test? ( test )"
83 -LICENSE="|| ( MIT public-domain )"
84 -SLOT="0"
85 -
86 -RDEPEND="$(python_gen_cond_dep 'dev-python/gevent[${PYTHON_USEDEP}]' 'python2*')"
87 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
88 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
89 -
90 -PATCHES=( "${FILESDIR}"/${PN}-0.5.2-locale.patch )
91 -
92 -python_test() {
93 - py.test tests || die
94 -}
95 -
96 -python_install_all() {
97 - if use examples; then
98 - insinto /usr/share/doc/${PF}
99 - doins -r examples
100 - fi
101 - distutils-r1_python_install_all
102 -
103 - # package installs unneeded LICENSE files here
104 - rm -rf "${ED}"/usr/socketpool || die
105 -}