From df96b1f09caf8202315bb80d0fce373369d01cda Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Sun, 28 Dec 2014 20:08:00 +0100 Subject: [PATCH] python-setuptools: update to 8.3 --- srcpkgs/python-setuptools/template | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template index ad0ce1d2cd..3decc395a8 100644 --- a/srcpkgs/python-setuptools/template +++ b/srcpkgs/python-setuptools/template @@ -1,48 +1,48 @@ # Template file for 'python-setuptools' pkgname=python-setuptools -version=8.2.1 +version=8.3 revision=1 noarch=yes wrksrc="setuptools-${version}" python_versions="2.7 3.4" hostmakedepends="python-devel python3.4-devel" depends="python" -pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools" +pycompile_module="_markerlib pkg_resources setuptools easy_install.py" provides="python-distribute-${version}_1" replaces="python-distribute>=0" -short_desc="Easily download, build, install, upgrade, and uninstall Python2 packages" +short_desc="Easily build and distribute Python2 packages" maintainer="Alessio Sergi " -homepage="https://pypi.python.org/pypi/setuptools" +homepage="https://bitbucket.org/pypa/setuptools" license="PSF" distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz" -checksum=c2a0b4e3c980903f587896174c3829dc838f50995990ce93c95f93e70f1250aa +checksum=f82ca6f17d746e1f38cd477c8e4020e50f5ada1b3cdf8135408f14bc4ac156c7 post_extract() { - cp -a ${wrksrc} /tmp/python2.7-build - cp -a ${wrksrc} /tmp/python3.4-build - mv /tmp/python{2.7,3.4}-build ${wrksrc} + cp -a ${wrksrc} /tmp/setuptools-2.7 + cp -a ${wrksrc} /tmp/setuptools-3.4 + mv /tmp/setuptools-{2.7,3.4} ${wrksrc} } pre_build() { - cd ${wrksrc}/python3.4-build + cd ${wrksrc}/setuptools-3.4 sed -i 's,easy_install =,easy_install3 =,' setup.py sed -i 's,#!/usr/bin/env python,&3.4,' setuptools/command/easy_install.py sed -i 's,#!/usr/bin/python,&3.4,' setuptools/tests/test_resources.py } do_build() { - cd ${wrksrc}/python2.7-build + cd ${wrksrc}/setuptools-2.7 python setup.py build - cd ${wrksrc}/python3.4-build + cd ${wrksrc}/setuptools-3.4 python3.4 setup.py build } do_install() { - cd ${wrksrc}/python2.7-build + cd ${wrksrc}/setuptools-2.7 python setup.py install --root=${DESTDIR} - cd ${wrksrc}/python3.4-build + cd ${wrksrc}/setuptools-3.4 python3.4 setup.py install --root=${DESTDIR} } @@ -50,7 +50,7 @@ python3.4-setuptools_package() { noarch=yes depends="python3.4" pycompile_version="3.4" - pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools" + pycompile_module="_markerlib pkg_resources setuptools easy_install.py" short_desc="${short_desc/Python2/Python3.4}" provides="python3-distribute-${version}_1" replaces="python3-distribute>=0"