mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 08:18:49 -04:00
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
68 lines
1.8 KiB
Bash
68 lines
1.8 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{7,8,9} )
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
|
|
DOCS_BUILDER="sphinx"
|
|
DOCS_DEPEND="
|
|
dev-python/sphinxcontrib-napoleon
|
|
dev-python/pydata-sphinx-theme
|
|
"
|
|
DOCS_DIR="${S}/docs"
|
|
|
|
inherit distutils-r1 docs optfeature
|
|
|
|
DESCRIPTION="ASGI Server based on Hyper libraries and inspired by Gunicorn"
|
|
HOMEPAGE="
|
|
https://gitlab.com/pgjones/hypercorn
|
|
https://github.com/pgjones/hypercorn
|
|
https://pypi.org/project/Hypercorn
|
|
"
|
|
SRC_URI="https://github.com/pgjones/hypercorn/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
dev-python/h11[${PYTHON_USEDEP}]
|
|
>=dev-python/hyper-h2-3.1.0[${PYTHON_USEDEP}]
|
|
dev-python/priority[${PYTHON_USEDEP}]
|
|
dev-python/toml[${PYTHON_USEDEP}]
|
|
>=dev-python/wsproto-0.14.0[${PYTHON_USEDEP}]
|
|
$(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' python3_7)
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/hypothesis[${PYTHON_USEDEP}]
|
|
>=dev-python/mock-4[${PYTHON_USEDEP}]
|
|
<dev-python/pytest-6[${PYTHON_USEDEP}]
|
|
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
|
dev-python/pytest-trio[${PYTHON_USEDEP}]
|
|
dev-python/trio[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_prepare_all() {
|
|
# do not install LICENSE to /usr/
|
|
sed -i -e '/data_files/d' setup.py || die
|
|
|
|
# Remove pytest-cov dep
|
|
sed -i -e '/addopts/d' setup.cfg || die
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "asyncio event loop on top of libuv" dev-python/uvloop
|
|
optfeature "websockets support using wsproto" dev-python/wsproto
|
|
optfeature "websockets support using websockets" dev-python/websockets
|
|
optfeature "httpstools package for http protocol" dev-python/httptools
|
|
optfeature "efficient debug reload" dev-python/watchgod
|
|
}
|