dev-python/python-socketio: re-add 4.6.0-r2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2024-01-07 20:22:54 +01:00
parent f64d66b99b
commit 9125efdd2a
5 changed files with 50 additions and 5 deletions

View File

@@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1653 Ebuilds in total, 1642 of them have in total 1661 (42 different) licenses assigned.
There are 1654 Ebuilds in total, 1643 of them have in total 1662 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|941|
|MIT|942|
|Apache-2.0|360|
|GPL-3|110|
|BSD|93|

View File

@@ -1,3 +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-5.3.0.ebuild 710 BLAKE2B 87715cbf3797f2bf45c8fc0098c26f2fcf97b4606df4136c077d8b3b6405223ac7d21a93fc7b6780fbf7e4e4eb4767172bcb5fb8847f080c3e727744933cc754 SHA512 9e52a61c95dfe524d64b93212b820e4b9dd95220ed6558ef6c0968c26fa9f29366d7338f133c01be093ffb0bfea040187e1ebbdbb71777cbd25894693b2f2df0
MISC metadata.xml 597 BLAKE2B f3bd9cdabac420174d790b774952c6e6dbfdba73a0b59551ed63f8a0699ae2e2ba7943a38f35d05e7642fc3cae2b56a4f1a614fc1c9eecc707cd3f8e1443a3ff SHA512 94d96a316d113f681accc886847ae3362b871a0e82f50111bddaecf3e8d5b62a855ca85928ecadc23046b2fc281856ef96807f92da94ce718d44f66b3b3646b6
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
MISC metadata.xml 730 BLAKE2B a5b31e26309f0b3d3ad14be6fcd37f83c4e3ece178505c75f9cb42c025de1b7438fb40dc5048207b1bfd5bd496dea3aed966f83985b2ee4673bc54a2c15f1b84 SHA512 a38f438cc598b62186ae344ea708a3286c170d6d12f273b284cad7864a0ea0065132d597cd2f0ef5ffbd17905b05255125a23f79c26678b1eaffc135185de409

View File

@@ -14,4 +14,8 @@
<name>Miguel Grinberg</name>
</maintainer>
</upstream>
<use>
<flag name="asyncio_client">install with async client</flag>
<flag name="client">install with client</flag>
</use>
</pkgmetadata>

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Socket.IO server"
HOMEPAGE="https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="asyncio_client client test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/bidict-0.21.0[${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}]
)"
distutils_enable_tests pytest

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8