Add gertty and more of its python dependencies.

Unfortunately it does not manage to connect to Haiku server. Works ok
with OpenOCD's one.
This commit is contained in:
Adrien Destugues
2018-08-12 14:24:04 +02:00
parent 6b02625aaa
commit 6931b10b8e
9 changed files with 769 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
SUMMARY="Python Git Library"
DESCRIPTION="Python library used to interact with Git repositories."
HOMEPAGE="https://pypi.org/project/GitPython/"
COPYRIGHT="2010-2018 Sebastian Thiel, Michael Trier"
LICENSE="BSD (3-clause)"
REVISION="1"
SOURCE_URI="https://files.pythonhosted.org/packages/4d/e8/98e06d3bc954e3c5b34e2a579ddf26255e762d21eb24fede458eff654c51/GitPython-2.1.11.tar.gz"
SOURCE_DIR="GitPython-$portVersion"
CHECKSUM_SHA256="8237dc5bfd6f1366abeee5624111b9d6879393d84745a507de0fda86043b65a8"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3)
PYTHON_VERSIONS=(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
}