idna: enable 3.8, 3.9, remove 3.6

This commit is contained in:
Jerome Duval
2021-01-26 21:28:16 +01:00
parent d9bc649904
commit 5dc469fff9

View File

@@ -4,7 +4,7 @@ DESCRIPTION="Support for the Internationalised Domain Names in Applications \
HOMEPAGE="https://pypi.python.org/pypi/idna"
COPYRIGHT="2013-2019 Kim Davie"
LICENSE="BSD (3-clause)"
REVISION="1"
REVISION="2"
SOURCE_URI="https://pypi.io/packages/source/i/idna/idna-$portVersion.tar.gz"
CHECKSUM_SHA256="c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407"
@@ -21,16 +21,18 @@ BUILD_REQUIRES="
haiku_devel
setuptools_python
setuptools_python3
setuptools_python36
setuptools_python38
setuptools_python39
"
BUILD_PREREQUIRES="
cmd:python
cmd:python3
cmd:python3.6
cmd:python3.8
cmd:python3.9
"
PYTHON_PACKAGES=(python python36 python3)
PYTHON_VERSIONS=(2.7 3.6 3.7)
PYTHON_PACKAGES=(python python3 python38 python39)
PYTHON_VERSIONS=(2.7 3.7 3.8 3.9)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}