dev-python/python-socketio: treeclean

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 18:37:59 +02:00
parent dc66a58df1
commit 6bf45cccf1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 4 additions and 108 deletions

View File

@ -617,13 +617,13 @@ 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 1861 Ebuilds in total, 1850 of them have in total 1870 (42 different) licenses assigned.
There are 1852 Ebuilds in total, 1841 of them have in total 1861 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1057|
|Apache-2.0|411|
|GPL-3|125|
|MIT|1051|
|Apache-2.0|410|
|GPL-3|123|
|BSD|105|
|LGPL-3|26|
|GPL-2|21|

View File

@ -1,5 +0,0 @@
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-r1.ebuild 932 BLAKE2B 1b33a32a2ace707595cea85ab99b409df6020c4d1d3a1ba99c2a5079a7ae365bbfc310711d5437b78432f116cc2d0b5c841c25b2fd1c4c2a3e217d526fe234e8 SHA512 c33ecef8b8cbfb128ecdc410c38e990def0141775003de94d328be273039f57b54d46b2a9be60d83a9b0637f42d4093615b2377544130da562c241b88b858e2f
MISC metadata.xml 730 BLAKE2B a5b31e26309f0b3d3ad14be6fcd37f83c4e3ece178505c75f9cb42c025de1b7438fb40dc5048207b1bfd5bd496dea3aed966f83985b2ee4673bc54a2c15f1b84 SHA512 a38f438cc598b62186ae344ea708a3286c170d6d12f273b284cad7864a0ea0065132d597cd2f0ef5ffbd17905b05255125a23f79c26678b1eaffc135185de409

View File

@ -1,21 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">python-socketio</remote-id>
<remote-id type="github">miguelgrinberg/python-socketio</remote-id>
<doc>https://pythonhosted.org/python-socketio/</doc>
<maintainer status="unknown">
<email>miguel.grinberg@gmail.com</email>
<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

@ -1,39 +0,0 @@
# 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,39 +0,0 @@
# 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