From 4181f34c254119a696b4ef9c81e6933a91cc9ded Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Sun, 16 Oct 2016 17:11:33 +0200 Subject: [PATCH] python-setuptools: rebuild for Python 3.5 Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg. --- srcpkgs/python-setuptools/template | 31 +++++++++++++++++------------- srcpkgs/python3-setuptools | 1 + 2 files changed, 19 insertions(+), 13 deletions(-) create mode 120000 srcpkgs/python3-setuptools diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template index b1513254767..bbaa5da5d4a 100644 --- a/srcpkgs/python-setuptools/template +++ b/srcpkgs/python-setuptools/template @@ -1,12 +1,11 @@ # Template file for 'python-setuptools' pkgname=python-setuptools version=28.3.0 -revision=1 +revision=2 noarch=yes wrksrc="setuptools-${version}" build_style=python-module -python_versions="2.7 3.4" -hostmakedepends="python-devel python3.4-devel" +hostmakedepends="python-devel python3-devel" depends="python" pycompile_module="pkg_resources setuptools easy_install.py" provides="python-distribute-${version}_1" @@ -17,25 +16,31 @@ homepage="https://github.com/pypa/setuptools" license="MIT" distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz" checksum=e31c9397fcb3bf20c257f5804d0ea2a17cf220027f4ab65b9ee5158010d41fc2 -alternatives="setuptools:easy_install:/usr/bin/easy_install2.7" +alternatives="setuptools:easy_install:/usr/bin/easy_install2" + +export SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 post_install() { - rm -f ${DESTDIR}/usr/bin/easy_install-* vlicense LICENSE } -python3.4-setuptools_package() { +python3-setuptools_package() { noarch=yes - depends="python3.4" - pycompile_version="3.4" + depends="python3" pycompile_module="pkg_resources setuptools easy_install.py" - short_desc="${short_desc/Python2/Python3.4}" + short_desc="${short_desc/Python2/Python3}" provides="python3-distribute-${version}_1" - replaces="python3-distribute>=0" - alternatives="setuptools:easy_install:/usr/bin/easy_install3.4" + replaces="python3-distribute>=0 python3.4-setuptools>=0" + alternatives="setuptools:easy_install:/usr/bin/easy_install3" pkg_install() { - vmove usr/bin/easy_install3.4 - vmove usr/lib/python3.4 + vmove usr/bin/easy_install3 + vmove ${py3_sitelib} vlicense LICENSE } } +python3.4-setuptools_package() { + noarch=yes + build_style=meta + short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)" + depends="python3-setuptools>=${version}_${revision}" +} diff --git a/srcpkgs/python3-setuptools b/srcpkgs/python3-setuptools new file mode 120000 index 00000000000..493d712c799 --- /dev/null +++ b/srcpkgs/python3-setuptools @@ -0,0 +1 @@ +python-setuptools \ No newline at end of file