summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Thode <prometheanfire@gentoo.org>2019-10-02 11:44:25 -0500
committerMatthew Thode <prometheanfire@gentoo.org>2019-10-02 11:47:59 -0500
commit43eb57ed35148e3355ad9bed5135ae54d174261f (patch)
tree0e94b3300408b88b6f5898291730b23b0ef61e3d /dev-python/cliff/cliff-2.12.0.ebuild
parentdev-python/debtcollector: remove broken doc build (diff)
downloadgentoo-43eb57ed35148e3355ad9bed5135ae54d174261f.tar.gz
gentoo-43eb57ed35148e3355ad9bed5135ae54d174261f.tar.bz2
gentoo-43eb57ed35148e3355ad9bed5135ae54d174261f.zip
dev-python/cliff: remove broken doc build
Fixes: https://bugs.gentoo.org/696038 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'dev-python/cliff/cliff-2.12.0.ebuild')
-rw-r--r--dev-python/cliff/cliff-2.12.0.ebuild14
1 files changed, 1 insertions, 13 deletions
diff --git a/dev-python/cliff/cliff-2.12.0.ebuild b/dev-python/cliff/cliff-2.12.0.ebuild
index 9a870593d9ab..5471b0269370 100644
--- a/dev-python/cliff/cliff-2.12.0.ebuild
+++ b/dev-python/cliff/cliff-2.12.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm64 hppa ~mips s390 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
+IUSE="test"
CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0"
@@ -30,9 +30,6 @@ DEPEND="
>=dev-python/coverage-4.0[${PYTHON_USEDEP}]
!~dev-python/coverage-4.4[${PYTHON_USEDEP}]
)
- doc? (
- >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
- )
"
# source files stipulate <sphinx-1.3 however build effected perfectly with sphinx-1.3.1
RDEPEND="
@@ -47,15 +44,6 @@ RDEPEND="
>=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
"
-python_compile() {
- use doc && esetup.py build_sphinx
-}
-
python_test() {
nosetests ${PN}/tests || die "Tests fail with ${EPYTHON}"
}
-
-python_install_all() {
- use doc && local HTML_DOCS=( doc/build/html/. )
- distutils-r1_python_install_all
-}