mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
mako: update to version 1.3.5. (#11127)
Cleaned up dependencies (pygments is optional, if some recipe using mako needs that mako extension, it should require it explicitly).
This commit is contained in:
@@ -1,74 +0,0 @@
|
||||
SUMMARY="Hyperfast and lightweight templating for the Python platform"
|
||||
DESCRIPTION="Mako is a template library written in Python. It provides a \
|
||||
familiar, non-XML syntax which compiles into Python modules for maximum \
|
||||
performance. Mako's syntax and API borrows from the best ideas of many \
|
||||
others, including Django and Jinja2 templates, Cheetah, Myghty, and Genshi.
|
||||
|
||||
Conceptually, Mako is an embedded Python (i.e. Python Server Page) language, \
|
||||
which refines the familiar ideas of componentized layout and inheritance to \
|
||||
produce one of the most straightforward and flexible models available, while \
|
||||
also maintaining close ties to Python calling and scoping semantics."
|
||||
HOMEPAGE="http://www.makotemplates.org"
|
||||
COPYRIGHT="2006-2015 the Mako authors and contributors"
|
||||
LICENSE="MIT"
|
||||
REVISION="7"
|
||||
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="3724869b363ba630a272a5f89f68c070352137b8fd1757650017b7e06fda163f"
|
||||
SOURCE_DIR="Mako-$portVersion"
|
||||
|
||||
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\n\
|
||||
cmd:mako_render$pythonVersion\n\
|
||||
\"; \
|
||||
REQUIRES_$pythonPackage=\"\
|
||||
haiku\n\
|
||||
importlib_metadata_$pythonPackage
|
||||
pygments_$pythonPackage
|
||||
markupsafe_$pythonPackage
|
||||
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
|
||||
if [ $pythonPackage != python ]; then
|
||||
mv $binDir/mako-render $binDir/mako-render$pythonVersion
|
||||
fi
|
||||
packageEntries $pythonPackage \
|
||||
$prefix/lib/python* \
|
||||
$binDir
|
||||
done
|
||||
}
|
||||
87
dev-python/mako/mako-1.3.5.recipe
Normal file
87
dev-python/mako/mako-1.3.5.recipe
Normal file
@@ -0,0 +1,87 @@
|
||||
SUMMARY="Hyperfast and lightweight templating for the Python platform"
|
||||
DESCRIPTION="Mako is a template library written in Python. It provides a \
|
||||
familiar, non-XML syntax which compiles into Python modules for maximum \
|
||||
performance. Mako's syntax and API borrows from the best ideas of many \
|
||||
others, including Django and Jinja2 templates, Cheetah, Myghty, and Genshi.
|
||||
|
||||
Conceptually, Mako is an embedded Python (i.e. Python Server Page) language, \
|
||||
which refines the familiar ideas of componentized layout and inheritance to \
|
||||
produce one of the most straightforward and flexible models available, while \
|
||||
also maintaining close ties to Python calling and scoping semantics."
|
||||
HOMEPAGE="http://www.makotemplates.org"
|
||||
COPYRIGHT="2006-2024 the Mako authors and contributors"
|
||||
LICENSE="MIT"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc"
|
||||
SOURCE_DIR="Mako-$portVersion"
|
||||
|
||||
ARCHITECTURES="any"
|
||||
|
||||
PROVIDES="
|
||||
$portName = $portVersion
|
||||
"
|
||||
REQUIRES="
|
||||
haiku
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku_devel
|
||||
"
|
||||
|
||||
PYTHON_VERSIONS=(3.10)
|
||||
defaultVersion=3.10
|
||||
|
||||
for i in "${!PYTHON_VERSIONS[@]}"; do
|
||||
pythonVersion=${PYTHON_VERSIONS[$i]}
|
||||
pythonPackage=python${pythonVersion//.}
|
||||
|
||||
eval "PROVIDES_${pythonPackage}=\"
|
||||
${portName}_$pythonPackage = $portVersion
|
||||
cmd:mako_render$pythonVersion
|
||||
\""
|
||||
|
||||
if [ $pythonVersion = $defaultVersion ]; then
|
||||
eval "PROVIDES_${pythonPackage}+=\"
|
||||
cmd:mako_render = $portVersion
|
||||
\""
|
||||
fi
|
||||
|
||||
eval "REQUIRES_$pythonPackage=\"
|
||||
haiku
|
||||
markupsafe_$pythonPackage
|
||||
cmd:python$pythonVersion
|
||||
\""
|
||||
BUILD_REQUIRES+="
|
||||
build_$pythonPackage
|
||||
installer_$pythonPackage
|
||||
setuptools_$pythonPackage
|
||||
wheel_$pythonPackage
|
||||
"
|
||||
BUILD_PREREQUIRES+="
|
||||
cmd:python$pythonVersion
|
||||
"
|
||||
done
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
for i in "${!PYTHON_VERSIONS[@]}"; do
|
||||
pythonVersion=${PYTHON_VERSIONS[$i]}
|
||||
pythonPackage=python${pythonVersion//.}
|
||||
|
||||
python=python$pythonVersion
|
||||
|
||||
$python -m build --wheel --skip-dependency-check --no-isolation
|
||||
$python -m installer -p $prefix dist/*.whl
|
||||
|
||||
# Version suffix the script, and provide suffixless version for the default one.
|
||||
mv $binDir/mako-render $binDir/mako-render$pythonVersion
|
||||
if [ $pythonVersion = $defaultVersion ]; then
|
||||
ln -sr $binDir/mako-render$pythonVersion $binDir/mako-render
|
||||
fi
|
||||
|
||||
packageEntries $pythonPackage \
|
||||
$prefix/lib/python* \
|
||||
$binDir
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user