dev-python/frozen-flask: fix doc build, add PyPy{,3}

Also fix a minor syntax error when tests fail.

Closes: https://bugs.gentoo.org/658952
Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Louis Sautier
2018-06-24 15:49:51 +02:00
parent ad2b12bd1d
commit 42899b40f0

View File

@@ -1,8 +1,8 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{5,6} )
EAPI=7
PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6}} )
inherit distutils-r1
@@ -21,23 +21,19 @@ IUSE="doc test"
RDEPEND=">=dev-python/flask-0.7[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${MY_P}"
python_compile_all() {
if use doc; then
sed -e 's:^intersphinx_mapping:#intersphinx_mapping:' -i docs/conf.py || die
mkdir docs/_build || die
sed -i "s/'sphinx.ext.intersphinx'//" -i docs/conf.py || die
sphinx-build -c docs docs docs/_build || die
HTML_DOCS=( docs/_build/. )
fi
}
python_test() {
nosetests || die Tests failed under $"{EPYTHON}"
}
python_install_all() {
use doc && HTML_DOCS=( "${S}"/docs/_build/. )
distutils-r1_python_install_all
nosetests || die Tests failed under "${EPYTHON}"
}