Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uvicorn/
Date: Wed, 24 Aug 2022 19:36:40
Message-Id: 1661369777.f148a6ac5d583fe3f03b9865de69b89297622917.arthurzam@gentoo
1 commit: f148a6ac5d583fe3f03b9865de69b89297622917
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 19:12:46 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 19:36:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f148a6ac
7
8 dev-python/uvicorn: add 0.18.3
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/uvicorn/Manifest | 1 +
13 dev-python/uvicorn/uvicorn-0.18.3.ebuild | 62 ++++++++++++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/dev-python/uvicorn/Manifest b/dev-python/uvicorn/Manifest
17 index eb0404a6fdf5..998be4ea5b7c 100644
18 --- a/dev-python/uvicorn/Manifest
19 +++ b/dev-python/uvicorn/Manifest
20 @@ -1,2 +1,3 @@
21 DIST uvicorn-0.17.6.tar.gz 708048 BLAKE2B 83b06907c8109b38e13930d8b73584682fa4e34fe7e51fe14b6ca1ddc7ef8122d950a09e31cb364a02f5f12eead5d0522b41cbf428509c6900604d4e2776dfb2 SHA512 d5c5223759d59648f279e22f7e6af728fe8117ed75488d125c1db3e5e9d385a50d574cff72ac46db4eb0a78d0e4f690096cfe78c774674dfba61860e55b7494e
22 DIST uvicorn-0.18.2.gh.tar.gz 712706 BLAKE2B d8d300579d945a5c2f51b7746b93cd64710c103cd0b7694ce858ec0f4e9dc09f89e9663529dd84c13c9f6334d0f4543cc9442e94aedf8dbddd72a6a0394ba370 SHA512 d2e05198cd833efbe7dddffc30f9a52be3168192269cd493816df8a7d4053e312f534988ee09c5270d63f52dfa48d0b105862c9e05acad41ebf3a40e5fa1aa76
23 +DIST uvicorn-0.18.3.gh.tar.gz 713216 BLAKE2B ba1fb1f2241fa3c23bc4115d335ef1c176937e8af5e33ae7d1e615271c94bc330ef5cb21d6bedd697ecb2a38798758ea47d5523ea6ee45295cf447e81503ff05 SHA512 a4983e7095f3596ac54557432a074eb8cae4c6dd579fabfe8b6c34606ba8258e6c0684c2e34e8019f2455fbfd1771f8c2c88bf8b01fc505abfae93655f61f032
24
25 diff --git a/dev-python/uvicorn/uvicorn-0.18.3.ebuild b/dev-python/uvicorn/uvicorn-0.18.3.ebuild
26 new file mode 100644
27 index 000000000000..ed997d18da2a
28 --- /dev/null
29 +++ b/dev-python/uvicorn/uvicorn-0.18.3.ebuild
30 @@ -0,0 +1,62 @@
31 +# Copyright 2021-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=hatchling
37 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
38 +
39 +inherit distutils-r1 optfeature
40 +
41 +DESCRIPTION="Lightning-fast ASGI server implementation"
42 +HOMEPAGE="https://www.uvicorn.org/"
43 +SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
48 +
49 +RDEPEND="
50 + >=dev-python/asgiref-3.4.0[${PYTHON_USEDEP}]
51 + >=dev-python/click-7.0[${PYTHON_USEDEP}]
52 + >=dev-python/h11-0.8[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + test? (
56 + dev-python/cryptography[${PYTHON_USEDEP}]
57 + dev-python/httpx[${PYTHON_USEDEP}]
58 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
59 + dev-python/pytest-mock[${PYTHON_USEDEP}]
60 + dev-python/python-dotenv[${PYTHON_USEDEP}]
61 + dev-python/pyyaml[${PYTHON_USEDEP}]
62 + dev-python/trustme[${PYTHON_USEDEP}]
63 + >=dev-python/websockets-10.0[${PYTHON_USEDEP}]
64 + dev-python/wsproto[${PYTHON_USEDEP}]
65 + )
66 +"
67 +
68 +distutils_enable_tests pytest
69 +
70 +python_test() {
71 + local EPYTEST_DESELECT=(
72 + # too long path for unix socket
73 + tests/test_config.py::test_bind_unix_socket_works_with_reload_or_workers
74 + # need unpackaged httptools
75 + "tests/middleware/test_logging.py::test_trace_logging_on_http_protocol[httptools]"
76 + tests/protocols/test_http.py::test_fragmentation
77 + )
78 +
79 + local EPYTEST_IGNORE=()
80 + # love from Rust world
81 + if ! has_version "dev-python/watchfiles[${PYTHON_USEDEP}]"; then
82 + EPYTEST_IGNORE+=(
83 + tests/supervisors/test_reload.py
84 + )
85 + fi
86 +
87 + epytest
88 +}
89 +
90 +pkg_postinst() {
91 + optfeature "auto reload on file changes" dev-python/watchfiles
92 +}