Files
haikuports/dev-python/sphinxcontrib-jquery/sphinxcontrib_jquery-4.1.recipe
2023-06-04 07:39:33 +02:00

77 lines
1.7 KiB
Bash

SUMMARY="Extension to include jQuery on newer Sphinx releases"
DESCRIPTION="sphinxcontrib-jquery ensures that jQuery is always installed for use in Sphinx \
themes or extensions."
HOMEPAGE="https://github.com/sphinx-contrib/jquery/
https://pypi.org/project/sphinxcontrib-jquery/"
COPYRIGHT="2022 Adam Turner"
LICENSE="MIT
0BSD"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/source/s/sphinxcontrib-jquery/sphinxcontrib-jquery-$portVersion.tar.gz"
CHECKSUM_SHA256="1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a"
SOURCE_DIR="sphinxcontrib-jquery-$portVersion"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python39 python310)
PYTHON_VERSIONS=(3.9 3.10)
defaultTestVersion="python39"
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_$pythonPackage=\"
${portName}_$pythonPackage = $portVersion
\""
eval "REQUIRES_$pythonPackage=\"
haiku
sphinx_$pythonPackage
cmd:python$pythonVersion
\""
BUILD_REQUIRES+="
build_$pythonPackage
flit_core_$pythonPackage
installer_$pythonPackage
"
BUILD_PREREQUIRES+="
cmd:python$pythonVersion
"
done
TEST_REQUIRES="
snowballstemmer_$defaultTestVersion
sphinxcontrib_jquery_$defaultTestVersion
cmd:pytest
"
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
$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()
{
pytest -v
}