Add some Python packages.

Needed by webkit unit tests
This commit is contained in:
Adrien Destugues
2021-03-28 21:29:27 +02:00
parent 736a8bed17
commit 3780b7ecfb
2 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
SUMMARY="Reference implementation of PEP 427 python packaging"
DESCRIPTION="Setuptools extension for building wheels, and command line tool \
for working with wheel files."
HOMEPAGE="https://pypi.org/project/wheel"
COPYRIGHT="2012-2020 Daniel Holth, Alex Grönholm"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/pypa/wheel/archive/$portVersion.tar.gz"
SOURCE_FILENAME="wheel-$portVersion.tar.gz"
CHECKSUM_SHA256="c31e70355935f1d47bf0d898661a1e9dd47966d935c0a785dbe5b41eedf6802a"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:sed
"
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]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\n\
cmd:wheel_$pythonVersion\n\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\n\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
mv $binDir/wheel $binDir/wheel_$pythonVersion
packageEntries $pythonPackage \
$prefix/lib/python* \
$binDir
done
}

View File

@@ -0,0 +1,62 @@
SUMMARY="Cross-platform cross-python shutil.which"
DESCRIPTION="Implements 'which' (search for executables in the path) in a \
portable way."
HOMEPAGE="https://pypi.org/project/whichcraft"
COPYRIGHT="2015-2019 Daniel Roy Greenfeld"
LICENSE="BSD (3-clause)"
REVISION="1"
SOURCE_URI="https://github.com/cookiecutter/whichcraft/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="bfa077578261e8bce72ebd44025a2ac196f943123e551589bd5f1c25af9f0085"
SOURCE_FILENAME="whichcraft-$portVersion.tar.gz"
SOURCE_DIR="whichcraft-$portVersion"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
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]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}