mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-11 09:43:40 +02:00
starlette: add outdated starlette for theHarvester
This commit is contained in:
parent
c17fbdcd6d
commit
04fcc07ffd
3 changed files with 39 additions and 0 deletions
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
|
||||
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 ~x86"
|
||||
|
||||
# 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
|
||||
|
|
@ -202,6 +202,7 @@ dev-python/shodan
|
|||
dev-python/grequests
|
||||
dev-python/aiomultiprocess
|
||||
dev-python/aiosqlite
|
||||
~dev-python/starlette-0.17.1
|
||||
~dev-python/starlette-0.18.0
|
||||
=dev-python/starlette-0.19*
|
||||
#testing
|
||||
|
|
|
|||
Loading…
Reference in a new issue