PYTHON_VERSIONS=(3.10 3.12) defaultVersion=3.10 for pythonVersion in ${PYTHON_VERSIONS[@]}; do pythonPackage=python${pythonVersion//.} eval "PACKAGE_NAME_$pythonPackage=pip_python$pythonVersion" eval "PROVIDES_${pythonPackage}=\" ${portName}_python$pythonVersion = $portVersion cmd:pip$pythonVersion \"" # Provide non-suffixed cmd only for the default Python version if [ $pythonVersion = $defaultVersion ]; then eval "PROVIDES_$pythonPackage+=\" cmd:pip = $portVersion cmd:pip3 = $portVersion \"" fi eval "REQUIRES_$pythonPackage=\" haiku setuptools_$pythonPackage cmd:python$pythonVersion \"" # Replace previous "undotted" package names (xxx_python310 -> xxx_python3.10) eval "REPLACES_$pythonPackage=\" pip_$pythonPackage \"" BUILD_REQUIRES+=" setuptools_$pythonPackage " BUILD_PREREQUIRES+=" cmd:python$pythonVersion " done