make, bump version, drop python2.7, add python3.10 (#7195)

This commit is contained in:
Schrijvers Luc
2022-09-13 13:35:51 +02:00
committed by GitHub
parent ac20c4fdfe
commit c2a3639ffb

View File

@@ -11,7 +11,7 @@ also maintaining close ties to Python calling and scoping semantics."
HOMEPAGE="http://www.makotemplates.org"
COPYRIGHT="2006-2015 the Mako authors and contributors"
LICENSE="MIT"
REVISION="2"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
CHECKSUM_SHA256="17831f0b7087c313c0ffae2bcbbd3c1d5ba9eeac9c38f2eb7b50e8c99fe9d5ab"
SOURCE_DIR="Mako-$portVersion"
@@ -29,13 +29,14 @@ BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python python3 python38 python39)
PYTHON_VERSIONS=(2.7 3.7 3.8 3.9)
PYTHON_PACKAGES=(python3 python38 python39 python310)
PYTHON_VERSIONS=(3.7 3.8 3.9 3.10)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
${portName}_$pythonPackage = $portVersion\n\
cmd:mako_render$pythonVersion\n\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
@@ -47,19 +48,6 @@ BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
PROVIDES_python="$PROVIDES_python
cmd:mako_render
"
PROVIDES_python3="$PROVIDES_python3
cmd:mako_render3.7
"
PROVIDES_python38="$PROVIDES_python38
cmd:mako_render3.8
"
PROVIDES_python39="$PROVIDES_python39
cmd:mako_render3.9
"
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do