mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
67 lines
1.7 KiB
Bash
67 lines
1.7 KiB
Bash
SUMMARY="A Python development support library"
|
|
DESCRIPTION="The py lib is a Python development support library featuring the following tools and modules:
|
|
py.path: uniform local and svn path objects
|
|
py.apipkg: explicit API control and lazy-importing
|
|
py.iniconfig: easy parsing of .ini files
|
|
py.code: dynamic code generation and introspection
|
|
py.path: uniform local and svn path objects"
|
|
HOMEPAGE="https://pytest.org"
|
|
SOURCE_URI="https://pypi.python.org/packages/90/e3/e075127d39d35f09a500ebb4a90afd10f9ef0a1d28a6d09abeec0e444fdd/py-1.5.2.tar.gz#md5=279ca69c632069e1b71e11b14641ca28"
|
|
REVISION="1"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2004-2017 Holger Krekel and others."
|
|
CHECKSUM_SHA256="ca18943e28235417756316bfada6cd96b23ce60dd532642690dcfdaba988a76d"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
py=$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
|
|
|
|
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
|
|
}
|