mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
html5lib: add recipe for version 0.999999999.
needed by mechanize.
This commit is contained in:
65
dev-python/html5lib/html5lib-0.999999999.recipe
Normal file
65
dev-python/html5lib/html5lib-0.999999999.recipe
Normal file
@@ -0,0 +1,65 @@
|
||||
SUMMARY=" Python HTML parser/tokenizer based on the WHATWG HTML5 spec"
|
||||
DESCRIPTION="html5lib is a pure-python library for parsing HTML. It is \
|
||||
designed to conform to the WHATWG HTML specification, as is implemented by \
|
||||
all major web browsers."
|
||||
HOMEPAGE="http://github.com/html5lib"
|
||||
COPYRIGHT="2006-2013 James Graham and other contributors"
|
||||
LICENSE="MIT"
|
||||
REVISION="1"
|
||||
SOURCE_URI="http://github.com/html5lib/html5lib-python/archive/$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="05c0f1ba235776060ded5093c365483d50deacdd7cabc57b6996d6e2480a4626"
|
||||
SOURCE_DIR="html5lib-python-$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\
|
||||
six_$pythonPackage\n\
|
||||
webencodings_$pythonPackage\n\
|
||||
cmd:python$pythonVersion\
|
||||
\""
|
||||
BUILD_REQUIRES="$BUILD_REQUIRES
|
||||
setuptools_$pythonPackage
|
||||
webencodings_$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
|
||||
|
||||
packageEntries $pythonPackage \
|
||||
$prefix/lib/python*
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user