pytest: fix versioning, cleanup dependencies. (#8005)

Only list as dependencies those packages that are listed
in pytest's setup.cfg.
This commit is contained in:
OscarL
2023-03-20 05:08:01 -03:00
committed by GitHub
parent f4dd69d237
commit d9f746a859

View File

@@ -3,7 +3,7 @@ DESCRIPTION="The pytest framework makes it easy to write small tests, yet scales
HOMEPAGE="https://pytest.org"
COPYRIGHT="2010-2020 Holger Krekel and others."
LICENSE="MIT"
REVISION="1"
REVISION="2"
SOURCE_URI="https://pypi.io/packages/source/p/pytest/pytest-$portVersion.tar.gz"
CHECKSUM_SHA256="4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39"
@@ -33,31 +33,27 @@ eval "PROVIDES_${pythonPackage}=\"\
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\n\
atomicwrites_$pythonPackage\n\
attrs_$pythonPackage\n\
iniconfig_$pythonPackage\n\
importlib_metadata_$pythonPackage\n\
pluggy_$pythonPackage\n\
more_itertools_$pythonPackage\n\
iniconfig_$pythonPackage\n\
packaging_$pythonPackage\n\
pyparsing_$pythonPackage\n\
toml_$pythonPackage\n\
pluggy_$pythonPackage\n\
py_$pythonPackage\n\
tomli_$pythonPackage\n\
zipp_$pythonPackage\n\
py_$pythonPackage\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_scm_$pythonPackage
"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:git
cmd:python$pythonVersion
pip_$pythonPackage
wheel_$pythonPackage\n\
"
done
INSTALL()
{
export SETUPTOOLS_SCM_PRETEND_VERSION=$portVersion
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}