tomlkit, new dependency for toot (#10266)

This commit is contained in:
Schrijvers Luc
2024-03-29 07:51:30 +01:00
committed by GitHub
parent a0e4d3baa5
commit ce1f924bc0

View File

@@ -0,0 +1,60 @@
SUMMARY="Style-preserving TOML library for Python"
DESCRIPTION="TOML Kit is a 1.0.0-compliant TOML library.
It includes a parser that preserves all comments, indentations, whitespace and internal element \
ordering, and makes them accessible and editable via an intuitive API.
You can also create new TOML documents from scratch using the provided helpers.
Part of the implementation has been adapted, improved and fixed from Molten."
HOMEPAGE="https://github.com/python-poetry/tomlkit"
COPYRIGHT="2018 Sébastien Eustace"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/python-poetry/tomlkit/releases/download/$portVersion/tomlkit-$portVersion-py3-none-any.whl#noarchive"
CHECKSUM_SHA256="5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python310)
PYTHON_VERSIONS=(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=\"
haiku
cmd:python$pythonVersion
\""
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
installer_$pythonPackage
cmd:python$pythonVersion
"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
$python -m installer -p $prefix $portName-$portVersion-py3-none-any.whl
packageEntries ${PYTHON_PACKAGES[i]} \
$prefix/lib/python*
done
}