Files
haikuports/dev-python/setuptools/setuptools_python-42.0.0.recipe
Jerome Duval 87bde9baac setuptools: bump version, enable for python 3.10
keep 42.0.0 for python 2.7
2021-12-11 19:52:28 +01:00

64 lines
1.7 KiB
Bash

SUMMARY="Download, build, install, upgrade, and uninstall Python packages"
DESCRIPTION="EasyInstall (easy_install) gives you a quick and painless way \
to install packages remotely by connecting to the cheeseshop or even other \
websites via HTTP. It is somewhat analogous to the CPAN and PEAR tools for \
Perl and PHP, respectively."
HOMEPAGE="https://pypi.python.org/pypi/setuptools"
COPYRIGHT="2006-2019 Python Packaging Authority"
LICENSE="Python"
REVISION="5"
SOURCE_URI="https://github.com/pypa/setuptools/archive/v$portVersion.tar.gz"
SOURCE_FILENAME="setuptools-$portVersion.tar.gz"
CHECKSUM_SHA256="c60bd4cbb2a963c73993951ff4ec7ef0044015c3ffd42e573f6c4e615d1c7cf8"
SOURCE_DIR="setuptools-$portVersion"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
cmd:easy_install
cmd:easy_install_2.7
"
REQUIRES="
haiku
cmd:python2.7
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:python2.7
cmd:sed
"
BUILD()
{
rm -rf build
pythonPackage=python
pythonVersion=2.7
# GENERIC: all python_setuptools-based installs need this
python=$portPackageLinksDir/cmd~python$pythonVersion/bin/python$pythonVersion
pythonVersion=$($python --version 2>&1) | sed -e 's/Python \(.*\)\..*/\1/'
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
$python bootstrap.py
$python setup.py build
}
INSTALL()
{
pythonPackage=python
pythonVersion=2.7
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
$python setup.py install \
--root=/ --prefix=$prefix --skip-build
sed -i -e "s|^#\!.*/usr/bin/env python|#!/bin/env python$pythonVersion|" $binDir/easy_install*
}