dev-python: merge most python2 and python3 recipes.

* adjust recipes depending on these, ie python_dateutil=>dateutil_python.
* switch architectures to any for relevant python recipes.
* bump versions for retext, argh, beautifulsoup, cssselect, dateutil,
docutils, fonttools, html2text, httplib2, lxml, mechanize, mock, paramiko,
pillow, pip, pygments, requests, twisted, urllib3, zope_interface.
This commit is contained in:
Jerome Duval
2017-04-16 23:10:32 +02:00
parent 5ce1bcd42d
commit 282a03c8e8
89 changed files with 2389 additions and 1913 deletions

View File

@@ -0,0 +1,83 @@
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="1"
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
CHECKSUM_SHA256="7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c"
SOURCE_DIR="Mako-$portVersion"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python python3)
PYTHON_VERSIONS=(2.7 3.6)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
PROVIDES_python="$PROVIDES_python
cmd:mako_render
"
REPLACES_python="
python_mako
"
PROVIDES_python3="$PROVIDES_python3
cmd:mako_render3
"
REPLACES_python3="
python3_mako
"
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-render3
fi
packageEntries $pythonPackage \
$prefix/lib/python* \
$binDir
done
}

View File

@@ -1,56 +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="2"
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
CHECKSUM_SHA256="7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c"
SOURCE_DIR="Mako-$portVersion"
PYTHON_VERSION="3.6"
ARCHITECTURES="arm ppc x86 x86_gcc2 x86_64"
PROVIDES="
python3_mako = $portVersion
cmd:mako_render
"
REQUIRES="
haiku
cmd:python$PYTHON_VERSION
"
BUILD_REQUIRES="
python3_setuptools
"
BUILD_PREREQUIRES="
haiku_devel
cmd:python$PYTHON_VERSION
cmd:gcc
"
BUILD()
{
$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3 setup.py build
}
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
python=$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3
pythonVersion=$($python --version 2>&1 | sed 's/Python //' | head -c3)
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
$python setup.py install \
--prefix=$prefix
}

View File

@@ -1,55 +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="1"
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
CHECKSUM_SHA256="7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c"
SOURCE_DIR="Mako-$portVersion"
ARCHITECTURES="arm ppc x86 x86_gcc2 x86_64"
PROVIDES="
python_mako = $portVersion
cmd:mako_render
"
REQUIRES="
haiku
cmd:python2
"
BUILD_REQUIRES="
python_setuptools
"
BUILD_PREREQUIRES="
haiku_devel
cmd:python2
cmd:gcc
"
BUILD()
{
$portPackageLinksDir/cmd~python2/bin/python2 setup.py build
}
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
python=$portPackageLinksDir/cmd~python2/bin/python2
pythonVersion=$($python --version 2>&1 | sed 's/Python //' | head -c3)
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
$python setup.py install \
--prefix=$prefix
}