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

@@ -1,58 +0,0 @@
SUMMARY="A generic syntax highlighter"
DESCRIPTION="It is a generic syntax highlighter for general use in all kinds \
of software such as forum systems, wikis or other applications that need to \
prettify source code. Highlights are:
* a wide range of common languages and markup formats is supported
* special attention is paid to details that increase highlighting quality
* support for new languages and formats are added easily; most languages use a \
simple regex-based lexing mechanism
* a number of output formats is available, among them HTML, RTF, LaTeX and \
ANSI sequences
* it is usable as a command-line tool and as a library
* ... and it highlights even Brainf*ck!"
HOMEPAGE="http://pygments.org/"
COPYRIGHT="2006-2013 by the Pygments team"
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/source/P/Pygments/Pygments-$portVersion.tar.gz"
CHECKSUM_SHA256="88e4c8a91b2af5962bfa5ea2447ec6dd357018e86e94c7d14bd8cacbc5b55d81"
SOURCE_DIR="Pygments-$portVersion"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
pygments$secondaryArchSuffix = $portVersion
cmd:pygmentize$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
cmd:python2$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
python_setuptools
"
BUILD_PREREQUIRES="
cmd:python2$secondaryArchSuffix
"
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 \
--single-version-externally-managed \
--root=/ --prefix=$prefix
}

View File

@@ -0,0 +1,81 @@
SUMMARY="A generic syntax highlighter"
DESCRIPTION="It is a generic syntax highlighter for general use in all kinds \
of software such as forum systems, wikis or other applications that need to \
prettify source code. Highlights are:
* a wide range of common languages and markup formats is supported
* special attention is paid to details that increase highlighting quality
* support for new languages and formats are added easily; most languages use a \
simple regex-based lexing mechanism
* a number of output formats is available, among them HTML, RTF, LaTeX and \
ANSI sequences
* it is usable as a command-line tool and as a library
* ... and it highlights even Brainf*ck!"
HOMEPAGE="http://pygments.org/"
COPYRIGHT="2006-2013 by the Pygments team"
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/71/2a/2e4e77803a8bd6408a2903340ac498cb0a2181811af7c9ec92cb70b0308a/Pygments-$portVersion.tar.gz"
CHECKSUM_SHA256="dbae1046def0efb574852fab9e90209b23f556367b5a320c0bcb871c77c3e8cc"
SOURCE_DIR="Pygments-$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:pygmentize = $portVersion
"
PROVIDES_python3="$PROVIDES_python3
cmd:pygmentize3 = $portVersion
"
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/pygmentize $binDir/pygmentize3
fi
packageEntries $pythonPackage \
$prefix/lib/python* \
$binDir
done
}