35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# Template file for 'python3-ipython'
|
|
pkgname=python3-ipython
|
|
version=6.2.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"
|
|
short_desc="Enhanced interactive Python3 shell"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://ipython.org/"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz"
|
|
checksum=81b0d6936f87002e6972eccc7e4085f5c2d0673decff22724b53cf34809ffacf
|
|
|
|
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
|
|
}
|