36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
# Template file for 'python3-ipython'
|
|
pkgname=python3-ipython
|
|
version=6.5.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="ipython-${version}"
|
|
build_style=python3-module
|
|
pycompile_module="IPython"
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-pickleshare python3-simplegeneric python3-traitlets
|
|
python3-pexpect python3-prompt_toolkit python3-Pygments python3-jedi
|
|
python3-backcall"
|
|
short_desc="Enhanced interactive Python3 shell"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://ipython.org/"
|
|
license="BSD-3-Clause"
|
|
distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz"
|
|
checksum=b0f2ef9eada4a68ef63ee10b6dde4f35c840035c50fd24265f8052c98947d5a4
|
|
|
|
alternatives="
|
|
ipython:ipython:/usr/bin/ipython3
|
|
ipython:ipython.1:/usr/share/man/man1/ipython3.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*
|
|
# remove ipython for alternatives
|
|
rm -f ${DESTDIR}/usr/bin/ipython
|
|
# create versioned man pages
|
|
mv ${DESTDIR}/usr/share/man/man1/ipython{,3}.1
|
|
|
|
vlicense COPYING.rst LICENSE
|
|
}
|