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/urllib3/
Date: Wed, 30 Nov 2016 18:06:01
Message-Id: 1480529138.8e567eaad7584c4757996db205f527e09b7cac47.mgorny@gentoo
1 commit: 8e567eaad7584c4757996db205f527e09b7cac47
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 15:48:46 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 18:05:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e567eaa
7
8 dev-python/urllib3: Enable pypy3
9
10 dev-python/urllib3/urllib3-1.19.ebuild | 5 +++--
11 1 file changed, 3 insertions(+), 2 deletions(-)
12
13 diff --git a/dev-python/urllib3/urllib3-1.19.ebuild b/dev-python/urllib3/urllib3-1.19.ebuild
14 index bebfc5e..162a683 100644
15 --- a/dev-python/urllib3/urllib3-1.19.ebuild
16 +++ b/dev-python/urllib3/urllib3-1.19.ebuild
17 @@ -4,7 +4,7 @@
18
19 EAPI=6
20
21 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
22 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy{,3} )
23 PYTHON_REQ_USE="ssl(+)"
24
25 inherit distutils-r1
26 @@ -97,7 +97,8 @@ python_test() {
27 # Failures still occur under py2.7.
28 # https://github.com/shazow/urllib3/issues/621
29
30 - [[ "${EPYTHON}" == pypy ]] && return
31 + # FIXME: get tornado ported
32 + [[ "${EPYTHON}" == pypy* ]] && return
33
34 nosetests -v \
35 --exclude test_headerdict \