dev-python/starlette: enable docs

also made an attempt at getting tests to work
but we need newer graphql-core

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
This commit is contained in:
Andrew Ammerlaan
2020-03-18 19:46:06 +01:00
parent e4e178f4f2
commit 7dd5aef9c6
2 changed files with 40 additions and 11 deletions

View File

@@ -3,36 +3,65 @@
EAPI=7
PYTHON_COMPAT=(python3_{6,7,8} pypy3 )
PYTHON_COMPAT=( python3_6 )
inherit distutils-r1 eutils
DESCRIPTION="The little ASGI framework that shines."
DESCRIPTION="The little ASGI framework that shines"
HOMEPAGE="
https://www.starlette.io/
https://github.com/encode/starlette
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="test? ( dev-python/black[${PYTHON_USEDEP}]
dev-python/databases[${PYTHON_USEDEP}]
dev-python/isort[${PYTHON_USEDEP}]
dev-python/mypy[${PYTHON_USEDEP}] )"
IUSE="doc"
REQUIRED_USE="x86? ( !doc )"
# ModuleNotFoundError: No module named 'graphql.pyutils.compat'
# We need newer graphql-core
RESTRICT="test"
BDEPEND="doc? ( !x86? (
dev-python/mkdocs
dev-python/mkdocs-material
dev-python/mkautodoc ) )"
DEPEND="test? (
dev-python/aiofiles[${PYTHON_USEDEP}]
dev-python/black[${PYTHON_USEDEP}]
dev-python/databases[${PYTHON_USEDEP}]
dev-python/isort[${PYTHON_USEDEP}]
dev-python/itsdangerous[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/mypy[${PYTHON_USEDEP}]
dev-python/python-multipart[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/sse-starlette[${PYTHON_USEDEP}]
dev-python/ujson[${PYTHON_USEDEP}]
dev-python/graphene[${PYTHON_USEDEP}] )"
python_prepare_all() {
# do not install LICENSE to /usr/
# do not install LICENSE to /usr/
sed -i -e '/data_files/d' setup.py || die
distutils-r1_python_prepare_all
distutils-r1_python_prepare_all
}
python_compile_all() {
default
if use doc; then
mkdocs build || die "failed to make docs"
HTML_DOCS="site"
fi
}
pkg_postinst() {
optfeature "Required if you want to use FileResponse or StaticFiles" dev-python/aiofiles
optfeature "Required if you want to use Jinja2Templates" dev-python/jinja2
optfeature "Required if you want to use Jinja2Templates" dev-python/jinja
optfeature "Required if you want to support form parsing, with request.form()" dev-python/python-multipart
optfeature "Required for SessionMiddleware support." dev-python/itsdangerous
optfeature "Required for SchemaGenerator support." dev-python/pyyaml