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-sphinx/
Date: Wed, 02 Oct 2019 16:48:25
Message-Id: 1570034877.7727cff353b288556d58de2beee9659ab92e3e3d.prometheanfire@gentoo
1 commit: 7727cff353b288556d58de2beee9659ab92e3e3d
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 16:38:48 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 16:47:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7727cff3
7
8 dev-python/oslo-sphinx: remove broken doc build
9
10 Fixes: https://bugs.gentoo.org/696006
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-sphinx/oslo-sphinx-4.18.0.ebuild | 15 +--------------
15 1 file changed, 1 insertion(+), 14 deletions(-)
16
17 diff --git a/dev-python/oslo-sphinx/oslo-sphinx-4.18.0.ebuild b/dev-python/oslo-sphinx/oslo-sphinx-4.18.0.ebuild
18 index 1e6a98810f1..b7e68dce3a0 100644
19 --- a/dev-python/oslo-sphinx/oslo-sphinx-4.18.0.ebuild
20 +++ b/dev-python/oslo-sphinx/oslo-sphinx-4.18.0.ebuild
21 @@ -16,14 +16,11 @@ SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
22 LICENSE="Apache-2.0"
23 SLOT="0"
24 KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
25 -IUSE="doc"
26 +IUSE=""
27
28 DEPEND="
29 dev-python/setuptools[${PYTHON_USEDEP}]
30 >=dev-python/pbr-1.6[${PYTHON_USEDEP}]
31 - doc? (
32 - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
33 - )
34 "
35 RDEPEND="
36 >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
37 @@ -36,13 +33,3 @@ python_prepare_all() {
38 sed -i '/^hacking/d' test-requirements.txt || die
39 distutils-r1_python_prepare_all
40 }
41 -
42 -python_compile_all() {
43 - use doc && esetup.py build_sphinx
44 -}
45 -
46 -python_install_all() {
47 - use doc && local HTML_DOCS=( doc/build/html/. )
48 -
49 - distutils-r1_python_install_all
50 -}