Add recipe for dateutil 1.5

- the magic is in --single-version-externally-managed to disable
those (easter) egg things...
cf.
https://wiki.debian.org/Python/FAQ#How_should_we_package_Python_eggs.3F

- --root is required so just pass /

- also, python must be called without any path, else it setuptools uses
it as an extra prefix for install... so we munge PATH and call python.
This commit is contained in:
François Revol
2014-07-29 01:54:50 +02:00
parent ade9a98565
commit 2a454805c7

View File

@@ -0,0 +1,56 @@
SUMMARY="Extensions to the standard Python datetime module"
DESCRIPTION="
The dateutil module provides powerful extensions to the \
standard datetime module, available in Python 2.3+.
"
HOMEPAGE="http://labix.org/python-dateutil"
SRC_URI="http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz"
CHECKSUM_SHA256="c08aca7d85f8f8eed61e83b3423b829262c596a9a78f7ca3de0bcee2217d0e3b"
#FIXME: check exact license
#XXX: 2.0 is "simplified BSD" (which one ?)
LICENSE="Python"
COPYRIGHT="2003-2010 Gustavo Niemeyer"
REVISION="1"
ARCHITECTURES="x86 x86_gcc2 x86_64"
SOURCE_DIR="python-dateutil-$portVersion"
PROVIDES="
python_dateutil = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
cmd:python
#python_setuptools
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
python_setuptools
"
BUILD_PREREQUIRES="
cmd:python
cmd:gcc
"
BUILD()
{
$portPackageLinksDir/cmd~python/bin/python setup.py build
}
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
export PATH="$portPackageLinksDir/cmd~python/bin:$PATH"
pythonVersion=$(python --version 2>&1 | sed 's/Python //' | head -c3)
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
python setup.py install \
--single-version-externally-managed \
--root=/ --prefix=$prefix
}