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/oslo-config/
Date: Thu, 03 Oct 2019 23:28:22
Message-Id: 1570145002.a24b40aad81e5d5a01d463ad5d6dd638f71c807b.prometheanfire@gentoo
1 commit: a24b40aad81e5d5a01d463ad5d6dd638f71c807b
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 3 23:23:22 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 3 23:23:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a24b40aa
7
8 dev-python/oslo-config: remove broken doc build
9
10 fixes: https://bugs.gentoo.org/696104
11 Package-Manager: Portage-2.3.76, Repoman-2.3.17
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 dev-python/oslo-config/oslo-config-6.8.1.ebuild | 15 +--------------
15 1 file changed, 1 insertion(+), 14 deletions(-)
16
17 diff --git a/dev-python/oslo-config/oslo-config-6.8.1.ebuild b/dev-python/oslo-config/oslo-config-6.8.1.ebuild
18 index 4ecd74de591..abb7cf055ee 100644
19 --- a/dev-python/oslo-config/oslo-config-6.8.1.ebuild
20 +++ b/dev-python/oslo-config/oslo-config-6.8.1.ebuild
21 @@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
22 LICENSE="Apache-2.0"
23 SLOT="0"
24 KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
25 -IUSE="doc test"
26 +IUSE="test"
27
28 CDEPEND=">=dev-python/pbr-1.3[${PYTHON_USEDEP}]"
29 DEPEND="
30 @@ -36,12 +36,6 @@ DEPEND="
31 >=dev-python/requests-mock-1.5.0[${PYTHON_USEDEP}]
32 >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
33 )
34 - doc? (
35 - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
36 - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
37 - !~dev-python/sphinx-1.6.7[${PYTHON_USEDEP}]
38 - >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
39 - )
40 "
41 RDEPEND="
42 ${CDEPEND}
43 @@ -58,7 +52,6 @@ RDEPEND="
44
45 python_prepare_all() {
46 sed -i '/^hacking/d' test-requirements.txt || die
47 - use doc && esetup.py build_sphinx
48 distutils-r1_python_prepare_all
49 }
50
51 @@ -68,9 +61,3 @@ python_test() {
52 testr init || die "testr init failed under ${EPYTHON}"
53 testr run || die "testr run failed under ${EPYTHON}"
54 }
55 -
56 -python_install_all() {
57 - use doc && local HTML_DOCS=( doc/build/html/. )
58 -
59 - distutils-r1_python_install_all
60 -}