dev-python/matrix-nio: add 0.22.1

Closes: #2282
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-11-01 09:04:21 +01:00
committed by Andreas Billmeier
parent f93db40bb6
commit 4bf52cfba2
2 changed files with 40 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST matrix_nio-0.21.2.tar.gz 146851 BLAKE2B 3843ec17d97cd099394b6145f5213cc9568a93653c024aadab1ad5351790ca5ea212bf9bc678e669b12869ca37b787d0bdc183feadfa9852eda0d0b2288ef417 SHA512 166f04520acd2665f69e4b892f1bd9eac666e97fb4f22096e933f6273d1d32fc13dbc3f9b223cd44aa370fb90f2398c725999276b1b08f50b7e1ec4604bd5022
DIST matrix_nio-0.22.1.tar.gz 149689 BLAKE2B b1f6c588700bbe68c055042550fd7899a3623976c2b55cca0f8baf03312f515fb6914c6a0cdf7aaac00805b7960839a45913458de95b86d3d19d4637462b72e8 SHA512 629592ddf9d3a8cfc90468d9602f9ed35ccea1fda734810688ae3b37ff727ea7faead08c21a3840e39bc079b958348e4ee6649fb35d9b7a46adf5f2c29d904c7
EBUILD matrix-nio-0.21.2.ebuild 965 BLAKE2B a0030b9da9a241644257e01d769224aea5f940222987a5ec572e88a1747c376557490e4e128f8def71fa9b1a8e477b5a53e2e361ef87d5834e7c1e2e1ee580f8 SHA512 81b9735064a55a0294d6aec3eeb7f4a337302b969c517bbe7805442953df26307ae701d7ffe3f0870e359d7cc803e218abccf0720856ed0e57c0aeeb619f4027
EBUILD matrix-nio-0.22.1.ebuild 1017 BLAKE2B 90123d61e0609a663ccdac9aa0714bfc6bc842786aafdfb20e46523b20769c92b812e4c4e8bb408ef1fe9da568479fb8765a3aea94f76e2776b0cfa0b8ad87de SHA512 87572e00cc40a9ef67389996a2023c5a8f7e53050a754a76875a5024c05aaf7ca7b09702fd074afeb58d1ef930aeba51d19f72415dee9e79c80cc3e1ab30219f
MISC metadata.xml 515 BLAKE2B 5e6c8b74d86352220666004afd047fde6a35a83b0d016213fc76a03ab891d3126abfd9e1b4328b2d83c9107876b554275ec80598b045bd94b1f4df66d5678d96 SHA512 8519b2bd0785094b0bc659e9b0b03bf78017dce51e0e0c0860e67e0b7002cc7527bc53e8e73ba86bccc14345823b0168b70d47f8b01156f92611e29a18f6c14a

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="A Python Matrix client library, designed according to sans I/O principles."
HOMEPAGE="https://github.com/poljar/matrix-nio https://pypi.org/project/matrix-nio/"
LICENSE="ISC"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.3[${PYTHON_USEDEP}]
>=dev-python/aiofiles-23.1.0[${PYTHON_USEDEP}]
>=dev-python/h11-0.14.0[${PYTHON_USEDEP}]
>=dev-python/h2-4.0.0[${PYTHON_USEDEP}]
>=dev-python/jsonschema-4.14.0[${PYTHON_USEDEP}]
>=dev-python/unpaddedbase64-2.1.0[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.10.1[${PYTHON_USEDEP}]
>=dev-python/aiohttp-socks-0.7.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest