Files
haikuports/dev-python/pyzmq/pyzmq-16.0.2.recipe
2018-09-04 15:29:08 +07:00

78 lines
2.1 KiB
Bash

SUMMARY="Python bindings for ØMQ"
DESCRIPTION="
This package contains Python bindings for ØMQ. \
ØMQ is a lightweight and fast messaging implementation."
HOMEPAGE="http://www.zeromq.org/bindings:python"
COPYRIGHT="2009-2012, Brian Granger, Min Ragan-Kelley"
LICENSE="GNU LGPL v3"
REVISION="3"
SOURCE_URI="https://files.pythonhosted.org/packages/source/p/pyzmq/pyzmq-$portVersion.tar.gz"
CHECKSUM_SHA256="0322543fff5ab6f87d11a8a099c4c07dd8a1719040084b6ce9162bcdf5c45c9d"
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
pyzmq$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libzmq$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:pkg_config$secondaryArchSuffix
"
PYTHON_PACKAGES=(python3)
PYTHON_VERSIONS=(3.6)
if [ -z "$secondaryArchSuffix" ]; then
PYTHON_PACKAGES+=(python)
PYTHON_VERSIONS+=(2.7)
fi
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
maybe_pyzmqNoSuffix=
if [ "$targetArchitecture" = "x86_gcc2" ]; then
maybe_pyzmqNoSuffix="pyzmq_$pythonPackage = $portVersion"
fi
eval "PROVIDES_${pythonPackage}=\"\
pyzmq${secondaryArchSuffix}_$pythonPackage = $portVersion\n\
$maybe_pyzmqNoSuffix\
\"; \
REQUIRES_$pythonPackage=\"\
haiku$secondaryArchSuffix\n\
lib:libzmq$secondaryArchSuffix\n\
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]}
# GENERIC: all python_setuptools-based installs need this
python=python$pythonVersion
pythonVersion=$($python --version 2>&1 | sed 's/Python //' | head -c3)
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}