dev-python/importlib_resources: add doc

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
This commit is contained in:
Louis Sautier
2019-07-13 02:30:50 +02:00
parent b071a04405
commit cfcc42a34a

View File

@@ -15,13 +15,14 @@ LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
IUSE="doc test"
RDEPEND="
$(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' -2)
virtual/python-typing[${PYTHON_USEDEP}]
"
BDEPEND="
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( ${RDEPEND} )
dev-python/setuptools[${PYTHON_USEDEP}]
"
@@ -29,6 +30,18 @@ BDEPEND="
# https://gitlab.com/python-devs/importlib_resources/issues/71
PATCHES=( "${FILESDIR}/${P}-skip-wheel.patch" )
python_prepare_all() {
sed -i "/'sphinx.ext.intersphinx'/d" ${PN}/docs/conf.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
if use doc; then
sphinx-build ${PN}/docs docs/_build/html || die
HTML_DOCS=( docs/_build/html/. )
fi
}
python_test() {
"${EPYTHON}" -m unittest discover -v || die "tests failed with ${EPYTHON}"
}