[arch-commits] Commit in jupyter-notebook/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Tue Dec 27 13:07:39 UTC 2016
Date: Tuesday, December 27, 2016 @ 13:07:39
Author: felixonmars
Revision: 203058
archrelease: copy trunk to community-staging-any
Added:
jupyter-notebook/repos/community-staging-any/
jupyter-notebook/repos/community-staging-any/PKGBUILD
(from rev 203057, jupyter-notebook/trunk/PKGBUILD)
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: jupyter-notebook/repos/community-staging-any/PKGBUILD (from rev 203057, jupyter-notebook/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2016-12-27 13:07:39 UTC (rev 203058)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+
+pkgname=jupyter-notebook
+pkgver=4.3.0
+pkgrel=2
+pkgdesc="The language-agnostic HTML notebook application for Project Jupyter"
+arch=('any')
+url="https://github.com/jupyter/notebook"
+license=('BSD')
+depends=('python-setuptools' 'python-jinja' 'python-tornado' 'python-terminado'
+ 'python-traitlets' 'jupyter-nbformat' 'python-jupyter_core'
+ 'python-jupyter_client')
+# Also depends on jupyter-nbconvert but that is optional elsewhere.
+# Much of their official dependency tree appears inverted?
+makedepends=('python-setuptools' 'npm' 'git')
+optdepends=('mathjax: latex equation rendering'
+ 'pandoc: notebook export')
+source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/notebook/archive/$pkgver.tar.gz")
+md5sums=('9349a421bb2dff0226d71910de0a7184')
+
+build() {
+ cd "$srcdir/notebook-$pkgver"
+
+ # FS45999 disable bundled mathjax
+ sed -i 's/^.*MathJax.*$//' bower.json
+ #sed -i '/Trim mathjax/,/^ static_data.append/d' setupbase.py
+ sed -i 's/ mj(/ #mj(/' setupbase.py
+
+ # needs node, downloads a lot of stuff
+ python3 setup.py build
+}
+
+package() {
+ cd "$srcdir/notebook-$pkgver"
+
+ # needs node
+ python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+ # FS45999 use system mathjax
+ ln -s /usr/share/mathjax \
+ "$pkgdir/usr/lib/python3.6/site-packages/notebook/static/components/MathJax"
+
+ install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
More information about the arch-commits
mailing list