wrapt: switch to x86_64

enable 3.8, 3.9, remove 3.6
This commit is contained in:
Jerome Duval
2021-02-02 17:13:49 +01:00
parent d851e0a1eb
commit 8f4e6afc21

View File

@@ -5,12 +5,12 @@ function wrappers and decorator functions."
HOMEPAGE="https://github.com/GrahamDumpleton"
COPYRIGHT="2013-2019, Graham Dumpleton"
LICENSE="BSD (2-clause)"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/GrahamDumpleton/$portName/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="19f2043e05b76ce9b68971b387bfd8eed50c2ee1c9c0bd230edc422fec753917"
SOURCE_DIR="$portVersionedName"
ARCHITECTURES="any"
ARCHITECTURES="x86_64"
PROVIDES="
$portName = $portVersion
@@ -22,9 +22,12 @@ REQUIRES="
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
gcc
"
PYTHON_PACKAGES=(python36 python3)
PYTHON_VERSIONS=(3.6 3.7)
PYTHON_PACKAGES=(python3 python38 python39)
PYTHON_VERSIONS=(3.7 3.8 3.9)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}