42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
# Template file for 'python-ipython_ipykernel'
|
|
pkgname=python-ipython_ipykernel
|
|
version=4.8.2
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="ipykernel-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools python-ipython
|
|
python3-ipython python-jupyter_client python3-jupyter_client python-traitlets
|
|
python3-traitlets python-tornado python3-tornado"
|
|
depends="python-ipython python-traitlets python-jupyter_client python-tornado"
|
|
pycompile_module="ipykernel ipykernel_launcher.py"
|
|
short_desc="IPython kernel for Jupyter (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/ipython/ipykernel"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/i/ipykernel/ipykernel-${version}.tar.gz"
|
|
checksum=c091449dd0fad7710ddd9c4a06e8b9e15277da306590bc07a3a1afa6b4453c8f
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
aarch64*) broken="https://build.voidlinux.eu/builders/aarch64-musl_builder/builds/4765/steps/shell_3/logs/stdio"
|
|
esac
|
|
|
|
post_install() {
|
|
for v in 2 3; do
|
|
sed -i "s,python,&${v}," ${DESTDIR}/usr/share/jupyter/kernels/python${v}/kernel.json
|
|
done
|
|
vlicense COPYING.md LICENSE
|
|
}
|
|
|
|
python3-ipython_ipykernel_package() {
|
|
noarch=yes
|
|
depends="python3-ipython python3-traitlets python3-jupyter_client python3-tornado"
|
|
pycompile_module="ipykernel ipykernel_launcher.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vmove usr/share/jupyter/kernels/python3
|
|
vlicense COPYING.md LICENSE
|
|
}
|
|
}
|