Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/py-amqp/
Date: Sat, 01 Sep 2018 05:30:41
Message-Id: 1535779824.a69e3f4ced3b23928db30cb13d5b3a2514f47282.prometheanfire@gentoo
1 commit: a69e3f4ced3b23928db30cb13d5b3a2514f47282
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 1 05:28:27 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 1 05:30:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a69e3f4c
7
8 dev-python/py-amqp: cleanup
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 dev-python/py-amqp/Manifest | 3 --
13 dev-python/py-amqp/py-amqp-1.4.9.ebuild | 65 ---------------------------------
14 dev-python/py-amqp/py-amqp-2.2.1.ebuild | 55 ----------------------------
15 dev-python/py-amqp/py-amqp-2.2.2.ebuild | 55 ----------------------------
16 dev-python/py-amqp/py-amqp-2.3.2.ebuild | 2 +-
17 5 files changed, 1 insertion(+), 179 deletions(-)
18
19 diff --git a/dev-python/py-amqp/Manifest b/dev-python/py-amqp/Manifest
20 index 15f985f281d..5fd1475c3af 100644
21 --- a/dev-python/py-amqp/Manifest
22 +++ b/dev-python/py-amqp/Manifest
23 @@ -1,4 +1 @@
24 -DIST amqp-1.4.9.tar.gz 79392 BLAKE2B 03c37db7341705c05d8a1087d8e2911f5d89676b0dd00381677f09d1541b76bf6881688a8897202534e57f7dec0d4341e76138f4eb81b9cef3653f98a7c334b5 SHA512 9c2fecb3c9e1d24333895031a9ae255a858146d498b169a89c3ca8061428c622d85dcee8d2ca45d63a3ecdda34a1efc917aabf42c7c35b579143caf81494a079
25 -DIST amqp-2.2.1.tar.gz 103599 BLAKE2B 2f0f5573bea19a8dcd609cbadf664ad8835b83f470d0ac24214f3cebcf174e9838fd2f1e4dde029ee9511a1e55ff4b7e2a6368902fdc22035272cc01b8c2f96b SHA512 dcb6297917d4528cfe3ebc446e97be6fed3c100ea77c68923c923cac466fa2d85ed8afaf19582b281ee6e05d699e8ed3fd6cdcbb0cb4de0451becaf16711af29
26 -DIST amqp-2.2.2.tar.gz 103128 BLAKE2B ee1513e12e1695ce2d16f72fc09dce713a5c9e7e630f8e8d2d39b580b15e254287ff49039db6a43f808f1d2c26239195c003648f360169abfbdcdab9aa700604 SHA512 8ebb8f2b0942e9b88b12cf35b8861da392190dd200d843bf3bba7b98e325afa53f52fe3f8250af1d2c1c14ffe8a071df5494d1eedc1bff974cd62fe88bc3e1e7
27 DIST amqp-2.3.2.tar.gz 105854 BLAKE2B 8bacae52f03118e2d0fb93a6494628f18f7139d655f1c4b3e7cda9fd81eba5d92f56038bc01dd4a28a89168be0fd51013db0060e945e7f7c63e1423892feaee6 SHA512 c9c99a238cf64ab5590eaea5756e9f68d58769b4d74af3405321d5c129171f34e6a5d20f2125ef2828e843b637fbd115d1ee9391726fe6ff09d233f0e6bdd511
28
29 diff --git a/dev-python/py-amqp/py-amqp-1.4.9.ebuild b/dev-python/py-amqp/py-amqp-1.4.9.ebuild
30 deleted file mode 100644
31 index 4b82672bc71..00000000000
32 --- a/dev-python/py-amqp/py-amqp-1.4.9.ebuild
33 +++ /dev/null
34 @@ -1,65 +0,0 @@
35 -# Copyright 1999-2017 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=5
39 -
40 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
41 -
42 -inherit distutils-r1
43 -
44 -MY_PN="amqp"
45 -MY_P="${MY_PN}-${PV}"
46 -
47 -DESCRIPTION="Low-level AMQP client for Python (fork of amqplib)"
48 -HOMEPAGE="https://github.com/celery/py-amqp https://pypi.org/project/amqp/"
49 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
50 -
51 -S="${WORKDIR}/${MY_P}"
52 -
53 -LICENSE="LGPL-3"
54 -SLOT="0"
55 -KEYWORDS="amd64 ~arm64 x86"
56 -IUSE="doc examples extras test"
57 -
58 -RDEPEND=""
59 -DEPEND="
60 - dev-python/setuptools[${PYTHON_USEDEP}]
61 - doc? (
62 - dev-python/sphinx[${PYTHON_USEDEP}]
63 - >=dev-python/sphinxcontrib-issuetracker-0.9[${PYTHON_USEDEP}]
64 - )
65 - test? (
66 - dev-python/nose[${PYTHON_USEDEP}]
67 - dev-python/nose-cover3[${PYTHON_USEDEP}]
68 - >=dev-python/coverage-3.0[${PYTHON_USEDEP}]
69 - dev-python/mock[${PYTHON_USEDEP}]
70 - )
71 -"
72 -
73 -# Same tests from before require a socket connection
74 -PATCHES=( "${FILESDIR}"/${PN}-1.3.3-disable_socket_tests.patch )
75 -
76 -python_compile_all() {
77 - use doc && emake -C docs html
78 -}
79 -
80 -python_test() {
81 - cp -r -l funtests "${BUILD_DIR}"/lib/ || die
82 - cd "${BUILD_DIR}"/lib || die
83 - if [[ ${EPYTHON:6:1} == 3 ]]; then
84 - # -n causes Python to write into hardlinked files
85 - 2to3 --no-diffs -w funtests || die
86 - fi
87 - "${PYTHON}" funtests/run_all.py || die "Tests failed under ${EPYTHON}"
88 - rm -rf funtests/ || die
89 -}
90 -
91 -python_install_all() {
92 - use examples && local EXAMPLES=( demo/. )
93 - use doc && local HTML_DOCS=( docs/.build/html/. )
94 - if use extras; then
95 - insinto /usr/share/${PF}/extras
96 - doins -r extra
97 - fi
98 - distutils-r1_python_install_all
99 -}
100
101 diff --git a/dev-python/py-amqp/py-amqp-2.2.1.ebuild b/dev-python/py-amqp/py-amqp-2.2.1.ebuild
102 deleted file mode 100644
103 index b5e2a2aca35..00000000000
104 --- a/dev-python/py-amqp/py-amqp-2.2.1.ebuild
105 +++ /dev/null
106 @@ -1,55 +0,0 @@
107 -# Copyright 1999-2017 Gentoo Foundation
108 -# Distributed under the terms of the GNU General Public License v2
109 -
110 -EAPI=6
111 -
112 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
113 -
114 -inherit distutils-r1
115 -
116 -MY_PN="amqp"
117 -MY_P="${MY_PN}-${PV}"
118 -
119 -DESCRIPTION="Low-level AMQP client for Python (fork of amqplib)"
120 -HOMEPAGE="https://github.com/celery/py-amqp https://pypi.org/project/amqp/"
121 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
122 -
123 -S="${WORKDIR}/${MY_P}"
124 -
125 -LICENSE="BSD"
126 -SLOT="0"
127 -KEYWORDS="amd64 ~arm64 x86"
128 -IUSE="doc extras test"
129 -
130 -RDEPEND=""
131 -DEPEND="
132 - dev-python/setuptools[${PYTHON_USEDEP}]
133 - >=dev-python/vine-1.1.3[${PYTHON_USEDEP}]
134 - doc? (
135 - dev-python/sphinx[${PYTHON_USEDEP}]
136 - dev-python/sphinx_celery[${PYTHON_USEDEP}]
137 - )
138 - test? (
139 - >=dev-python/case-1.3.1[${PYTHON_USEDEP}]
140 - >=dev-python/pytest-3.0[${PYTHON_USEDEP}]
141 - dev-python/pytest-cov[${PYTHON_USEDEP}]
142 - dev-python/pytest-mock[${PYTHON_USEDEP}]
143 - )
144 -"
145 -
146 -python_compile_all() {
147 - use doc && emake -C docs html
148 -}
149 -
150 -python_test() {
151 - esetup.py test
152 -}
153 -
154 -python_install_all() {
155 - use doc && local HTML_DOCS=( docs/_build/html/. )
156 - if use extras; then
157 - insinto /usr/share/${PF}/extras
158 - doins -r extra
159 - fi
160 - distutils-r1_python_install_all
161 -}
162
163 diff --git a/dev-python/py-amqp/py-amqp-2.2.2.ebuild b/dev-python/py-amqp/py-amqp-2.2.2.ebuild
164 deleted file mode 100644
165 index efc12460921..00000000000
166 --- a/dev-python/py-amqp/py-amqp-2.2.2.ebuild
167 +++ /dev/null
168 @@ -1,55 +0,0 @@
169 -# Copyright 1999-2018 Gentoo Foundation
170 -# Distributed under the terms of the GNU General Public License v2
171 -
172 -EAPI=6
173 -
174 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
175 -
176 -inherit distutils-r1
177 -
178 -MY_PN="amqp"
179 -MY_P="${MY_PN}-${PV}"
180 -
181 -DESCRIPTION="Low-level AMQP client for Python (fork of amqplib)"
182 -HOMEPAGE="https://github.com/celery/py-amqp https://pypi.org/project/amqp/"
183 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
184 -
185 -S="${WORKDIR}/${MY_P}"
186 -
187 -LICENSE="BSD"
188 -SLOT="0"
189 -KEYWORDS="amd64 ~arm64 x86"
190 -IUSE="doc extras test"
191 -
192 -RDEPEND=""
193 -DEPEND="
194 - dev-python/setuptools[${PYTHON_USEDEP}]
195 - >=dev-python/vine-1.1.3[${PYTHON_USEDEP}]
196 - doc? (
197 - dev-python/sphinx[${PYTHON_USEDEP}]
198 - dev-python/sphinx_celery[${PYTHON_USEDEP}]
199 - )
200 - test? (
201 - >=dev-python/case-1.3.1[${PYTHON_USEDEP}]
202 - >=dev-python/pytest-3.0[${PYTHON_USEDEP}]
203 - dev-python/pytest-cov[${PYTHON_USEDEP}]
204 - dev-python/pytest-mock[${PYTHON_USEDEP}]
205 - )
206 -"
207 -
208 -python_compile_all() {
209 - use doc && emake -C docs html
210 -}
211 -
212 -python_test() {
213 - esetup.py test
214 -}
215 -
216 -python_install_all() {
217 - use doc && local HTML_DOCS=( docs/_build/html/. )
218 - if use extras; then
219 - insinto /usr/share/${PF}/extras
220 - doins -r extra
221 - fi
222 - distutils-r1_python_install_all
223 -}
224
225 diff --git a/dev-python/py-amqp/py-amqp-2.3.2.ebuild b/dev-python/py-amqp/py-amqp-2.3.2.ebuild
226 index b70ca5751c1..efc12460921 100644
227 --- a/dev-python/py-amqp/py-amqp-2.3.2.ebuild
228 +++ b/dev-python/py-amqp/py-amqp-2.3.2.ebuild
229 @@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
230
231 LICENSE="BSD"
232 SLOT="0"
233 -KEYWORDS="~amd64 ~arm64 ~x86"
234 +KEYWORDS="amd64 ~arm64 x86"
235 IUSE="doc extras test"
236
237 RDEPEND=""