Files
haikuports/dev-python/setuptools/python3_setuptools-17.0.recipe
Humdinger b82c8008b6 De-Lint recipes.
*	netpbm
	Re-arranged copright madness.

*	pygame
	Re-ordering blocks.
	Re-formatted patch properly.
	Added formerly undeclared patch. Doesn't build with or without.

*	python3_mako, python_mako
	Removed "." from SUMMARY.
	Re-ordering blocks.

*	python3_setuptools, python_setuptools
	Removed "." from SUMMARY.
	Re-ordering blocks.

*	qemu
	Removed "." from SUMMARY.
	Re-ordering blocks.

*	quassel
	Removed "." from SUMMARY.
	Re-ordering blocks.

*	qupzilla
	Removed "." from SUMMARY.
	Re-ordering blocks.
2015-07-23 08:01:11 +02:00

53 lines
1.5 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-2014 Python Packaging Authority"
LICENSE="Python"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/source/s/setuptools/setuptools-$portVersion.zip"
CHECKSUM_SHA256="11e77e37c768f77b652003594fb5a0aaa3e4cbb10c07ede2397c9233885b6c7f"
SOURCE_DIR="setuptools-$portVersion"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
python3_setuptools = $portVersion
"
REQUIRES="
haiku
cmd:python3
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:python3
cmd:sed
"
BUILD()
{
$portPackageLinksDir/cmd~python3/bin/python3 setup.py build
}
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
pythonVersion=$(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 \
--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-3.?
}