dev-python/python-socketio: add useflags to 5.3.0-r1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-08 09:47:54 +01:00
parent 9125efdd2a
commit e9d9e7488b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 15 additions and 9 deletions

View File

@ -664,9 +664,9 @@ There are 1654 Ebuilds in total, 1643 of them have in total 1662 (42 different)
|GPL-2+|1|
|GPL-2-with-linking-exception|1|
(Last counted: 07/01/2024)
(Last counted: 08/01/2024)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 07/01/2024
Last updated: 08/01/2024

View File

@ -1,5 +1,5 @@
DIST python-socketio-4.6.0.tar.gz 41016 BLAKE2B 62f37791bd3a0ad268c275b3455fa736cd7d2522890878ca400c1c51b051c8898039083a29073ae29151ac79efcd3343f41e0880bbe313c14b25c480945075e6 SHA512 bc3b6b4b4f8276109e8839cac8e42005b201beace745b7fb1218766013d329ab7926f17847710c1d71dbbd4376f497b0ea1c5a048f26fccefab64e322c816068
DIST python-socketio-5.3.0.tar.gz 44589 BLAKE2B 29a06b2744b021f388c210b874849267318660c307f23e650c08d325fe5a285b92f1cd31b68be1b09ba684b6654d430c08dff60b09d3880f04f0a474095a31da SHA512 21408c50581bc44db3303b0250fa0bece3440febff0f9fddd36cc9d476150992c0aaad15f225be4d6a5861b481a05edbf13fc46d53e00c24de41cf79fc7432ec
EBUILD python-socketio-4.6.0-r2.ebuild 950 BLAKE2B 05e754d817300739afbd927608340dc29655c9464c54ad7a91cc94505ffcea7a19aa1d6ed02ae6e94f8fe1ad301ed4d6a7d18bfc5e04ebb981ebc71e699b134b SHA512 e2617bb08cd508a6067d7c621c94b92e8c16841a09568a4b1b94f8360a3e5b1235fee5b97e3ee563abd28506f0c78574d04354cbe2e2aaed17a003d7e1527ca7
EBUILD python-socketio-5.3.0.ebuild 710 BLAKE2B 24c64062065b533ebc154c9d2d9fa06bb38599e6168edc8a601f42e90b75cca05ae42abd50f11f32876bdd4bec0e0a00fe945e3629cbb41629fe089ff4ee1461 SHA512 f9764aa8bb6312a0e8553dc2806e41684b0cf505eca9eaff86ef2060d8af92cbfbb876de79ce1daa035e63168ca8579eef189be284eb319f5c668e50b387082b
EBUILD python-socketio-5.3.0-r1.ebuild 932 BLAKE2B 1b33a32a2ace707595cea85ab99b409df6020c4d1d3a1ba99c2a5079a7ae365bbfc310711d5437b78432f116cc2d0b5c841c25b2fd1c4c2a3e217d526fe234e8 SHA512 c33ecef8b8cbfb128ecdc410c38e990def0141775003de94d328be273039f57b54d46b2a9be60d83a9b0637f42d4093615b2377544130da562c241b88b858e2f
MISC metadata.xml 730 BLAKE2B a5b31e26309f0b3d3ad14be6fcd37f83c4e3ece178505c75f9cb42c025de1b7438fb40dc5048207b1bfd5bd496dea3aed966f83985b2ee4673bc54a2c15f1b84 SHA512 a38f438cc598b62186ae344ea708a3286c170d6d12f273b284cad7864a0ea0065132d597cd2f0ef5ffbd17905b05255125a23f79c26678b1eaffc135185de409

View File

@ -14,20 +14,26 @@ HOMEPAGE="https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/pr
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
IUSE="asyncio_client client test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/bidict-0.21.0[${PYTHON_USEDEP}]
dev-python/python-engineio[${PYTHON_USEDEP}]"
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
dev-python/python-engineio[${PYTHON_USEDEP}]
client? (
>=dev-python/requests-2.21.0
>=dev-python/websocket-client-0.54.0
)
asyncio_client? (
>=dev-python/aiohttp-3.4
>=dev-python/websockets-7.0
)"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest