diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-03-20 00:40:44 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-03-20 00:40:44 +0000 |
commit | 4cbcc855382a06088e2f016f62cafdbcb7e40665 (patch) | |
tree | 356496503d52354aa6d9f2d36126302fed5f3a73 /dev-python/txaio | |
parent | fcc5224904648a8e6eb528d7603154160a20022f (diff) |
gentoo resync : 20.03.2022
Diffstat (limited to 'dev-python/txaio')
-rw-r--r-- | dev-python/txaio/Manifest | 2 | ||||
-rw-r--r-- | dev-python/txaio/txaio-22.2.1.ebuild | 32 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/txaio/Manifest b/dev-python/txaio/Manifest index 716f49b5a29f..4875c9c8757e 100644 --- a/dev-python/txaio/Manifest +++ b/dev-python/txaio/Manifest @@ -1,3 +1,5 @@ DIST txaio-21.2.1.tar.gz 53383 BLAKE2B ff245c7e303a88e0e0f71bfa99ec5cfa2e6ec026e43e9477beb711cc753d73d4f49079727f9f86499779819fda74747edee00ebe22c0ac59c764c1403b983960 SHA512 762875b9c10304dab31dd54f7830f56b0cc26dd6e7a98c8faf57891a2810e36f53004833f872f0f51bad61cb62be033cfc228c99fd6aff60cd4dd2ae2f2e5c37 +DIST txaio-22.2.1.tar.gz 53645 BLAKE2B 375203ddbe65d293ba0bf85e316880d552f47cbc9008bd41e50976ee097940c626ec66ad25e0b5322493f71f77141d03f543ce9c9d83268a1a896b16f434ccaa SHA512 b5e33ba671ab215dadf4c348b01e9d5057d080c21707d31e38912fe596aabd7b388e8c5e0f2dd2b7d0d09fe0a175a0906e2a2ee428c1a943e786afa79182631e EBUILD txaio-21.2.1.ebuild 936 BLAKE2B 32a6c06c895c2ff50a7a5821d4c6358819a39b8e8e74135f84da00f6fd23f90f05cbda7e32fea9861530b62006e4e4d50f5afaab7c5fdae763f38a5e543dd566 SHA512 c7095a48f9262b6bc9479ab2eaddc7af3f527c81e2112d208ff56e19f50021f6d8fa2734d64880030e80cd53124bc3e614a1c98b3b61c0293005dd600378a6a5 +EBUILD txaio-22.2.1.ebuild 912 BLAKE2B f9f964b9317d6556ac6c37c773b3410affeba7183ff6df872fee86f53574550dca8d16d2c9d3359246d7a68b538f7abaece3b86774816c6868f15ac3d0cbc851 SHA512 7511397925a31ce9e04518d900d3ed1f360d7de24f18bf101c16b221c89d34a7b8616fbf286a0667dc76bf68fb959e9644fcaa25f33a92432622c91eac176a3c MISC metadata.xml 618 BLAKE2B bd097fc800fd543169f113520e8579f6514a355de3d68548e48e6037812b192bb4f6f8d4c2956934ee9cf88e6d13a11f8a2f95a3cdbba95f66638593734087d1 SHA512 fd8817810ff9ee6ab874f8bce30c1a1834caa0c5b22139d2c1317722155ff87e15a05c3f95b6f23f03e7b98807d0a71b0e2081518cc5e2086718cecea42b0c42 diff --git a/dev-python/txaio/txaio-22.2.1.ebuild b/dev-python/txaio/txaio-22.2.1.ebuild new file mode 100644 index 000000000000..8b1e66fb4264 --- /dev/null +++ b/dev-python/txaio/txaio-22.2.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Compatibility API between asyncio/Twisted/Trollius" +HOMEPAGE="https://github.com/crossbario/txaio https://pypi.org/project/txaio/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_sphinx docs \ + '>=dev-python/sphinxcontrib-spelling-2.1.2' \ + '>=dev-python/sphinx_rtd_theme-0.1.9' +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # Take out failing tests known to pass when run manually + # we certainly don't need to test "python setup.py sdist" here + test/test_packaging.py +) + +pkg_postinst() { + optfeature "Twisted support" "dev-python/twisted dev-python/zope-interface" +} |