adjust recipes to use python 3.6, bump revisions.

This commit is contained in:
Jerome Duval
2017-03-27 23:08:42 +02:00
parent 7a7ebe6cae
commit 7204e0f284
10 changed files with 69 additions and 62 deletions

View File

@@ -6,46 +6,47 @@ Perl and PHP, respectively."
HOMEPAGE="https://pypi.python.org/pypi/setuptools"
COPYRIGHT="2006-2014 Python Packaging Authority"
LICENSE="Python"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/pypa/setuptools/archive/v$portVersion.tar.gz"
SOURCE_FILENAME="setuptools-$portVersion.tar.gz"
CHECKSUM_SHA256="d3b2c63a5cb6816ace0883bc3f6aca9e7890c61d80ac0d608a183f85825a7cc0"
SOURCE_DIR="setuptools-$portVersion"
PYTHON_VERSION="3.6"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
python3_setuptools = $portVersion
cmd:easy_install
cmd:easy_install_3.5
cmd:easy_install_$PYTHON_VERSION
"
REQUIRES="
haiku
cmd:python3
cmd:python$PYTHON_VERSION
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:python3
cmd:python$PYTHON_VERSION
cmd:sed
"
BUILD()
{
$portPackageLinksDir/cmd~python3/bin/python3 bootstrap.py
$portPackageLinksDir/cmd~python3/bin/python3 setup.py build
$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3 bootstrap.py
$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3 setup.py build
}
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
pythonVersion=$(python3 --version 2>&1 | sed 's/Python //' | head -c3)
pythonVersion=$($portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3 --version 2>&1 | sed 's/Python //' | head -c3)
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
$portPackageLinksDir/cmd~python3/bin/python3 setup.py install \
$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3 setup.py install \
--prefix=$prefix --skip-build
}