gitpython, bump version (#9679)

This commit is contained in:
Schrijvers Luc
2023-10-25 06:05:59 +00:00
committed by GitHub
parent 08b3e53a0e
commit c4ebc099a9

View File

@@ -3,10 +3,10 @@ DESCRIPTION="Python library used to interact with Git repositories."
HOMEPAGE="https://pypi.org/project/GitPython/"
COPYRIGHT="2010-2018 Sebastian Thiel, Michael Trier"
LICENSE="BSD (3-clause)"
REVISION="2"
REVISION="1"
SOURCE_URI="https://pypi.org/packages/source/G/GitPython/GitPython-$portVersion.tar.gz"
SOURCE_DIR="GitPython-$portVersion"
CHECKSUM_SHA256="1c885ce809e8ba2d88a29befeb385fcea06338d3640712b59ca623c220bb5704"
CHECKSUM_SHA256="22b126e9ffb671fdd0c129796343a02bf67bf2994b35449ffc9321aa755e18a4"
ARCHITECTURES="any"
@@ -21,23 +21,29 @@ BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python39 python310)
PYTHON_VERSIONS=(3.9 3.10)
TEST_REQUIRES="
cmd:pytest
"
PYTHON_PACKAGES=(python39 python310 python312)
PYTHON_VERSIONS=(3.9 3.10 3.12)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
gitdb_$pythonPackage\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"
${portName}_$pythonPackage = $portVersion
\""
eval "REQUIRES_$pythonPackage=\"
haiku
gitdb_$pythonPackage
cmd:python$pythonVersion
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage
"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion
"
done
INSTALL()
@@ -59,3 +65,7 @@ INSTALL()
done
}
TEST()
{
pytest -v
}