commit: 1c32f3114ab4617352d5c6349889a81bd17fc37a
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 14:00:06 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri May 19 14:00:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c32f311
dev-python/pyquery: Add python3_6
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-python/pyquery/pyquery-1.2.13.ebuild | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/dev-python/pyquery/pyquery-1.2.13.ebuild
b/dev-python/pyquery/pyquery-1.2.13.ebuild
index d18653fb697..e287f032c5b 100644
--- a/dev-python/pyquery/pyquery-1.2.13.ebuild
+++ b/dev-python/pyquery/pyquery-1.2.13.ebuild
@@ -3,7 +3,7 @@
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit distutils-r1 eutils
@@ -22,7 +22,6 @@ RDEPEND="
>=dev-python/webob-1.1.9[${PYTHON_USEDEP}]"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
- app-arch/unzip
test? ( ${RDEPEND}
dev-python/beautifulsoup[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
@@ -30,6 +29,12 @@ DEPEND="
dev-python/webtest[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/restkit[${PYTHON_USEDEP}]'
'python2_7') )"
+python_prepare_all() {
+ # Disable tests needing a network connection
+ sed -i -e "s/HAS_REQUEST = True/HAS_REQUEST = False/"
tests/test_pyquery.py || die
+ distutils-r1_python_prepare_all
+}
+
python_test() {
# The suite, it appears, requires this hard setting of PYTHONPATH!
PYTHONPATH=. nosetests || die "Tests fail with ${EPYTHON}"