commit:     219c6b1a8f75c34f392b1bb8995aa6ee1b93f4d1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 16 06:01:19 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 16 06:01:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219c6b1a

dev-python/uvicorn: Bump to 0.34.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/uvicorn/Manifest              |  1 +
 dev-python/uvicorn/uvicorn-0.34.0.ebuild | 81 ++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/dev-python/uvicorn/Manifest b/dev-python/uvicorn/Manifest
index 61a403256dce..60ce81fdd9f6 100644
--- a/dev-python/uvicorn/Manifest
+++ b/dev-python/uvicorn/Manifest
@@ -2,3 +2,4 @@ DIST uvicorn-0.31.1.gh.tar.gz 728604 BLAKE2B 
4f8f4e34bc6b13f6f0866a6890855a5b3bf
 DIST uvicorn-0.32.0.gh.tar.gz 728882 BLAKE2B 
8ab5341b23a97fbf4e8d6cf046f71ef09831bd7914c631fd1683eefe8a2aa8377b572443c180505f0413d5c04462519aa7fd848623d9765905add47650dad19e
 SHA512 
66bfaf0ff37507b90fa63d4a9d3cdb8ae7aa70629ad9bcf52a391abd2c85e67cfce066ba8fb39d9e8f7781bdbad52a03ac9beb9cdbc91af59c29bcf2654ba8b0
 DIST uvicorn-0.32.1.gh.tar.gz 729220 BLAKE2B 
f092a1ff0fe08469afbeb9ee244e290bf42ecdb5c56f429386a2c827719d1d85b577cdf9eaeab3c487574593c2716ffa4f7887ec364bab34fbf19a63ff7f62b5
 SHA512 
f965d37108ee7867cc6d49983156e47d21cda7b252f5ac67daa5b3a258c741238625fdc508e9cdceb4762dc24b808f2c1895fedf8abfd50438af708dda86e36e
 DIST uvicorn-0.33.0.gh.tar.gz 728545 BLAKE2B 
d780247dda6050fcdbb084c5d4267effd74e414c51400c3d5df46190cca04d456a7fc8bd60e5d00d464fd1b737c2e7f56cb3f75f8d6df27b706a858db22724fe
 SHA512 
7da1abf9811d97d7e8c0a520ffbf7f164810165ff47abb4f44849773bd5821ec76a3bf7c9551fcc9e4be3a5474e02ff519a3a70a8255e5a4b27f8e17f829382a
+DIST uvicorn-0.34.0.gh.tar.gz 728609 BLAKE2B 
50b0cb2d0d7e81398bb078c999d17e3cc021e371274fb3387559d92cc3086386aa5e62a56ba14ae60e5da742017ad58aee3fb8b045e438b614ce8e812934b4ad
 SHA512 
260782e385a2934049da8c474750958826afe1bfe23b38fe2f6420f355af7a537563f8fe6ac3830814c7469203703d10f4f9f3d6e53e79113bfd2fd34f7a7c72

diff --git a/dev-python/uvicorn/uvicorn-0.34.0.ebuild 
b/dev-python/uvicorn/uvicorn-0.34.0.ebuild
new file mode 100644
index 000000000000..83a8684c768c
--- /dev/null
+++ b/dev-python/uvicorn/uvicorn-0.34.0.ebuild
@@ -0,0 +1,81 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Lightning-fast ASGI server implementation"
+HOMEPAGE="
+       https://www.uvicorn.org/
+       https://github.com/encode/uvicorn/
+       https://pypi.org/project/uvicorn/
+"
+# as of 0.28.0, no tests in sdist
+SRC_URI="
+       https://github.com/encode/uvicorn/archive/${PV}.tar.gz
+               -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="test-rust"
+
+RDEPEND="
+       >=dev-python/asgiref-3.4.0[${PYTHON_USEDEP}]
+       >=dev-python/click-7.0[${PYTHON_USEDEP}]
+       >=dev-python/h11-0.8[${PYTHON_USEDEP}]
+       $(python_gen_cond_dep '
+               >=dev-python/typing-extensions-4.0[${PYTHON_USEDEP}]
+       ' 3.10)
+"
+BDEPEND="
+       test? (
+               dev-python/a2wsgi[${PYTHON_USEDEP}]
+               >=dev-python/httptools-0.6.3[${PYTHON_USEDEP}]
+               dev-python/httpx[${PYTHON_USEDEP}]
+               dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+               dev-python/pytest-mock[${PYTHON_USEDEP}]
+               dev-python/python-dotenv[${PYTHON_USEDEP}]
+               dev-python/pyyaml[${PYTHON_USEDEP}]
+               dev-python/typing-extensions[${PYTHON_USEDEP}]
+               >=dev-python/websockets-10.4[${PYTHON_USEDEP}]
+               dev-python/wsproto[${PYTHON_USEDEP}]
+               test-rust? (
+                       dev-python/cryptography[${PYTHON_USEDEP}]
+                       dev-python/trustme[${PYTHON_USEDEP}]
+                       dev-python/watchfiles[${PYTHON_USEDEP}]
+               )
+       )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+       local EPYTEST_DESELECT=(
+               # too long path for unix socket
+               
tests/test_config.py::test_bind_unix_socket_works_with_reload_or_workers
+               # TODO
+               
'tests/protocols/test_http.py::test_close_connection_with_multiple_requests[httptools]'
+               
'tests/protocols/test_websocket.py::test_send_binary_data_to_server_bigger_than_default_on_websockets[httptools-max=defaults
 sent=defaults+1]'
+               
'tests/protocols/test_websocket.py::test_send_binary_data_to_server_bigger_than_default_on_websockets[h11-max=defaults
 sent=defaults+1]'
+       )
+       case ${EPYTHON} in
+               pypy3)
+                       # TODO
+                       EPYTEST_DESELECT+=(
+                               
tests/middleware/test_logging.py::test_running_log_using_fd
+                       )
+                       ;;
+       esac
+
+       epytest
+}
+
+pkg_postinst() {
+       optfeature "auto reload on file changes" dev-python/watchfiles
+}

Reply via email to