dev-python/python-neutronclient: remove broken doc builds
authorMatthew Thode <prometheanfire@gentoo.org>
Thu, 3 Oct 2019 23:28:06 +0000 (18:28 -0500)
committerMatthew Thode <prometheanfire@gentoo.org>
Thu, 3 Oct 2019 23:28:06 +0000 (18:28 -0500)
fixes: https://bugs.gentoo.org/696132
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild

index dc0ed5640e9b6042cdf9ffad06b520c9e686f121..e5c439a68a15c6132992e0442d86ef860c94c02e 100644 (file)
@@ -13,8 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-REQUIRED_USE="test? ( doc )"
+IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
        !~dev-python/pbr-2.1.0"
@@ -37,11 +36,6 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
                >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}]
                >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
                >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-       )
-       doc? (
-               >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}]
-               >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-               !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
        )"
 
 RDEPEND="
@@ -73,10 +67,6 @@ python_prepare_all() {
        distutils-r1_python_prepare_all
 }
 
-python_compile_all() {
-       use doc && "${PYTHON}" setup.py build_sphinx
-}
-
 python_test() {
        testr init
        testr run || die "tests failed under python2.7"
@@ -94,8 +84,3 @@ python_install() {
        ln -s neutronclient quantumclient || die
        ln -s neutron quantumclient/quantum || die
 }
-
-python_install_all() {
-       use doc && local HTML_DOCS=( doc/build/html/. )
-       distutils-r1_python_install_all
-}