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/kombu/, dev-python/kombu/files/
Date: Tue, 02 May 2017 19:15:53
Message-Id: 1493752523.4163e796f3c2dc0116d2caf063f3692b55dc81da.mgorny@gentoo
1 commit: 4163e796f3c2dc0116d2caf063f3692b55dc81da
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 18:37:53 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 19:15:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4163e796
7
8 dev-python/kombu: Clean old versions up
9
10 dev-python/kombu/Manifest | 1 -
11 .../files/kombu-3.0.26-pymongo-test-fix.patch | 40 --------
12 dev-python/kombu/kombu-3.0.34.ebuild | 110 ---------------------
13 3 files changed, 151 deletions(-)
14
15 diff --git a/dev-python/kombu/Manifest b/dev-python/kombu/Manifest
16 index 221e9f562fc..dac5d552aa5 100644
17 --- a/dev-python/kombu/Manifest
18 +++ b/dev-python/kombu/Manifest
19 @@ -1,3 +1,2 @@
20 -DIST kombu-3.0.34.tar.gz 380374 SHA256 8878ff19b09d86b2689682a4a3eb163d70115ef4ebd974966079a0edd80075da SHA512 9de5d9e4784d814f8c40633bfac08a4e9279d55d2122d1cfdee6418066ba61e0ef7dcaba9cf21d2b0b99989ba292125bbe4b38be90ecc288cb038aea638d1508 WHIRLPOOL d0dfe755af559f4c1d0e8fb6bbe3c7767874a34db57f4958196b853147061e078fac9d5ab31957ab88707220e738a05248afa5d86d9fbdd1a5619aab80d9711a
21 DIST kombu-3.0.37.tar.gz 411790 SHA256 e064a00c66b4d1058cd2b0523fb8d98c82c18450244177b6c0f7913016642650 SHA512 ba9bb00e23ce2d3da87eb07aacff8d63ef9879e6ca9f3fe82653cc2ee91610199fe8fc778d7c2e00df05b46130ecda0bdeceda48192b8af1fb0eca41fbb44712 WHIRLPOOL 1e3344eb25024e94d341a3928bd04a9fd13bb41fefd7254e5f2dd70a8b235ae48b93d9b003b21d9ccde4ebdb8d1f349d9af6d54b51c74d6c6b1ee7913ee06919
22 DIST kombu-4.0.2.tar.gz 418051 SHA256 d0fc6f2a36610a308f838db4b832dad79a681b516ac1d1a1f9d42edb58cc11a2 SHA512 99be6aa833eedc02897da90ebbd838bf0ac2a21db91350e235fae99ce31607cbc749f73f99d24f76acfc68b81d6263688d35b72ed62bb21d024a3ab385fa666e WHIRLPOOL e140f700c2e00ab892b54664d61c56343fb4d51f65fc0c42e2b4e0b0f75836889f5746061db1f31d3ba5f5981946d47d29ba64b8e6f0561fec054b77167d090e
23
24 diff --git a/dev-python/kombu/files/kombu-3.0.26-pymongo-test-fix.patch b/dev-python/kombu/files/kombu-3.0.26-pymongo-test-fix.patch
25 deleted file mode 100644
26 index b2e1185b7ca..00000000000
27 --- a/dev-python/kombu/files/kombu-3.0.26-pymongo-test-fix.patch
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -https://github.com/celery/kombu/commit/8e6aed9fcf978b6c34108c0d37b720bd125f0352
31 -diff --git a/kombu/tests/transport/test_mongodb.py b/kombu/tests/transport/test_mongodb.py
32 -index b4d10fc..58c92e7 100644
33 ---- a/kombu/tests/transport/test_mongodb.py
34 -+++ b/kombu/tests/transport/test_mongodb.py
35 -@@ -64,12 +64,12 @@ def test_custom_credentials(self):
36 -
37 - @skip_if_not_module('pymongo')
38 - def test_options(self):
39 -- url = 'mongodb://localhost,localhost2:29017/dbname?safe=true'
40 -+ url = 'mongodb://localhost,localhost2:29017/dbname?tz_aware=true'
41 - c = self._get_connection(url)
42 -
43 - hostname, dbname, options = c.channels[0]._parse_uri()
44 -
45 -- self.assertEqual(options['safe'], True)
46 -+ self.assertEqual(options['tz_aware'], True)
47 -
48 - @skip_if_not_module('pymongo')
49 - def test_real_connections(self):
50 -diff --git a/kombu/transport/mongodb.py b/kombu/transport/mongodb.py
51 -index 9137132..40b00ff 100644
52 ---- a/kombu/transport/mongodb.py
53 -+++ b/kombu/transport/mongodb.py
54 -@@ -176,9 +176,14 @@ def _parse_uri(self, scheme='mongodb://'):
55 -
56 - return hostname, dbname, options
57 -
58 -+ def _prepare_client_options(self, options):
59 -+ if pymongo.version_tuple >= (3, ):
60 -+ options.pop('auto_start_request', None)
61 -+
62 - def _open(self, scheme='mongodb://'):
63 - hostname, dbname, options = self._parse_uri(scheme=scheme)
64 -
65 -+ self._prepare_client_options(options)
66 - mongoconn = MongoClient(
67 - host=hostname, ssl=options['ssl'],
68 - auto_start_request=options['auto_start_request'],
69 -
70
71 diff --git a/dev-python/kombu/kombu-3.0.34.ebuild b/dev-python/kombu/kombu-3.0.34.ebuild
72 deleted file mode 100644
73 index 10b5eef3d87..00000000000
74 --- a/dev-python/kombu/kombu-3.0.34.ebuild
75 +++ /dev/null
76 @@ -1,110 +0,0 @@
77 -# Copyright 1999-2016 Gentoo Foundation
78 -# Distributed under the terms of the GNU General Public License v2
79 -
80 -EAPI=5
81 -
82 -PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
83 -
84 -inherit distutils-r1
85 -
86 -DESCRIPTION="AMQP Messaging Framework for Python"
87 -HOMEPAGE="https://pypi.python.org/pypi/kombu https://github.com/celery/kombu"
88 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
89 -
90 -LICENSE="BSD"
91 -SLOT="0"
92 -KEYWORDS="amd64 ~arm64 x86"
93 -IUSE="amqplib doc examples msgpack sqs test"
94 -
95 -# couchdb backend support possible via dev-python/couchdb-python
96 -# ditto dev-python/kazoo(>=1.3.1) and dev-python/beanstalkc
97 -PY27_GEN_USEDEP=$(python_gen_usedep python2_7)
98 -PYPY_GEN_USEDEP=$(python_gen_usedep python2_7 pypy)
99 -RDEPEND="
100 - >=dev-python/anyjson-0.3.3[${PYTHON_USEDEP}]
101 - >=dev-python/py-amqp-1.4.9[${PYTHON_USEDEP}]
102 - <dev-python/py-amqp-2.0[${PYTHON_USEDEP}]
103 - dev-python/pyro:4[${PYTHON_USEDEP}]
104 - $(python_gen_cond_dep '>=dev-python/pyzmq-13.1.0[${PYTHON_USEDEP}]' 'python*')
105 - amqplib? ( >=dev-python/amqplib-1.0.2[${PYTHON_USEDEP}] )
106 - sqs? ( >=dev-python/boto-2.13.3[${PY27_GEN_USEDEP}] )
107 - msgpack? ( >=dev-python/msgpack-0.3.0[${PYTHON_USEDEP}] )"
108 -# Fix to https://github.com/celery/kombu/issues/474 obliges dev-python/pymongo to >=-3.0.2
109 -DEPEND="${RDEPEND}
110 - >=dev-python/setuptools-0.7[${PYTHON_USEDEP}]
111 - test? (
112 - >=dev-python/unittest2-0.5.0[${PYTHON_USEDEP}]
113 - dev-python/nose[${PYTHON_USEDEP}]
114 - dev-python/nose-cover3[${PYTHON_USEDEP}]
115 - >=dev-python/coverage-3.0[${PYTHON_USEDEP}]
116 - >=dev-python/mock-0.7.0[${PYPY_GEN_USEDEP}]
117 - dev-python/django[${PYTHON_USEDEP}]
118 - >=dev-python/redis-py-2.10.3[${PYTHON_USEDEP}]
119 - >=dev-python/pymongo-3.0.2[${PYTHON_USEDEP}]
120 - >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] )
121 - doc? (
122 - dev-python/sphinx[${PYTHON_USEDEP}]
123 - dev-python/django[${PYTHON_USEDEP}]
124 - dev-python/beanstalkc[${PY27_GEN_USEDEP}]
125 - dev-python/couchdb-python[${PYTHON_USEDEP}]
126 - >=dev-python/sphinxcontrib-issuetracker-0.9[${PYTHON_USEDEP}] )"
127 -
128 -# kazoo and sqlalchemy are optional packages for tests.
129 -# Refrain for now, no established demand for it from users
130 -
131 -# Req'd for test phase
132 -DISTUTILS_IN_SOURCE_BUILD=1
133 -
134 -PY27_REQUSE="$(python_gen_useflags 'python2*')"
135 -REQUIRED_USE="
136 - sqs? ( ${PY27_REQUSE} )
137 - doc? ( ${PY27_REQUSE} amqplib sqs )" # 2 deps in doc build are py2 capable only
138 -
139 -PATCHES=(
140 - "${FILESDIR}"/${PN}-NA-tests-fix.patch
141 - )
142 -
143 -pkg_setup() {
144 - use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( python2.7 )
145 -}
146 -
147 -python_prepare_all() {
148 - # https://github.com/celery/kombu/issues/246
149 - sed -e 's:kombu.transports:kombu.transport:' -i funtests/tests/test_django.py
150 - distutils-r1_python_prepare_all
151 -}
152 -
153 -python_compile_all() {
154 - # Doc build must be done by py2.7
155 - # Doc build misses and skips only content re librabbitmq which is not in portage
156 - if use doc; then
157 - emake -C docs html || die "kombu docs failed installation"
158 - fi
159 -}
160 -
161 -python_test() {
162 - export DJANGO_SETTINGS_MODULE="django.conf"
163 - # https://github.com/celery/kombu/issues/474
164 - # tests need </pymongo-3.0; known to cause some breakage
165 - if python_is_python3; then
166 - 2to3 --no-diffs -w build/lib/kombu/transport/
167 - nosetests --py3where=build/lib kombu/tests || die "Tests failed under ${EPYTHON}"
168 - else
169 - nosetests "${S}"/kombu/tests || die "Tests failed under ${EPYTHON}"
170 - # funtests appears to be coded only for py2, a kind of 2nd tier. pypy fails 6.
171 - # https://github.com/celery/kombu/issues/411
172 - # Fix to https://github.com/celery/kombu/issues/474 breaks the
173 - # funtests under >=dev-python/pymongo-3.0.2
174 -# if [[ "${EPYTHON}" == python2.7 ]]; then
175 -# pushd funtests > /dev/null
176 -# esetup.py test
177 -# popd > /dev/null
178 -# fi
179 - fi
180 -}
181 -
182 -python_install_all() {
183 - use examples && local EXAMPLES=( examples/. )
184 - use doc && local HTML_DOCS=( docs/.build/html/. )
185 - distutils-r1_python_install_all
186 -}