mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-12 08:33:15 -04:00
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
65 lines
1.6 KiB
Bash
65 lines
1.6 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
PYTHON_COMPAT=( python3_{7,8} )
|
|
|
|
# Build with USE="-doc" first because of circular dependency
|
|
# otherwise one gets the error that sphinx-autodoc-typehints
|
|
# does not support py3.8
|
|
# DOCS_BUILDER="sphinx"
|
|
# DOCS_DIR="${S}/docs"
|
|
# DOCS_DEPEND="
|
|
# dev-python/anyio
|
|
# >=dev-python/sphinx-autodoc-typehints-1.2.0
|
|
# dev-python/sphinx_rtd_theme
|
|
# "
|
|
# DOCS_AUTODOC=1
|
|
|
|
inherit distutils-r1 #docs
|
|
|
|
DESCRIPTION="Compatibility layer for multiple asynchronous event loop implementations"
|
|
HOMEPAGE="
|
|
https://github.com/agronholm/anyio
|
|
https://pypi.org/project/anyio
|
|
"
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
# This is a mess
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
>=dev-python/curio-1.4[${PYTHON_USEDEP}]
|
|
>=dev-python/idna-2.8[${PYTHON_USEDEP}]
|
|
>=dev-python/sniffio-1.1[${PYTHON_USEDEP}]
|
|
>=dev-python/trio-0.16[${PYTHON_USEDEP}]
|
|
$(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' python3_7)
|
|
"
|
|
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
test? (
|
|
>=dev-python/hypothesis-4.0[${PYTHON_USEDEP}]
|
|
>=dev-python/pytest-6.0[${PYTHON_USEDEP}]
|
|
dev-python/trustme[${PYTHON_USEDEP}]
|
|
dev-python/uvloop[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_test() {
|
|
distutils_install_for_testing
|
|
pytest -vv \
|
|
--deselect tests/test_sockets.py::test_getaddrinfo[asyncio] \
|
|
--deselect tests/test_sockets.py::test_getaddrinfo[asyncio+uvloop] \
|
|
--deselect tests/test_sockets.py::test_getaddrinfo[curio] \
|
|
--deselect tests/test_sockets.py::test_getaddrinfo[trio] \
|
|
|| die
|
|
}
|