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: dev-python/txaio/
Date: Tue, 30 Mar 2021 19:12:53
Message-Id: 1617131189.53d475bbd51120a5a0c3626a327e9f199d373ed8.mgorny@gentoo
1 commit: 53d475bbd51120a5a0c3626a327e9f199d373ed8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 30 19:06:29 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 30 19:06:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d475bb
7
8 dev-python/txaio: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/txaio/Manifest | 1 -
13 dev-python/txaio/txaio-20.12.1.ebuild | 32 --------------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/txaio/Manifest b/dev-python/txaio/Manifest
17 index 1ad2d623dc1..15b3b575d3c 100644
18 --- a/dev-python/txaio/Manifest
19 +++ b/dev-python/txaio/Manifest
20 @@ -1,2 +1 @@
21 -DIST txaio-20.12.1.tar.gz 53200 BLAKE2B 0bbcf8a64fec668c2cf128a390779ca81033d0f43f02a341c46fc392254ff011df13a1456757e86dc5c4c15f18468698f4da85cc830fb2e52e4e620f7a8767ee SHA512 efde6115b8eccba94dce736fffe49f280ff49e9738f3299578cf41641c3b6f1deb5b1c0f0c8c6fbf85c8d8adbdc2d3f67aa256335d63a5977ac0bfacc98f909c
22 DIST txaio-21.2.1.tar.gz 53383 BLAKE2B ff245c7e303a88e0e0f71bfa99ec5cfa2e6ec026e43e9477beb711cc753d73d4f49079727f9f86499779819fda74747edee00ebe22c0ac59c764c1403b983960 SHA512 762875b9c10304dab31dd54f7830f56b0cc26dd6e7a98c8faf57891a2810e36f53004833f872f0f51bad61cb62be033cfc228c99fd6aff60cd4dd2ae2f2e5c37
23
24 diff --git a/dev-python/txaio/txaio-20.12.1.ebuild b/dev-python/txaio/txaio-20.12.1.ebuild
25 deleted file mode 100644
26 index 0ae1647e9e7..00000000000
27 --- a/dev-python/txaio/txaio-20.12.1.ebuild
28 +++ /dev/null
29 @@ -1,32 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{7..9} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Compatibility API between asyncio/Twisted/Trollius"
39 -HOMEPAGE="https://github.com/crossbario/txaio https://pypi.org/project/txaio/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
45 -
46 -BDEPEND="
47 - test? (
48 - >=dev-python/mock-1.3.0[${PYTHON_USEDEP}]
49 - )
50 -"
51 -distutils_enable_sphinx docs \
52 - '>=dev-python/sphinxcontrib-spelling-2.1.2' \
53 - '>=dev-python/sphinx_rtd_theme-0.1.9'
54 -distutils_enable_tests pytest
55 -
56 -src_prepare() {
57 - default_src_prepare
58 - # Take out failing tests known to pass when run manually
59 - # we certainly don't need to test "python setup.py sdist" here
60 - rm "${S}/test/test_packaging.py" || die
61 -}