mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
dev-python/starlette: initial import
Bug: https://bugs.gentoo.org/807748 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
1
dev-python/starlette/Manifest
Normal file
1
dev-python/starlette/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST starlette-0.17.1.tar.gz 403781 BLAKE2B 75de462afc507d89159f17002eb2acc5453520ad312573d5697f5da8fc7d76fcb2407bf41086c923a60a59766f5ac02de1b003962a4d1031c062bd80a0d50e6c SHA512 a8f8cee0dc40d19eab62996f4ef1230fa758375fa9b51e15eae5c906a89b76519ebe4e423aa567d73e4c055cef63e9bbae11b47d4372e28b615f6edaf22a06a7
|
||||
11
dev-python/starlette/metadata.xml
Normal file
11
dev-python/starlette/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?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>
|
||||
</maintainer>
|
||||
<stabilize-allarches/>
|
||||
<upstream>
|
||||
<remote-id type="github">encode/starlette</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
37
dev-python/starlette/starlette-0.17.1.ebuild
Normal file
37
dev-python/starlette/starlette-0.17.1.ebuild
Normal file
@@ -0,0 +1,37 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8,9,10} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="The little ASGI framework that shines"
|
||||
HOMEPAGE="https://www.starlette.io/"
|
||||
SRC_URI="https://github.com/encode/starlette/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
# Needs fixing with trio deprecations (dies on ModuleWithDeprecations)
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="dev-python/anyio[${PYTHON_USEDEP}]
|
||||
dev-python/itsdangerous[${PYTHON_USEDEP}]"
|
||||
BDEPEND="test? ( dev-python/trio[${PYTHON_USEDEP}] )"
|
||||
|
||||
EPYTEST_IGNORE=(
|
||||
# Unpackaged 'databases' dependency
|
||||
tests/test_database.py
|
||||
|
||||
# Unpackaged 'multipart' dependency
|
||||
tests/test_formparsers.py
|
||||
)
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
# Unpackaged 'multipart' dependency
|
||||
tests/test_requests.py::test_request_form_urlencoded
|
||||
)
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user