commit: 543f2ded7017202ede749b7716fcedd54b1af584 Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Thu Dec 3 14:32:37 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Thu Dec 3 14:32:37 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543f2ded
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 <AT> gentoo.org> dev-python/sphinxcontrib-programoutput/metadata.xml | 10 +++++----- .../sphinxcontrib-programoutput-0.8.ebuild | 7 ++++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-python/sphinxcontrib-programoutput/metadata.xml b/dev-python/sphinxcontrib-programoutput/metadata.xml index 16650ea..e3954e3 100644 --- a/dev-python/sphinxcontrib-programoutput/metadata.xml +++ b/dev-python/sphinxcontrib-programoutput/metadata.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>python</herd> -<longdescription> + <herd>python</herd> + <longdescription> A Sphinx extension to literally insert the output of arbitrary commands into documents, helping you to keep your command examples up to date. </longdescription> -<upstream> - <remote-id type="pypi">sphinxcontrib-programoutput</remote-id> -</upstream> + <upstream> + <remote-id type="pypi">sphinxcontrib-programoutput</remote-id> + </upstream> </pkgmetadata> diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild index 96543ce..a8280b6 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 }
