mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 13:20:08 +02:00
removed the `export SETUPTOOLS_USE_DISTUTILS=local`, as that's the default behavior (again) since 60.0.0.
67 lines
1.7 KiB
Bash
67 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-2013 Python Packaging Authority"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://files.pythonhosted.org/packages/source/s/setuptools/setuptools-$portVersion.tar.gz"
|
|
SOURCE_FILENAME="setuptools-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87"
|
|
PATCHES="setuptools-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
$portName = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
"
|
|
|
|
PYTHON_PACKAGES=(python39 python310 python311 python312)
|
|
PYTHON_VERSIONS=(3.9 3.10 3.11 3.12)
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
eval "PROVIDES_${pythonPackage}=\"
|
|
${portName}_$pythonPackage = $portVersion
|
|
\""
|
|
eval "REQUIRES_$pythonPackage=\"
|
|
haiku
|
|
cmd:python$pythonVersion
|
|
\""
|
|
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
|
|
}
|