From 6f53eb0015ef360d4cd2e88700e44a607ee7e5e2 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Sat, 16 Aug 2014 00:33:33 +0200 Subject: [PATCH] python-setuptools: update to 5.7 --- srcpkgs/python-setuptools/template | 42 +++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 10 deletions(-) diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template index 5c06b2a56d..270e995eb2 100644 --- a/srcpkgs/python-setuptools/template +++ b/srcpkgs/python-setuptools/template @@ -1,10 +1,9 @@ # Template file for 'python-setuptools' pkgname=python-setuptools -version=5.4.1 +version=5.7 revision=1 noarch=yes wrksrc="${pkgname#*-}-${version}" -build_style=python-module python_versions="2.7 3.4" hostmakedepends="python-devel python3.4-devel" makedepends="${hostmakedepends}" @@ -14,15 +13,38 @@ provides="python-distribute-${version}_1" replaces="python-distribute>=0" short_desc="Easily download, build, install, upgrade, and uninstall Python2 packages" maintainer="Alessio Sergi " -homepage="http://pypi.python.org/pypi/setuptools" +homepage="https://pypi.python.org/pypi/setuptools" license="PSF" -distfiles="http://pypi.python.org/packages/source/s/setuptools/setuptools-${version}.tar.gz" -checksum=41194dc283bd186d5a7825c16b89d88bee369a6c4c4c7494e84909933b6f63be +distfiles="https://pypi.python.org/packages/source/s/setuptools/setuptools-${version}.tar.gz" +checksum=a8bbdb2d67532c5b5cef5ba09553cea45d767378e42c7003347e53ebbe70f482 -post_install() { - rm -f ${DESTDIR}/usr/bin/easy_install - ln -sf easy_install-2.7 ${DESTDIR}/usr/bin/easy_install - ln -sf easy_install-3.4 ${DESTDIR}/usr/bin/easy_install3 +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} +} + +pre_build() { + cd ${wrksrc}/python3.4-build + 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 + python setup.py build + + cd ${wrksrc}/python3.4-build + python3.4 setup.py build +} + +do_install() { + cd ${wrksrc}/python2.7-build + python setup.py install --root=${DESTDIR} + + cd ${wrksrc}/python3.4-build + python3.4 setup.py install --root=${DESTDIR} } python3.4-setuptools_package() { @@ -30,7 +52,7 @@ python3.4-setuptools_package() { depends="python3.4" pycompile_version="3.4" pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools" - short_desc="${short_desc//Python2/Python3.4}" + short_desc="${short_desc/Python2/Python3.4}" provides="python3-distribute-${version}_1" replaces="python3-distribute>=0" pkg_install() {