diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2019-10-03 18:26:52 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2019-10-03 18:26:52 -0500 |
commit | 22ff67c95a07062ea6b02d3c67d48c961818f314 (patch) | |
tree | 0040e6cc5d0b0258a497ee96e0cb5f8ed7b9793a /dev-python/python-glanceclient | |
parent | dev-python/python-heatclient: remove broken doc build (diff) | |
download | gentoo-22ff67c95a07062ea6b02d3c67d48c961818f314.tar.gz gentoo-22ff67c95a07062ea6b02d3c67d48c961818f314.tar.bz2 gentoo-22ff67c95a07062ea6b02d3c67d48c961818f314.zip |
dev-python/python-glanceclient: remove broken doc build
fixes: https://bugs.gentoo.org/696130
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'dev-python/python-glanceclient')
-rw-r--r-- | dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild b/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild index ac7282a691dd..8c0dda871d11 100644 --- a/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild +++ b/dev-python/python-glanceclient/python-glanceclient-2.16.0.ebuild @@ -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" @@ -35,11 +34,6 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}] ) - doc? ( - >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}] - !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}] - ) " RDEPEND=" ${CDEPEND} @@ -57,22 +51,12 @@ RDEPEND=" " python_prepare_all() { - sed -e 's:intersphinx_mapping:_&:' -i doc/source/conf.py || die sed -i '/^hacking/d' test-requirements.txt || die distutils-r1_python_prepare_all } -python_compile_all() { - use doc && esetup.py build_sphinx -} - python_test() { testr init testr run || die "testsuite failed under python2.7" flake8 tests && einfo "run flake8 over tests folder passed" || die } - -python_install_all() { - use doc && local HTML_DOCS=( doc/build/html/. ) - distutils-r1_python_install_all -} |