python-ipython: update to 5.4.1
Split out python3-ipython since IPython>=6.0 is Python3-only. IPython 5.x is a LTS release, yet compatible with Python 2.7.
This commit is contained in:
parent
2719b4ee55
commit
06251a2dcc
|
@ -1,12 +0,0 @@
|
||||||
--- setupbase.py.orig
|
|
||||||
+++ setupbase.py
|
|
||||||
@@ -298,7 +298,7 @@ def find_entry_points():
|
|
||||||
'iptest%s = IPython.testing.iptestcontroller:main',
|
|
||||||
]
|
|
||||||
suffix = str(sys.version_info[0])
|
|
||||||
- return [e % '' for e in ep] + [e % suffix for e in ep]
|
|
||||||
+ return [e % '' for e in ep]
|
|
||||||
|
|
||||||
script_src = """#!{executable}
|
|
||||||
# This script was automatically generated by setup.py
|
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
# Template file for 'python-ipython'
|
# Template file for 'python-ipython'
|
||||||
pkgname=python-ipython
|
pkgname=python-ipython
|
||||||
version=5.3.0
|
version=5.4.1
|
||||||
revision=1
|
revision=1
|
||||||
noarch=yes
|
noarch=yes
|
||||||
wrksrc="ipython-${version}"
|
wrksrc="ipython-${version}"
|
||||||
build_style=python-module
|
build_style=python2-module
|
||||||
hostmakedepends="python-setuptools python3-setuptools"
|
hostmakedepends="python-setuptools"
|
||||||
depends="python-pickleshare python-simplegeneric python-traitlets python-pexpect
|
depends="python-pickleshare python-simplegeneric python-traitlets python-pexpect
|
||||||
python-prompt_toolkit python-Pygments python-backports.shutil_get_terminal_size"
|
python-prompt_toolkit python-Pygments python-backports.shutil_get_terminal_size"
|
||||||
pycompile_module="IPython"
|
pycompile_module="IPython"
|
||||||
short_desc="Enhanced interactive Python2 shell"
|
short_desc="Enhanced interactive Python2 shell"
|
||||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
homepage="http://ipython.org/"
|
homepage="https://ipython.org/"
|
||||||
license="3-clause-BSD"
|
license="3-clause-BSD"
|
||||||
distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz"
|
distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz"
|
||||||
checksum=bf5e615e7d96dac5a61fbf98d9e2926d98aa55582681bea7e9382992a3f43c1d
|
checksum=afaa92343c20cf4296728161521d84f606d8817f963beaf7198e63dfede897fb
|
||||||
|
|
||||||
alternatives="
|
alternatives="
|
||||||
ipython:ipython:/usr/bin/ipython2
|
ipython:ipython:/usr/bin/ipython2
|
||||||
|
@ -25,33 +25,10 @@ post_install() {
|
||||||
rm -f ${DESTDIR}/usr/lib/python*/site-packages/IPython/external/decorators/_decorators.py
|
rm -f ${DESTDIR}/usr/lib/python*/site-packages/IPython/external/decorators/_decorators.py
|
||||||
# remove iptest
|
# remove iptest
|
||||||
rm -f ${DESTDIR}/usr/bin/iptest*
|
rm -f ${DESTDIR}/usr/bin/iptest*
|
||||||
|
# remove ipython for alternatives
|
||||||
|
rm -f ${DESTDIR}/usr/bin/ipython
|
||||||
# create versioned man pages
|
# create versioned man pages
|
||||||
mv ${DESTDIR}/usr/share/man/man1/ipython{,2}.1
|
mv ${DESTDIR}/usr/share/man/man1/ipython{,2}.1
|
||||||
vman docs/man/ipython.1 ipython3.1
|
|
||||||
# install license
|
|
||||||
vlicense COPYING.rst LICENSE
|
|
||||||
}
|
|
||||||
|
|
||||||
python3-ipython_package() {
|
|
||||||
alternatives="
|
|
||||||
ipython:ipython:/usr/bin/ipython3
|
|
||||||
ipython:ipython.1:/usr/share/man/man1/ipython3.1"
|
|
||||||
noarch=yes
|
|
||||||
depends="python3-pickleshare python3-simplegeneric python3-traitlets
|
|
||||||
python3-pexpect python3-prompt_toolkit python3-Pygments"
|
|
||||||
pycompile_module="IPython"
|
|
||||||
replaces="python3.4-ipython>=0"
|
|
||||||
short_desc="${short_desc/Python2/Python3}"
|
|
||||||
pkg_install() {
|
|
||||||
vmove usr/bin/ipython3
|
|
||||||
vmove usr/lib/python3*
|
|
||||||
vmove usr/share/man/man1/ipython3.1
|
|
||||||
vlicense COPYING.rst LICENSE
|
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}"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
python-ipython
|
|
|
@ -1 +0,0 @@
|
||||||
python-ipython
|
|
Loading…
Reference in New Issue