mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 13:50:08 +02:00
Delete old "setuptools" (Python) recipes, create new recipe (that actually works).
That hack is pretty nasty, I know. But I couldn't find a better solution that worked, so it'll have to stay. Confirmed this works by writing a GYP recipe that uses it, that is coming in the next commit.
This commit is contained in:
52
dev-python/python_setuptools/python_setuptools-5.3.recipe
Normal file
52
dev-python/python_setuptools/python_setuptools-5.3.recipe
Normal file
@@ -0,0 +1,52 @@
|
||||
SUMMARY="Easily 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"
|
||||
SRC_URI="https://pypi.python.org/packages/source/s/setuptools/setuptools-5.3.zip"
|
||||
CHECKSUM_SHA256="238142293c36d2b56c83df1886b4c1fc4af77d0c203c68b8f4e57d8995babfe5"
|
||||
SOURCE_DIR="setuptools-$portVersion"
|
||||
LICENSE="Python"
|
||||
COPYRIGHT="2006-2014 Python Packaging Authority"
|
||||
REVISION="1"
|
||||
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
||||
|
||||
PROVIDES="
|
||||
python_setuptools = $portVersion
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku >= $haikuVersion
|
||||
cmd:python
|
||||
"
|
||||
|
||||
BUILD_REQUIRES=""
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
haiku_devel >= $haikuVersion
|
||||
cmd:python
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
$portPackageLinksDir/cmd~python/bin/python setup.py build
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
# GENERIC: all python_setuptools-based installs need this
|
||||
pythonVersion=$(python --version 2>&1 | sed 's/Python //' | head -c3)
|
||||
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
|
||||
export PYTHONPATH=$installLocation:$PYTHONPATH
|
||||
mkdir -p $installLocation
|
||||
|
||||
$portPackageLinksDir/cmd~python/bin/python setup.py install \
|
||||
--prefix=$prefix
|
||||
|
||||
# easy_install cannot tolerate not being installed alongside setuptools,
|
||||
# so just delete it.
|
||||
rm $prefix/bin/easy_install
|
||||
rm $prefix/bin/easy_install-2.6
|
||||
}
|
||||
Reference in New Issue
Block a user