Files
haikuports/dev-python/apply_defaults/apply_defaults-0.1.6.recipe
OscarL cc0eb9713c apply_defaults: update to 0.1.6 (#8081)
Drop support for Python 3.7, add it for 3.9 and 3.10.
2023-03-23 17:12:46 +01:00

61 lines
1.5 KiB
Bash

SUMMARY="Helps pull configuration into a project"
DESCRIPTION="Makes configuration easy! Application settings come from a \
config file into your code cleanly."
HOMEPAGE="https://pypi.org/project/apply-defaults/
https://github.com/bcb/apply_defaults"
COPYRIGHT="2015 Beau Barker"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://files.pythonhosted.org/packages/42/31/7daf0d1111b29405d25b7677c8c681f6de7aff19d44b54f57ce5c789af24/apply_defaults-0.1.6.tar.gz"
CHECKSUM_SHA256="3773de3491b94c0fe44310f1a85888389cdc71e1544b343bce0d2bd6991acea5"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python39 python310)
PYTHON_VERSIONS=(3.9 3.10)
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
}