commit: 28fd70122bab3d108a1349b6fa9db9f4dda91f11 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com> AuthorDate: Fri Jan 6 19:27:15 2017 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sat Jan 7 14:48:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28fd7012
dev-python/virtualenvwrapper: add python3_5 support Build succeeds, no testsuite, basic virtualenv operations work. Gentoo-Bug: 572834 Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3355 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild index bf208b1..acaec4e 100644 --- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild +++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) inherit distutils-r1 @@ -31,8 +31,10 @@ DEPEND="${DEPEND} dev-python/pbr[${PYTHON_USEDEP}]" # Keep just in case -src_prepare() { +python_prepare_all() { sed -e 's:-o shwordsplit::' -i tests/run_tests || die + + distutils-r1_python_prepare_all } python_test() {
