dev-python/falcon: new package, add 3.1.1

This commit is contained in:
Alarig Le Lay 2023-03-21 20:14:34 +01:00
parent c83ac6c7c7
commit cbc2a896aa
Signed by: alarig
GPG Key ID: 7AFE62C6DF8BCDEC
3 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST falcon-3.1.1.tar.gz 1320543 BLAKE2B 7c9d1bab73df864632f6d649a4a9894b35837bcca91eb05ce67447b4139274cd326e31f88ed3a0015a3dd82509b5d8d7ab1f439d0fdd190957e06b49f51daa9b SHA512 d6d0ff20a64400a28e45bf30de38c1d989f78f0aef97467a1e464aa3bffca8027728948fae604f2fecd00cc79488301b2d842c0c1436ee15f50c666e03ff9ecd

View File

@ -0,0 +1,61 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="A supersonic micro-framework for building cloud APIs"
HOMEPAGE="
https://falconframework.org/
https://pypi.org/project/falcon/
https://github.com/falconry/falcon/
"
SRC_URI="
https://github.com/falconry/${PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz
"
LICENSE="Apache-2.0 MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
test? (
dev-python/aiofiles[${PYTHON_USEDEP}]
dev-python/cbor2[${PYTHON_USEDEP}]
dev-python/httpx[${PYTHON_USEDEP}]
dev-python/msgpack[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/uvicorn[${PYTHON_USEDEP}]
dev-python/websockets[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=(
# uwsgi seems to be broken/incompatible
'tests/test_wsgi_servers.py::TestWSGIServer::test_get[uwsgi]'
'tests/test_wsgi_servers.py::TestWSGIServer::test_get_deprecated[uwsgi]'
'tests/test_wsgi_servers.py::TestWSGIServer::test_post_multipart_form[uwsgi]'
'tests/test_wsgi_servers.py::TestWSGIServer::test_static_file[uwsgi]'
'tests/test_wsgi_servers.py::TestWSGIServer::test_static_file_byte_range[uwsgi-'
)
local EPYTEST_IGNORE=(
# mujson is unpackaged, test-only dep
tests/test_media_handlers.py
)
rm -rf falcon || die
# needed because servers are spawned via /usr/bin/python*
local -x PYTHONPATH=${BUILD_DIR}/install$(python_get_sitedir):${PYTHONPATH}
epytest tests
}

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="github">falconry/falcon</remote-id>
<remote-id type="pypi">falcon</remote-id>
</upstream>
</pkgmetadata>