From 20616a66a85cb812533a9b047901886a464e0d63 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Mon, 17 Oct 2016 04:11:31 +0200 Subject: [PATCH] python-ipython: rebuild for Python 3.5 Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg. --- srcpkgs/python-ipython/template | 43 +++++++++++++++++---------------- srcpkgs/python3-ipython | 1 + 2 files changed, 23 insertions(+), 21 deletions(-) create mode 120000 srcpkgs/python3-ipython diff --git a/srcpkgs/python-ipython/template b/srcpkgs/python-ipython/template index 704e79d0b8a..fd107db4831 100644 --- a/srcpkgs/python-ipython/template +++ b/srcpkgs/python-ipython/template @@ -1,12 +1,11 @@ # Template file for 'python-ipython' pkgname=python-ipython version=4.2.1 -revision=1 +revision=2 noarch=yes wrksrc="ipython-${version}" build_style=python-module -python_versions="2.7 3.4" -hostmakedepends="python-setuptools python3.4-setuptools" +hostmakedepends="python-setuptools python3-setuptools" depends="python-decorator python-pexpect python-pickleshare python-simplegeneric python-traitlets python-backports.shutil_get_terminal_size" pycompile_module="IPython" @@ -18,39 +17,41 @@ distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz" checksum=e21c3d7f410014b04d36fe12998f132ed9ef4c6119b81016c04eedb09f0716a5 alternatives=" - ipython:ipython:/usr/bin/ipython2.7 - ipython:ipython.1:/usr/share/man/man1/ipython2.7.1" + ipython:ipython:/usr/bin/ipython2 + ipython:ipython.1:/usr/share/man/man1/ipython2.1" post_install() { # use decorators of numpy rm -f ${DESTDIR}/usr/lib/python*/site-packages/IPython/external/decorators/_decorators.py # remove iptest rm -f ${DESTDIR}/usr/bin/iptest* - # create ipython2 symlink - ln -sf ipython2.7 ${DESTDIR}/usr/bin/ipython2 # create versioned man pages - mv ${DESTDIR}/usr/share/man/man1/ipython{,2.7}.1 - vman docs/man/ipython.1 ipython3.4.1 + mv ${DESTDIR}/usr/share/man/man1/ipython{,2}.1 + vman docs/man/ipython.1 ipython3.1 # install license vlicense COPYING.rst LICENSE } -python3.4-ipython_package() { +python3-ipython_package() { alternatives=" - ipython:ipython:/usr/bin/ipython3.4 - ipython:ipython.1:/usr/share/man/man1/ipython3.4.1 - ipython3:ipython3:/usr/bin/ipython3.4 - ipython3:ipython3.1:/usr/share/man/man1/ipython3.4.1" + ipython:ipython:/usr/bin/ipython3 + ipython:ipython.1:/usr/share/man/man1/ipython3.1" noarch=yes - depends="python3.4-decorator python3.4-pexpect python3.4-pickleshare - python3.4-simplegeneric python3.4-traitlets" - pycompile_version="3.4" + depends="python3-decorator python3-pexpect python3-pickleshare + python3-simplegeneric python3-traitlets" pycompile_module="IPython" - short_desc="${short_desc/Python2/Python3.4}" + replaces="python3.4-ipython>=0" + short_desc="${short_desc/Python2/Python3}" pkg_install() { - vmove usr/bin/ipython3.4 - vmove usr/lib/python3.4 - vmove usr/share/man/man1/ipython3.4.1 + vmove usr/bin/ipython3 + vmove usr/lib/python3* + vmove usr/share/man/man1/ipython3.1 vlicense COPYING.rst LICENSE } } +python3.4-ipython_package() { + noarch=yes + build_style=meta + short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)" + depends="python3-ipython>=${version}_${revision}" +} diff --git a/srcpkgs/python3-ipython b/srcpkgs/python3-ipython new file mode 120000 index 00000000000..3c02370e4b5 --- /dev/null +++ b/srcpkgs/python3-ipython @@ -0,0 +1 @@ +python-ipython \ No newline at end of file