void-packages/srcpkgs/python-jupyter_notebook/template
Alessio Sergi 75c35334d2 python-jupyter_notebook: rebuild for Python 3.5
Switch to python3-* pkgs.
Convert python3.4-* pkg into dummy pkg.
2016-10-17 09:52:57 +02:00

59 lines
2.1 KiB
Bash

# Template file for 'python-jupyter_notebook'
pkgname=python-jupyter_notebook
version=4.2.3
revision=3
noarch=yes
wrksrc="notebook-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python-Jinja2 python-terminado python-tornado
python-ipython_genutils python-traitlets python-jupyter_core
python-jupyter_client python-jupyter_nbformat python-jupyter_nbconvert
python-ipython_ipykernel mathjax"
pycompile_module="notebook"
short_desc="Jupyter interactive notebook (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/jupyter/notebook"
license="3-clause-BSD"
distfiles="${PYPI_SITE}/n/notebook/notebook-${version}.tar.gz"
checksum=39a9603d3fe88b60de2903680c965cf643acf2c16fb2c6bac1d905e1042b5851
alternatives="
jupyter-notebook:jupyter-notebook:/usr/bin/jupyter-notebook2
jupyter-notebook:jupyter-nbextension:/usr/bin/jupyter-nbextension2"
post_install() {
vlicense COPYING.md LICENSE
# use system mathjax
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/notebook/static/components/MathJax
for pyver in $python_versions; do
ln -sf /usr/share/mathjax \
${DESTDIR}/usr/lib/python${pyver}/site-packages/notebook/static/components/MathJax
done
}
python3-jupyter_notebook_package() {
alternatives="
jupyter-notebook:jupyter-notebook:/usr/bin/jupyter-notebook3
jupyter-notebook:jupyter-nbextension:/usr/bin/jupyter-nbextension3"
noarch=yes
replaces="python3.4-jupyter_notebook>=0"
depends="python3-Jinja2 python3-terminado python3-tornado
python3-ipython_genutils python3-traitlets python3-jupyter_core
python3-jupyter_client python3-jupyter_nbformat python3-jupyter_nbconvert
python3-ipython_ipykernel mathjax"
pycompile_module="notebook"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/bin/jupyter-notebook3
vmove usr/bin/jupyter-nbextension3
vmove usr/lib/python3*
vlicense COPYING.md LICENSE
}
}
python3.4-jupyter_notebook_package() {
noarch=yes
build_style=meta
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
depends="python3-jupyter_notebook>=${version}_${revision}"
}