From 32992d01b14a0ae1b03f5378911ee2c134c6a476 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Mon, 17 Oct 2016 09:18:02 +0200 Subject: [PATCH] python-path: rebuild for Python 3.5 Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg. --- srcpkgs/python-path/template | 21 +++++++++++++-------- srcpkgs/python3-path | 1 + 2 files changed, 14 insertions(+), 8 deletions(-) create mode 120000 srcpkgs/python3-path diff --git a/srcpkgs/python-path/template b/srcpkgs/python-path/template index 11eed4ee139..a598f645500 100644 --- a/srcpkgs/python-path/template +++ b/srcpkgs/python-path/template @@ -1,12 +1,11 @@ # Template file for 'python-path' pkgname=python-path version=8.2.1 -revision=1 +revision=2 noarch=yes wrksrc="path.py-${version}" build_style=python-module -python_versions="2.7 3.4" -hostmakedepends="python-setuptools python3.4-setuptools" +hostmakedepends="python-setuptools python3-setuptools" depends="python" pycompile_module="path.py" short_desc="Python2 module wrapper for os.path" @@ -22,13 +21,19 @@ pre_build() { -i setup.py } -python3.4-path_package() { +python3-path_package() { noarch=yes - depends="python3.4" - pycompile_version="3.4" + depends="python3" pycompile_module="path.py" - short_desc="${short_desc/Python2/Python3.4}" + replaces="python3.4-path>=0" + short_desc="${short_desc/Python2/Python3}" pkg_install() { - vmove usr/lib/python3.4 + vmove usr/lib/python3* } } +python3.4-path_package() { + noarch=yes + build_style=meta + short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)" + depends="python3-path>=${version}_${revision}" +} diff --git a/srcpkgs/python3-path b/srcpkgs/python3-path new file mode 120000 index 00000000000..d78f16503a6 --- /dev/null +++ b/srcpkgs/python3-path @@ -0,0 +1 @@ +python-path \ No newline at end of file