Files
haikuports/dev-python/whichcraft/whichcraft-0.6.1.recipe
OscarL 600c2f41ca whichcraft: cleanup, support only Python 3.10 for now. (#9447)
Nothing uses this on-tree. Seems this is (or was) needed by webkit's
unit tests, but `haikuwebkit` already has moved to Python 3.10.
2023-09-19 06:30:17 +02:00

67 lines
1.5 KiB
Bash

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="4"
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=(python310)
PYTHON_VERSIONS=(3.10)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"
${portName}_$pythonPackage = $portVersion
\""
eval "REQUIRES_$pythonPackage=\"
haiku
cmd:python$pythonVersion
\""
BUILD_REQUIRES+="
setuptools_$pythonPackage
"
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
}