diff options
author | Marek Szuba <marecki@gentoo.org> | 2017-04-24 14:53:03 +0200 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2017-04-24 14:54:18 +0200 |
commit | 6992997b1b5ebd4d151c94ea8125f030e3933998 (patch) | |
tree | 226b0e9d50c63e2d0aa0425306e59c5f67c7cd73 /dev-python/pyicu | |
parent | dev-perl/Text-CSV_XS-1.280.0-r0: add alpha keyword (diff) | |
download | gentoo-6992997b1b5ebd4d151c94ea8125f030e3933998.tar.gz gentoo-6992997b1b5ebd4d151c94ea8125f030e3933998.tar.bz2 gentoo-6992997b1b5ebd4d151c94ea8125f030e3933998.zip |
dev-python/pyicu-1.9.6: remove USE=doc
Starting with this release PyICU no longer provides auto-generated API
documentation.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-python/pyicu')
-rw-r--r-- | dev-python/pyicu/pyicu-1.9.6.ebuild | 32 |
1 files changed, 3 insertions, 29 deletions
diff --git a/dev-python/pyicu/pyicu-1.9.6.ebuild b/dev-python/pyicu/pyicu-1.9.6.ebuild index ec85db2c9a4d..7290317bba02 100644 --- a/dev-python/pyicu/pyicu-1.9.6.ebuild +++ b/dev-python/pyicu/pyicu-1.9.6.ebuild @@ -18,42 +18,16 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="doc" RDEPEND="${PYTHON_DEPS} - dev-libs/icu -" -# epydoc supports only python2* -DEPEND="${RDEPEND} - doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] )" -REQUIRED_USE="${PYTHON_REQUIRED_USE} - doc? ( || ( $(python_gen_useflags 'python2*') ) )" + dev-libs/icu" +DEPEND="${RDEPEND}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" S="${WORKDIR}/${MY_P}" DOCS=(CHANGES CREDITS README.md) -# we need an exact version match for epydoc to work on a binary module -pkg_setup() { - use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( 'python2*' ) -} - -python_compile_all() { - if use doc; then - mkdir -p doc/html || die - epydoc --html --verbose -o doc/html \ - --url="${HOMEPAGE}" --name="${MY_P}" \ - icu.py || die "Making the docs failed!" - fi -} - python_test() { esetup.py test } - -python_install_all() { - if use doc; then - local HTML_DOCS=( doc/html/. ) - fi - distutils-r1_python_install_all -} |