Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/
Date: Mon, 04 Jul 2022 05:08:50
Message-Id: 1656911321.b1cd3bc79bddf4eeaa0d12fda5de36bcb9ea4e15.mgorny@gentoo
1 commit: b1cd3bc79bddf4eeaa0d12fda5de36bcb9ea4e15
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 4 04:55:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 05:08:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1cd3bc7
7
8 www-servers/tornado: Bump to 6.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 www-servers/tornado/Manifest | 1 +
13 www-servers/tornado/tornado-6.2.ebuild | 68 ++++++++++++++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
17 index 5d3a2d66a133..da8fb3c0422f 100644
18 --- a/www-servers/tornado/Manifest
19 +++ b/www-servers/tornado/Manifest
20 @@ -1 +1,2 @@
21 DIST tornado-6.1.tar.gz 497359 BLAKE2B ed5981dec5cca962f907f97b7f906c1eef40d2b2b6d6cc16a21bd0a0a91ee58a60bea84b7ceeeff30b3462d707c56a5062c71d4ac8f25ca6a306ded6c6f072c5 SHA512 0ec1db1fad911182bda547c177a18b107b906cf66576443069e2b986cf041b3d4ebe08e5a168aa5cd3b56547f32f8b384bacaf74db89f582951d7b610b7494e8
22 +DIST tornado-6.2.tar.gz 504849 BLAKE2B 18fee464e043e20dcdd5677bc3a72949140a64ce353e09a21242fcade6d8b668517553c649d65e892d9c3fabacea96903d4e42b70676a62759900abc8f4a202f SHA512 157cbeee21bef29ac68b319329e7fc57db4c68dbb5a245e2171b7a28427ebbfe16b745e3bdbdec5912caae5eaa60c3cbbf8830c9c76fec5ffdf025e234468517
23
24 diff --git a/www-servers/tornado/tornado-6.2.ebuild b/www-servers/tornado/tornado-6.2.ebuild
25 new file mode 100644
26 index 000000000000..7e27327324af
27 --- /dev/null
28 +++ b/www-servers/tornado/tornado-6.2.ebuild
29 @@ -0,0 +1,68 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +PYTHON_REQ_USE="threads(+)"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python web framework and asynchronous networking library"
42 +HOMEPAGE="
43 + https://www.tornadoweb.org/
44 + https://github.com/tornadoweb/tornado/
45 + https://pypi.org/project/tornado/
46 +"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
52 +IUSE="examples test"
53 +RESTRICT="!test? ( test )"
54 +
55 +RDEPEND="
56 + >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
57 + >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
58 +"
59 +BDEPEND="
60 + test? (
61 + ${RDEPEND}
62 + )
63 +"
64 +
65 +distutils_enable_sphinx docs \
66 + dev-python/sphinx_rtd_theme \
67 + dev-python/sphinxcontrib-asyncio
68 +
69 +src_prepare() {
70 + # Disable deprecation-warnings-as-errors because tornado has a lot of stuff deprecated in 3.10
71 + sed 's/warnings.filterwarnings("error", category=DeprecationWarning, module=r"tornado\\..*")//' \
72 + -i tornado/test/runtests.py || die
73 + # broken upstream
74 + sed -i -e 's:test_multi_line_headers:_&:' \
75 + tornado/test/httpclient_test.py || die
76 + # network-sandbox? ipv6?
77 + sed -i -e 's:test_localhost:_&:' \
78 + tornado/test/netutil_test.py || die
79 +
80 + distutils-r1_src_prepare
81 +}
82 +
83 +python_test() {
84 + local -x ASYNC_TEST_TIMEOUT=60
85 + cd "${T}" || die
86 + "${EPYTHON}" -m tornado.test.runtests --verbose ||
87 + die "tests failed under ${EPYTHON}"
88 +}
89 +
90 +python_install_all() {
91 + if use examples; then
92 + docinto examples
93 + dodoc -r demos/.
94 + docompress -x /usr/share/doc/${PF}/examples
95 + fi
96 + distutils-r1_python_install_all
97 +}