From 0c23734c2de028006a9379c454c7967301e564ce Mon Sep 17 00:00:00 2001 From: "Rick Farina (Zero_Chaos)" Date: Wed, 3 Apr 2024 21:41:18 -0400 Subject: [PATCH] python-socketio: pkgcheck fixes --- dev-python/python-socketio/metadata.xml | 17 +++++++++++++++++ ...0.ebuild => python-socketio-5.1.0-r1.ebuild} | 13 +++++++------ 2 files changed, 24 insertions(+), 6 deletions(-) create mode 100644 dev-python/python-socketio/metadata.xml rename dev-python/python-socketio/{python-socketio-5.1.0.ebuild => python-socketio-5.1.0-r1.ebuild} (77%) diff --git a/dev-python/python-socketio/metadata.xml b/dev-python/python-socketio/metadata.xml new file mode 100644 index 000000000..c98da0675 --- /dev/null +++ b/dev-python/python-socketio/metadata.xml @@ -0,0 +1,17 @@ + + + + + noone@pentoo.org + No one + + + + python-socketio + miguelgrinberg/python-socketio + + + Allow client to work async + Support client + + diff --git a/dev-python/python-socketio/python-socketio-5.1.0.ebuild b/dev-python/python-socketio/python-socketio-5.1.0-r1.ebuild similarity index 77% rename from dev-python/python-socketio/python-socketio-5.1.0.ebuild rename to dev-python/python-socketio/python-socketio-5.1.0-r1.ebuild index 836116501..03a7e655f 100644 --- a/dev-python/python-socketio/python-socketio-5.1.0.ebuild +++ b/dev-python/python-socketio/python-socketio-5.1.0-r1.ebuild @@ -1,17 +1,18 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit distutils-r1 +PYPI_NO_NORMALIZE=1 +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi DESCRIPTION="Python implementation of the Socket.IO realtime server." HOMEPAGE=" https://python-socketio.readthedocs.org/ https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" @@ -22,9 +23,9 @@ IUSE="client asyncio_client" RDEPEND="dev-python/bidict[${PYTHON_USEDEP}] >=dev-python/python-engineio-4.0.0[${PYTHON_USEDEP}] client? ( dev-python/requests[${PYTHON_USEDEP}] - dev-python/websocket-client[${PYTHON_USEDEP}] ) + dev-python/websocket-client[${PYTHON_USEDEP}] ) asyncio_client? ( dev-python/aiohttp[${PYTHON_USEDEP}] - dev-python/websockets[${PYTHON_USEDEP}] )" + dev-python/websockets[${PYTHON_USEDEP}] )" DEPEND="${RDEPEND}" REQUIRED_USE="${PYTHON_REQUIRED_USE}"