# Template file for 'python-jupyter_notebook' pkgname=python-jupyter_notebook version=4.1.0 revision=1 noarch=yes replaces="python-ipython-notebook>=0" wrksrc="notebook-${version}" build_style=python-module python_versions="2.7 3.4" hostmakedepends="python-setuptools python3.4-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 " homepage="https://github.com/jupyter/notebook" license="3-clause-BSD" distfiles="${PYPI_SITE}/n/notebook/notebook-${version}.tar.gz" checksum=b597437ba33538221008e21fea71cd01eda9da1515ca3963d7c74e44f4b03d90 pre_build() { # disable bundled mathjax sed -i 's/^.*MathJax.*$//' bower.json sed -i 's/mj(/#mj(/' setupbase.py } post_install() { rm -f ${DESTDIR}/usr/bin/* for f in jupyter-nbextension jupyter-notebook; do vbin build-2.7/scripts-2.7/${f} vbin build-3.4/scripts-3.4/${f} ${f}3.4 done vlicense COPYING.md LICENSE # use system 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.4-jupyter_notebook_package() { noarch=yes replaces="python3.4-ipython-notebook>=0" depends="python3.4-Jinja2 python3.4-terminado python3.4-tornado python3.4-ipython_genutils python3.4-traitlets python3.4-jupyter_core python3.4-jupyter_client python3.4-jupyter_nbformat python3.4-jupyter_nbconvert python3.4-ipython_ipykernel mathjax" pycompile_version="3.4" pycompile_module="notebook" short_desc="${short_desc/Python2/Python3.4}" pkg_install() { vmove usr/bin/jupyter-notebook3.4 vmove usr/bin/jupyter-nbextension3.4 vmove usr/lib/python3.4 vlicense COPYING.md LICENSE } }