Files
haikuports/dev-python/dateutil/dateutil-2.8.2.recipe
2025-08-04 13:11:01 +00:00

66 lines
1.4 KiB
Bash

SUMMARY="Extensions to the standard Python datetime module"
DESCRIPTION="The dateutil module provides powerful extensions to the standard \
datetime module, available in Python 2.3+."
HOMEPAGE="https://github.com/dateutil/dateutil/"
COPYRIGHT="2003-2010 Gustavo Niemeyer"
LICENSE="BSD (3-clause)"
REVISION="3"
SOURCE_URI="https://github.com/dateutil/dateutil/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="46e7c1fd13287cd72b428c9cfe7ced53cf854a8a6c05277ba3047e8f86d57b16"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_VERSIONS=(3.10)
for pythonVersion in ${PYTHON_VERSIONS[@]}; do
pythonPackage=python${pythonVersion//.}
eval "PROVIDES_$pythonPackage=\"
${portName}_$pythonPackage = $portVersion
\""
eval "REQUIRES_$pythonPackage=\"
haiku
six_$pythonPackage
cmd:python$pythonVersion
\""
BUILD_REQUIRES="$BUILD_REQUIRES
build_$pythonPackage
installer_$pythonPackage
setuptools_scm_$pythonPackage
wheel_$pythonPackage
"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion
"
done
INSTALL()
{
export SETUPTOOLS_SCM_PRETEND_VERSION=$portVersion
for pythonVersion in ${PYTHON_VERSIONS[@]}; do
pythonPackage=python${pythonVersion//.}
python=python$pythonVersion
$python -m build --wheel --skip-dependency-check --no-isolation
$python -m installer -p $prefix dist/*.whl
packageEntries $pythonPackage \
$prefix/lib/python*
done
}