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: Wed, 23 Feb 2022 21:30:21
Message-Id: 1645651803.c5ff4bd8e11edd4188b4c61d8f9fb2f23b9e7d29.mgorny@gentoo
1 commit: c5ff4bd8e11edd4188b4c61d8f9fb2f23b9e7d29
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 23 20:45:55 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 23 21:30:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5ff4bd8
7
8 dev-python/txaio: Bump to 22.2.1
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 | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/txaio/Manifest b/dev-python/txaio/Manifest
17 index 15b3b575d3cb..e5f2a880c796 100644
18 --- a/dev-python/txaio/Manifest
19 +++ b/dev-python/txaio/Manifest
20 @@ -1 +1,2 @@
21 DIST txaio-21.2.1.tar.gz 53383 BLAKE2B ff245c7e303a88e0e0f71bfa99ec5cfa2e6ec026e43e9477beb711cc753d73d4f49079727f9f86499779819fda74747edee00ebe22c0ac59c764c1403b983960 SHA512 762875b9c10304dab31dd54f7830f56b0cc26dd6e7a98c8faf57891a2810e36f53004833f872f0f51bad61cb62be033cfc228c99fd6aff60cd4dd2ae2f2e5c37
22 +DIST txaio-22.2.1.tar.gz 53645 BLAKE2B 375203ddbe65d293ba0bf85e316880d552f47cbc9008bd41e50976ee097940c626ec66ad25e0b5322493f71f77141d03f543ce9c9d83268a1a896b16f434ccaa SHA512 b5e33ba671ab215dadf4c348b01e9d5057d080c21707d31e38912fe596aabd7b388e8c5e0f2dd2b7d0d09fe0a175a0906e2a2ee428c1a943e786afa79182631e
23
24 diff --git a/dev-python/txaio/txaio-22.2.1.ebuild b/dev-python/txaio/txaio-22.2.1.ebuild
25 new file mode 100644
26 index 000000000000..31b3f3d21663
27 --- /dev/null
28 +++ b/dev-python/txaio/txaio-22.2.1.ebuild
29 @@ -0,0 +1,32 @@
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..10} )
37 +
38 +inherit distutils-r1 optfeature
39 +
40 +DESCRIPTION="Compatibility API between asyncio/Twisted/Trollius"
41 +HOMEPAGE="https://github.com/crossbario/txaio https://pypi.org/project/txaio/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
47 +
48 +distutils_enable_sphinx docs \
49 + '>=dev-python/sphinxcontrib-spelling-2.1.2' \
50 + '>=dev-python/sphinx_rtd_theme-0.1.9'
51 +distutils_enable_tests pytest
52 +
53 +EPYTEST_DESELECT=(
54 + # Take out failing tests known to pass when run manually
55 + # we certainly don't need to test "python setup.py sdist" here
56 + test/test_packaging.py
57 +)
58 +
59 +pkg_postinst() {
60 + optfeature "Twisted support" "dev-python/twisted dev-python/zope-interface"
61 +}