From b77ed6eed20a132f0faba75f1430ee739f6967c8 Mon Sep 17 00:00:00 2001 From: Justin Lecher Date: Mon, 23 Nov 2015 10:05:15 +0100 Subject: dev-python/json-rpc: Unbundle six Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=544428 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher --- dev-python/json-rpc/json-rpc-1.10.1.ebuild | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'dev-python/json-rpc') diff --git a/dev-python/json-rpc/json-rpc-1.10.1.ebuild b/dev-python/json-rpc/json-rpc-1.10.1.ebuild index dba072ebce48..7a21ad361ae1 100644 --- a/dev-python/json-rpc/json-rpc-1.10.1.ebuild +++ b/dev-python/json-rpc/json-rpc-1.10.1.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_{3,4}} ) + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) inherit distutils-r1 @@ -16,13 +17,23 @@ SLOT="0" KEYWORDS="~amd64" IUSE="test" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] dev-python/flask[${PYTHON_USEDEP}] )" +python_prepare_all() { + cat > jsonrpc/six.py <<- EOF + from __future__ import absolute_import + from six import * + EOF + distutils-r1_python_prepare_all +} + python_test() { esetup.py test } -- cgit v1.2.3-65-gdbad