Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-programoutput/
Date: Thu, 03 Dec 2015 14:35:52
Message-Id: 1449153157.543f2ded7017202ede749b7716fcedd54b1af584.jlec@gentoo
1 commit: 543f2ded7017202ede749b7716fcedd54b1af584
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 14:32:37 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 14:32:37 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543f2ded
7
8 dev-python/sphinxcontrib-programoutput: Add python3.5 support
9
10 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=567456
11
12 Package-Manager: portage-2.2.25
13 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
14
15 dev-python/sphinxcontrib-programoutput/metadata.xml | 10 +++++-----
16 .../sphinxcontrib-programoutput-0.8.ebuild | 7 ++++---
17 2 files changed, 9 insertions(+), 8 deletions(-)
18
19 diff --git a/dev-python/sphinxcontrib-programoutput/metadata.xml b/dev-python/sphinxcontrib-programoutput/metadata.xml
20 index 16650ea..e3954e3 100644
21 --- a/dev-python/sphinxcontrib-programoutput/metadata.xml
22 +++ b/dev-python/sphinxcontrib-programoutput/metadata.xml
23 @@ -1,13 +1,13 @@
24 <?xml version="1.0" encoding="UTF-8"?>
25 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 <pkgmetadata>
27 -<herd>python</herd>
28 -<longdescription>
29 + <herd>python</herd>
30 + <longdescription>
31 A Sphinx extension to literally insert the output of arbitrary
32 commands into documents, helping you to keep your command examples
33 up to date.
34 </longdescription>
35 -<upstream>
36 - <remote-id type="pypi">sphinxcontrib-programoutput</remote-id>
37 -</upstream>
38 + <upstream>
39 + <remote-id type="pypi">sphinxcontrib-programoutput</remote-id>
40 + </upstream>
41 </pkgmetadata>
42
43 diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild
44 index 96543ce..a8280b6 100644
45 --- a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild
46 +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild
47 @@ -3,7 +3,8 @@
48 # $Id$
49
50 EAPI=5
51 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
52 +
53 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
54
55 inherit distutils-r1
56
57 @@ -30,10 +31,10 @@ python_compile_all() {
58 }
59
60 python_test() {
61 - py.test || die
62 + py.test -v -v || die
63 }
64
65 python_install_all() {
66 - use doc && local HTML_DOCS=( doc/_build/html )
67 + use doc && local HTML_DOCS=( doc/_build/html/. )
68 distutils-r1_python_install_all
69 }