dev-python/sphinxcontrib-programoutput: Add python3.5 support
authorJustin Lecher <jlec@gentoo.org>
Thu, 3 Dec 2015 14:32:37 +0000 (15:32 +0100)
committerJustin Lecher <jlec@gentoo.org>
Thu, 3 Dec 2015 14:32:37 +0000 (15:32 +0100)
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>
dev-python/sphinxcontrib-programoutput/metadata.xml
dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild

index 16650eae0eb77aa18f4e3149928cf94d4d35804e..e3954e33e9a6f94fef9d31904381993c0fa22b9c 100644 (file)
@@ -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>
index 96543ce78c1882cb529de25d92c4155b1a1e05c4..a8280b6864a419e683c6b6e3dc23e6682cd21014 100644 (file)
@@ -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
 }