diff --git a/dev-python/python_dateutil/licenses/Python b/dev-python/dateutil/licenses/Python similarity index 100% rename from dev-python/python_dateutil/licenses/Python rename to dev-python/dateutil/licenses/Python diff --git a/dev-python/python_dateutil/python_dateutil-1.5.recipe b/dev-python/dateutil/python_dateutil-2.5.2.recipe similarity index 65% rename from dev-python/python_dateutil/python_dateutil-1.5.recipe rename to dev-python/dateutil/python_dateutil-2.5.2.recipe index 0abe45b2c..24e6af00b 100644 --- a/dev-python/python_dateutil/python_dateutil-1.5.recipe +++ b/dev-python/dateutil/python_dateutil-2.5.2.recipe @@ -6,10 +6,10 @@ COPYRIGHT="2003-2010 Gustavo Niemeyer" #FIXME: check exact license #XXX: 2.0 is "simplified BSD" (which one ?) LICENSE="Python" -REVISION="2" -SOURCE_URI="http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz" -CHECKSUM_SHA256="c08aca7d85f8f8eed61e83b3423b829262c596a9a78f7ca3de0bcee2217d0e3b" -SOURCE_DIR="python-dateutil-$portVersion" +REVISION="1" +SOURCE_URI="http://github.com/dateutil/dateutil/archive/$portVersion.tar.gz" +CHECKSUM_SHA256="757e927693126f474a3a97eef0215f87edb318c04e4f6ee9ab407c9994f91d27" +SOURCE_DIR="dateutil-$portVersion" ARCHITECTURES="x86 x86_gcc2 x86_64" @@ -18,7 +18,7 @@ PROVIDES=" " REQUIRES=" haiku - cmd:python + cmd:python2 #python_setuptools " @@ -27,25 +27,25 @@ BUILD_REQUIRES=" python_setuptools " BUILD_PREREQUIRES=" - cmd:python + cmd:python2 cmd:gcc " BUILD() { - $portPackageLinksDir/cmd~python/bin/python setup.py build + $portPackageLinksDir/cmd~python2/bin/python2 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) + export PATH="$portPackageLinksDir/cmd~python2/bin:$PATH" + pythonVersion=$(python2 --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 \ + python2 setup.py install \ --single-version-externally-managed \ --root=/ --prefix=$prefix }