diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-12-03 15:32:37 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-12-03 15:32:37 +0100 |
commit | 543f2ded7017202ede749b7716fcedd54b1af584 (patch) | |
tree | ea8a3f9c8b846e1a89f3f332953898209b1ff161 /dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild | |
parent | dev-python/cryptography: Drop python3.5 support from old version (diff) | |
download | gentoo-543f2ded7017202ede749b7716fcedd54b1af584.tar.gz gentoo-543f2ded7017202ede749b7716fcedd54b1af584.tar.bz2 gentoo-543f2ded7017202ede749b7716fcedd54b1af584.zip |
dev-python/sphinxcontrib-programoutput: Add python3.5 support
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=567456
Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild')
-rw-r--r-- | dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild index 96543ce78c18..a8280b6864a4 100644 --- a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) inherit distutils-r1 @@ -30,10 +31,10 @@ python_compile_all() { } python_test() { - py.test || die + py.test -v -v || die } python_install_all() { - use doc && local HTML_DOCS=( doc/_build/html ) + use doc && local HTML_DOCS=( doc/_build/html/. ) distutils-r1_python_install_all } |