void-packages/srcpkgs/python-jupyter_notebook/template
2016-06-09 23:46:00 +02:00

57 lines
2 KiB
Bash

# Template file for 'python-jupyter_notebook'
pkgname=python-jupyter_notebook
version=4.2.1
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 <al3hex@gmail.com>"
homepage="https://github.com/jupyter/notebook"
license="3-clause-BSD"
distfiles="${PYPI_SITE}/n/notebook/notebook-${version}.tar.gz"
checksum=a49de524dabb99f214bdf2a58f26c7892650251a23a3669c6492fb180492e197
alternatives="
jupyter-notebook:jupyter-notebook:/usr/bin/jupyter-notebook2.7
jupyter-notebook:jupyter-nbextension:/usr/bin/jupyter-nbextension2.7"
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.4-jupyter_notebook_package() {
alternatives="
jupyter-notebook:jupyter-notebook:/usr/bin/jupyter-notebook3.4
jupyter-notebook:jupyter-nbextension:/usr/bin/jupyter-nbextension3.4"
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
}
}