summaryrefslogtreecommitdiff
path: root/dev-python/a2wsgi
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-06-19 08:27:21 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-06-19 08:27:21 +0000
commit9a778b5534dee4f8fb55c656c8d3b39ab752a6ca (patch)
treef6b026f61a39af5dbbbb94fa890222979a38df16 /dev-python/a2wsgi
parent6fc9b61fff283f41a751b4da8807ea4c44b836ce (diff)
downloadbaldeagleos-repo-9a778b5534dee4f8fb55c656c8d3b39ab752a6ca.tar.gz
baldeagleos-repo-9a778b5534dee4f8fb55c656c8d3b39ab752a6ca.tar.xz
baldeagleos-repo-9a778b5534dee4f8fb55c656c8d3b39ab752a6ca.zip
Adding metadata
Diffstat (limited to 'dev-python/a2wsgi')
-rw-r--r--dev-python/a2wsgi/Manifest1
-rw-r--r--dev-python/a2wsgi/a2wsgi-1.10.10.ebuild45
2 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/a2wsgi/Manifest b/dev-python/a2wsgi/Manifest
index 73e347147182..6232b1bf6db8 100644
--- a/dev-python/a2wsgi/Manifest
+++ b/dev-python/a2wsgi/Manifest
@@ -1 +1,2 @@
+DIST a2wsgi-1.10.10.tar.gz 18799 BLAKE2B 8708138ade666402ab914286487079db0b84c3999997ceb5b98880c5f52d0b86db810b4715dedfd987c1d2ff0ca6cd8d13a8dbf571a5278ec7547b11745d1e14 SHA512 0e5c6b8a3b7d60c911010647e9d6ded61932c28942271199fec57b5da09e218e543350bbdc76f88734b5fd001c8d33a39981b32af88cede322dfb475c77d501c
DIST a2wsgi-1.10.8.tar.gz 18729 BLAKE2B d36614cdf66680240c49f142208d9cbad660117bfd160f37606bf67ecc7dd7178f63bf7685669b1207bcfb417568807449b49e8ef85d3b8642da0c199211686a SHA512 b8ed1d1370af6ba13339fa408e4da575cbb3229346a67a8c270207038b739daee341d1755c5db0e7b690f4a8654f54113e0c6f9a99ff359634c663e6df86e0ae
diff --git a/dev-python/a2wsgi/a2wsgi-1.10.10.ebuild b/dev-python/a2wsgi/a2wsgi-1.10.10.ebuild
new file mode 100644
index 000000000000..53f9c4fce221
--- /dev/null
+++ b/dev-python/a2wsgi/a2wsgi-1.10.10.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=pdm-backend
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Convert WSGI app to ASGI app or ASGI app to WSGI app"
+HOMEPAGE="
+ https://github.com/abersheeran/a2wsgi/
+ https://pypi.org/project/a2wsgi/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+ $(python_gen_cond_dep '
+ dev-python/typing-extensions[${PYTHON_USEDEP}]
+ ' 3.10)
+"
+BDEPEND="
+ test? (
+ <dev-python/httpx-1[${PYTHON_USEDEP}]
+ >=dev-python/httpx-0.22.0[${PYTHON_USEDEP}]
+ dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+ dev-python/starlette[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # requires baize
+ tests/test_asgi.py::test_baize_stream_response
+ )
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest -p asyncio
+}