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: Fri, 17 Mar 2023 15:58:17
Message-Id: 1679068688.454ef4cd8237f92125d342ca5861e3c0fb249067.mgorny@gentoo
1 commit: 454ef4cd8237f92125d342ca5861e3c0fb249067
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 15:57:04 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 15:58:08 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=454ef4cd
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-22.2.1.ebuild | 44 ------------------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/txaio/Manifest b/dev-python/txaio/Manifest
17 index 07877b5ba3ea..459f42edc441 100644
18 --- a/dev-python/txaio/Manifest
19 +++ b/dev-python/txaio/Manifest
20 @@ -1,2 +1 @@
21 -DIST txaio-22.2.1.tar.gz 53645 BLAKE2B 375203ddbe65d293ba0bf85e316880d552f47cbc9008bd41e50976ee097940c626ec66ad25e0b5322493f71f77141d03f543ce9c9d83268a1a896b16f434ccaa SHA512 b5e33ba671ab215dadf4c348b01e9d5057d080c21707d31e38912fe596aabd7b388e8c5e0f2dd2b7d0d09fe0a175a0906e2a2ee428c1a943e786afa79182631e
22 DIST txaio-23.1.1.tar.gz 53704 BLAKE2B 1c12892c34cc848732d718a715e83059a6be0973cbabe619639c67d230b0d4e55b4e6d1b13baa05b13fe9faa266dadb6f2913bc01491af381fde5ca78ce6941e SHA512 41320501ec3e2555edc63326f2c5ee9bbc2fd103198a515b6dc4c44603a41d633c99a8f12c92ffc85f43546f0382d40f0c9748b13f7a7e70d98c5c4a2de85e2e
23
24 diff --git a/dev-python/txaio/txaio-22.2.1.ebuild b/dev-python/txaio/txaio-22.2.1.ebuild
25 deleted file mode 100644
26 index 126e1b91b171..000000000000
27 --- a/dev-python/txaio/txaio-22.2.1.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 1999-2023 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_{9..11} )
37 -
38 -inherit distutils-r1 optfeature
39 -
40 -DESCRIPTION="Compatibility API between asyncio/Twisted/Trollius"
41 -HOMEPAGE="
42 - https://github.com/crossbario/txaio/
43 - https://pypi.org/project/txaio/
44 -"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="amd64 arm arm64 ~riscv x86 ~amd64-linux ~x86-linux"
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 -python_test() {
57 - local EPYTEST_DESELECT=(
58 - # we certainly don't need to test "python setup.py sdist" here
59 - test/test_packaging.py
60 - )
61 - [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
62 - # tests for removed asyncio.coroutine
63 - test/test_as_future.py::test_as_future_coroutine
64 - test/test_call_later.py::test_explicit_reactor_coroutine
65 - test/test_is_future.py::test_is_future_coroutine
66 - )
67 -
68 - epytest
69 -}
70 -
71 -pkg_postinst() {
72 - optfeature "Twisted support" "dev-python/twisted dev-python/zope-interface"
73 -}