Files
haikuports/dev-python/hatch-vcs/hatch_vcs-0.3.0.recipe
Schrijvers Luc 480e45cd2f sphinx(python), add new/updated dependency python recipes (#8775)
* sphinx(python), add new/updated dependency python recipes

* Update dev-python/babel/babel-2.12.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/babel/babel-2.12.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/babel/babel-2.12.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/pytest_mock/pytest_mock-3.10.0.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/pytest_mock/pytest_mock-3.10.0.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/sphinxcontrib-jquery/sphinxcontrib_jquery-4.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/sphinx/sphinx-7.0.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/sphinx/sphinx-7.0.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

* Update dev-python/sphinx/sphinx-7.0.1.recipe

Co-authored-by: OscarL <oscar.lesta@gmail.com>

---------

Co-authored-by: OscarL <oscar.lesta@gmail.com>
2023-06-03 21:48:24 +02:00

76 lines
1.6 KiB
Bash

SUMMARY="Hatch plugin for versioning with your preferred VCS"
DESCRIPTION="This provides a plugin for Hatch that uses your preferred version control system \
(like Git) to determine project versions."
HOMEPAGE="https://github.com/ofek/hatch-vcs"
COPYRIGHT="2022-present Ofek Lev"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/source/h/hatch-vcs/hatch_vcs-$portVersion.tar.gz"
CHECKSUM_SHA256="cec5107cfce482c67f8bc96f18bbc320c9aa0d068180e14ad317bbee5a153fee"
PATCHES="26.patch" # from upstream
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
hatchling_$pythonPackage
setuptools_scm_$pythonPackage
cmd:python$pythonVersion
\""
BUILD_REQUIRES+="
build_$pythonPackage
hatchling_$pythonPackage
installer_$pythonPackage
"
BUILD_PREREQUIRES+="
cmd:python$pythonVersion
"
done
TEST_REQUIRES="
hatch_vcs_$defaultTestVersion
cmd:git
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
}