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: Fri, 01 Jan 2021 00:53:57
Message-Id: 1609462092.d56202dc286ee123ca111ad3aef7d150276eccd0.mgorny@gentoo
1 commit: d56202dc286ee123ca111ad3aef7d150276eccd0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 00:48:12 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:48:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d56202dc
7
8 www-servers/tornado: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 www-servers/tornado/Manifest | 1 -
13 www-servers/tornado/tornado-4.5.3.ebuild | 54 --------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/www-servers/tornado/Manifest b/www-servers/tornado/Manifest
17 index 7ac937f14bf..be07c599176 100644
18 --- a/www-servers/tornado/Manifest
19 +++ b/www-servers/tornado/Manifest
20 @@ -1,2 +1 @@
21 -DIST tornado-4.5.3.tar.gz 484221 BLAKE2B 7b3682fa85a7f6ad32351d40993516a3e397b7b0a5de9d807bcd8b2b21325a6170f3670cb13e12aa208b6590313cf165ddf40537dba1fee61fa9d71954265a66 SHA512 c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448
22 DIST tornado-6.0.4.tar.gz 496204 BLAKE2B 6c092214d03baf5cf7615b780043e2fa40a4ed623b7ca59a2528cc3625ba904b21ef93c528278adedaf83e3b6e5a6311d867833dfe9826637e97918dee6fa334 SHA512 d29d69cf40f8b34fb2c55d81b6ecd9bc7c6fdf644eb4ff35452829510c0d5ec185da0a6067fec3e8afb2bedf9f5f08b06adb0ad53dcab04cb791a75abc304d6e
23
24 diff --git a/www-servers/tornado/tornado-4.5.3.ebuild b/www-servers/tornado/tornado-4.5.3.ebuild
25 deleted file mode 100644
26 index 0c7d57c3595..00000000000
27 --- a/www-servers/tornado/tornado-4.5.3.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -PYTHON_REQ_USE="threads(+)"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python web framework and asynchronous networking library"
41 -HOMEPAGE="http://www.tornadoweb.org/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
47 -IUSE="examples test"
48 -RESTRICT="!test? ( test )"
49 -
50 -CDEPEND="
51 - dev-python/certifi[${PYTHON_USEDEP}]
52 - >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
53 - >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? (
58 - ${CDEPEND}
59 - dev-python/mock[${PYTHON_USEDEP}]
60 - )
61 -"
62 -RDEPEND="${CDEPEND}"
63 -
64 -distutils_enable_sphinx docs \
65 - dev-python/sphinx_rtd_theme
66 -
67 -# doc without intersphinx does not build (asyncio error)
68 -#PATCHES=(
69 -# "${FILESDIR}"/4.5.1-drop-intersphinx.patch
70 -#)
71 -
72 -python_test() {
73 - "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}"
74 -}
75 -
76 -python_install_all() {
77 - if use examples; then
78 - insinto /usr/share/doc/${PF}/examples
79 - doins -r demos/.
80 - docompress -x /usr/share/doc/${PF}/examples
81 - fi
82 - distutils-r1_python_install_all
83 -}