Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-heatclient/
Date: Thu, 03 Oct 2019 23:28:24
Message-Id: 1570145135.137ea05de3c0f4c24902684b88e071c11e0098da.prometheanfire@gentoo
1 commit: 137ea05de3c0f4c24902684b88e071c11e0098da
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 3 23:25:35 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 3 23:25:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=137ea05d
7
8 dev-python/python-heatclient: remove broken doc build
9
10 fixes: https://bugs.gentoo.org/696128
11 Package-Manager: Portage-2.3.76, Repoman-2.3.17
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 .../python-heatclient/python-heatclient-1.17.0.ebuild | 18 ------------------
15 1 file changed, 18 deletions(-)
16
17 diff --git a/dev-python/python-heatclient/python-heatclient-1.17.0.ebuild b/dev-python/python-heatclient/python-heatclient-1.17.0.ebuild
18 index 4166ec545af..a1e520b4d91 100644
19 --- a/dev-python/python-heatclient/python-heatclient-1.17.0.ebuild
20 +++ b/dev-python/python-heatclient/python-heatclient-1.17.0.ebuild
21 @@ -33,14 +33,6 @@ DEPEND="
22 >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
23 >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
24 )
25 - doc? (
26 - >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}]
27 - >=dev-python/sphinxcontrib-httpdomain-1.3.0[${PYTHON_USEDEP}]
28 - >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
29 - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
30 - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
31 - !~dev-python/sphinx-1.6.7[${PYTHON_USEDEP}]
32 - )
33 "
34
35 RDEPEND="
36 @@ -71,19 +63,9 @@ python_prepare_all() {
37 distutils-r1_python_prepare_all
38 }
39
40 -python_compile_all() {
41 - use doc && esetup.py build_sphinx
42 -}
43 -
44 python_test() {
45 rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPYTHON}"
46
47 testr init
48 testr run || die "testsuite failed under ${EPYTHON}"
49 }
50 -
51 -python_install_all() {
52 - use doc && local HTML_DOCS=( doc/build/html/. )
53 -
54 - distutils-r1_python_install_all
55 -}