cleanup, add new Python Targets, Letter 'N' and parts of P Integrations

This commit is contained in:
2021-07-13 21:07:46 +02:00
committed by Andreas Billmeier
parent d5a883b3bf
commit 527641ec45
142 changed files with 244 additions and 1545 deletions

View File

@@ -1,4 +1,5 @@
DIST python-socketio-4.6.0.tar.gz 41016 BLAKE2B 62f37791bd3a0ad268c275b3455fa736cd7d2522890878ca400c1c51b051c8898039083a29073ae29151ac79efcd3343f41e0880bbe313c14b25c480945075e6 SHA512 bc3b6b4b4f8276109e8839cac8e42005b201beace745b7fb1218766013d329ab7926f17847710c1d71dbbd4376f497b0ea1c5a048f26fccefab64e322c816068
EBUILD python-socketio-4.6.0-r1.ebuild 700 BLAKE2B 3df79264aa133d000dd2a72bcbd9c0f61bade3ede67b648385b817d122d5516a62430a2da7db8bafc7ba380fad8eca30d5324af519e2d8c1f207749f8c51109c SHA512 b046a06ebbf94641724725b5489b8d8be1c34ed01df6dd4345d73e92edb2bb3e33ba17ba8c2f9fabe83434daa729091a683810b3942551987ff868081fb21e7d
EBUILD python-socketio-4.6.0.ebuild 681 BLAKE2B b32f7b9421185e16b40283442c33ae05417fde6e7a0e3b3e0240ef00bc100ee43b5f00a7e77c243a5bb0651386b398698de78790ae81998b2b2ec09d4acfd4ce SHA512 4b70aa03f3e8b7aeb3dd2ae877682f8100ec5f14134c35687e32296c7a73e4ec351c487eed0e3eec32c82aa45bbf77f988e4d1402a481e24d4bc8065cc400554
MISC metadata.xml 469 BLAKE2B 95ad6838d9c1dc6460d93ab7ec3ea581071e93593368763a811d067ca0cc746f3237255e72b17cb76d0cf1b7c04bf5be886b2a599c471ac836b250471add9d05 SHA512 d3c82c941ee59d34aec93bf65bd6cd8f8941bb0a4b45dd75fea12ee7c8bfd6a2fe5bb9f69c39734bd5952f8c68e2299f906325da7eef71ded674fff8a4fca392
DIST python-socketio-5.3.0.tar.gz 44589 BLAKE2B 29a06b2744b021f388c210b874849267318660c307f23e650c08d325fe5a285b92f1cd31b68be1b09ba684b6654d430c08dff60b09d3880f04f0a474095a31da SHA512 21408c50581bc44db3303b0250fa0bece3440febff0f9fddd36cc9d476150992c0aaad15f225be4d6a5861b481a05edbf13fc46d53e00c24de41cf79fc7432ec
EBUILD python-socketio-4.6.0-r1.ebuild 690 BLAKE2B fe80eb7869ea276e5c3ca31a85d839b8ff04ee72de6f25d9bfbf7d1144485cc26e1497d388011e633aab1a356f9bd6083fe9b07f26656706f2cea5e067add8ce SHA512 ceafcba3aa073efb1ce46550819f5f4e7b0c171a33d0940ec1fd3d3522cfb6070289fe6c0c78a415b092d6e325c35f53328d93da3749ca0356004690a1894010
EBUILD python-socketio-5.3.0.ebuild 690 BLAKE2B fe80eb7869ea276e5c3ca31a85d839b8ff04ee72de6f25d9bfbf7d1144485cc26e1497d388011e633aab1a356f9bd6083fe9b07f26656706f2cea5e067add8ce SHA512 ceafcba3aa073efb1ce46550819f5f4e7b0c171a33d0940ec1fd3d3522cfb6070289fe6c0c78a415b092d6e325c35f53328d93da3749ca0356004690a1894010
MISC metadata.xml 526 BLAKE2B c6c09ebccd7c00ca546f3d916f6f9138460893c605196a525f381d51337f086d6aaa3cf6f9cbb1743e341928a71ae902f7708949a7876958a5727ee6c5ffe6e9 SHA512 da45435458d5c1dd70b3d8188efddb0ac53395118aec08b165615ab0038b791a4763a73d15d874d585514dd307146a601ef0bf6462bf627a81dfc1b5d20c7ee0

View File

@@ -7,6 +7,7 @@
</maintainer>
<upstream>
<remote-id type="pypi">python-socketio</remote-id>
<doc>https://pythonhosted.org/python-socketio/</doc>
<maintainer status="unknown">
<email>miguelgrinberg50@gmail.com</email>
<name>Miguel Grinberg</name>

View File

@@ -3,12 +3,12 @@
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Socket.IO server"
HOMEPAGE="https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
HOMEPAGE="http://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
@@ -19,7 +19,7 @@ IUSE="test"
DOCS="README.rst"
RDEPEND=""
DEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]

View File

@@ -1,14 +1,14 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..8} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Socket.IO server"
HOMEPAGE="https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
HOMEPAGE="http://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
@@ -16,8 +16,10 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
DEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]