dev-python/gevent: QA fixes

Bump copyright
Fix homepage permanent redirect
Fix VariableOrderCheck
Remove redundant test USE flag from IUSE
Simplify dependency string

Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
This commit is contained in:
Lucio Sauer
2024-04-28 22:48:25 +02:00
parent c46ae6dc62
commit 8194df24c2

View File

@@ -1,27 +1,31 @@
# Copyright 2021-2023 Gentoo Authors
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=standalone
inherit distutils-r1 pypi
PYTHON_REQ_USE="ssl(+),threads(+)"
DESCRIPTION="Coroutine-based network library"
HOMEPAGE="https://www.gevent.org/ https://pypi.org/project/gevent"
IUSE="monitor recommended test"
DEPENDENCIES=">=dev-python/greenlet-2.0.0[${PYTHON_USEDEP}]
>=dev-python/greenlet-3.0[${PYTHON_USEDEP}]
dev-python/zope-event[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
monitor? ( >=dev-python/psutil-5.7.0[${PYTHON_USEDEP}] )
recommended? ( >=dev-python/cffi-1.12.2[${PYTHON_USEDEP}] )
recommended? ( >=dev-python/psutil-5.7.0[${PYTHON_USEDEP}] )
"
BDEPEND="${DEPENDENCIES}"
RDEPEND="${DEPENDENCIES}"
inherit distutils-r1 pypi
DESCRIPTION="Coroutine-based network library"
HOMEPAGE="https://www.gevent.org/ https://pypi.org/project/gevent/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="monitor recommended"
RDEPEND="
>=dev-python/greenlet-3.0[${PYTHON_USEDEP}]
dev-python/zope-event[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
monitor? ( >=dev-python/psutil-5.7.0[${PYTHON_USEDEP}] )
recommended? (
>=dev-python/cffi-1.12.2[${PYTHON_USEDEP}]
>=dev-python/psutil-5.7.0[${PYTHON_USEDEP}]
)
"
BDEPEND="${RDEPEND}"