mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 13:20:08 +02:00
84 lines
2.0 KiB
Bash
84 lines
2.0 KiB
Bash
SUMMARY="Get the currently executing AST node of a frame, and other information"
|
|
DESCRIPTION="This mini-package lets you get information about what a frame is currently doing, \
|
|
particularly the AST node being executed"
|
|
HOMEPAGE="https://github.com/alexmojaki/executing"
|
|
COPYRIGHT="2019 Alex Hall"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://pypi.io/packages/source/e/$portName/$portName-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
$portName = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
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
|
|
\""
|
|
eval "REQUIRES_$pythonPackage=\"
|
|
cmd:python$pythonVersion
|
|
\""
|
|
BUILD_REQUIRES+="
|
|
build_$pythonPackage
|
|
installer_$pythonPackage
|
|
setuptools_$pythonPackage
|
|
wheel_$pythonPackage
|
|
"
|
|
BUILD_PREREQUIRES+="
|
|
cmd:python$pythonVersion
|
|
"
|
|
TEST_REQUIRES+="
|
|
asttokens_$pythonPackage
|
|
pytest_$pythonPackage
|
|
# To download the "littleutils" missing dependency:
|
|
cmd:wget
|
|
"
|
|
done
|
|
|
|
|
|
INSTALL()
|
|
{
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
python=python${PYTHON_VERSIONS[$i]}
|
|
|
|
$python -m build --wheel --skip-dependency-check --no-isolation
|
|
$python -m installer -p $prefix dist/*.whl
|
|
|
|
packageEntries ${PYTHON_PACKAGES[i]} \
|
|
$prefix/lib/python*
|
|
done
|
|
}
|
|
|
|
|
|
TEST()
|
|
{
|
|
# Test require a "littleutils" package that it is not notable enough as to warrant
|
|
# its own recipe/package, IMO, so just download it for now.
|
|
if [ ! -f "littleutils/__init__.py" ]; then
|
|
mkdir littleutils
|
|
wget -c \
|
|
https://raw.githubusercontent.com/alexmojaki/littleutils/v0.2.2/littleutils/__init__.py \
|
|
-O littleutils/__init__.py
|
|
fi
|
|
|
|
for i in "${!PYTHON_VERSIONS[@]}"; do
|
|
python=python${PYTHON_VERSIONS[$i]}
|
|
$python -m pytest
|
|
done
|
|
|
|
# Current results:
|
|
# Py 3.9: 44 passed, 15 skipped
|
|
# Py 3.10: 44 passed, 15 skipped, 1 warning
|
|
}
|