[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2020-02-21 Thread Kyle Keen via arch-commits
Date: Friday, February 21, 2020 @ 12:29:23
  Author: kkeen
Revision: 577502

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 577501, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |   75 ++---
 1 file changed, 33 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-21 12:29:13 UTC (rev 577501)
+++ PKGBUILD2020-02-21 12:29:23 UTC (rev 577502)
@@ -1,42 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.1.0
-pkgrel=7
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('python-setuptools' 'python-jinja' 'python-mistune'
- 'ipython' 'python-ipykernel' 'python-jupyter_core'
- 'python-ipywidgets' 'jupyter-nbformat' 'jupyter_console'
- 'python-jupyter_client')
-optdepends=('jupyter-nbconvert: notebook conversion')
-source=()
-md5sums=()
-
-# and now with everything split out, nothing is left
-# todo: packages depending on jupyter/ipython2-notebook don't have to
-# (unless they want to make it easy for me to handle updates?)
-
-# python-jinja and python-mistune are missing from something in the tree?
-
-# honorable mention for python{,2}-qtconsole somewhere?
-
-build() {
-  cd "$srcdir"
-}
-
-package_jupyter() {
-  cd "$srcdir"
-}
-
-package_ipython2-notebook() {
-  # deprecated package?
-  pkgdesc="Misc libraries required for notebook integration."
-  depends=('ipython2' 'python2-ipykernel'
-   'python2-jupyter_core' 'python2-jupyter_client')
-  cd "$srcdir"
-}
-

Copied: jupyter/repos/community-any/PKGBUILD (from rev 577501, 
jupyter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-21 12:29:23 UTC (rev 577502)
@@ -0,0 +1,33 @@
+# Maintainer: Kyle Keen 
+
+pkgname=jupyter
+pkgver=4.6.3
+pkgrel=1
+pkgdesc="A language-agnostic web-based interactive shell/notebook server."
+arch=('any')
+url="https://jupyter.org/;
+license=('BSD')
+depends=('python-setuptools' 'python-jinja' 'python-mistune'
+ 'ipython' 'python-ipykernel' 'python-jupyter_core'
+ 'python-ipywidgets' 'jupyter-nbformat' 'jupyter_console'
+ 'python-jupyter_client')
+optdepends=('jupyter-nbconvert: notebook conversion')
+source=()
+md5sums=()
+
+# and now with everything split out, nothing is left
+# todo: packages depending on jupyter don't have to
+# (unless they want to make it easy for me to handle updates?)
+
+# python-jinja and python-mistune are missing from something in the tree?
+
+# honorable mention for python{,2}-qtconsole somewhere?
+
+build() {
+  cd "$srcdir"
+}
+
+package() {
+  cd "$srcdir"
+}
+


[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-07-15 Thread Kyle Keen
Date: Saturday, July 16, 2016 @ 03:54:43
  Author: kkeen
Revision: 182982

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 182981, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  254 +++--
 1 file changed, 131 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-16 03:53:26 UTC (rev 182981)
+++ PKGBUILD2016-07-16 03:54:43 UTC (rev 182982)
@@ -1,123 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.1.0
-pkgrel=4
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-ipykernel' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-jsonschema'
- 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('jupyter-nbconvert: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-# todo: figure out which deps left with jupyter-nbconvert
-
-# rebundle all the parts that were split out
-# but split them out officially over time
-_ipywv=4.1.1  # ipywidgets
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.1  # jupyter console
-_jcliv=4.2.2  # jupyter client
-_qtcv=4.2.1   # qtconsole
-
-# ipywidgets seems to be going through a lot of unstable "releases" today 
(2016-04-16)
-# wait for the beta testing to finish?
-
-# future order of splits:
-# python{,2}-jupyter_core
-# python{,2}-jupyter_client
-# python-ipywidgets
-
-source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('b7e928f965f68aef13fea1bf9d6384aa'
- '099e9b76c52839dc33604aad7a2f1a42'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- 'a8b077ae0a5c57e9518ac039ad5febb8'
- '988ea87554215a83c6ad52e554d8d8c4'
- '97a3e29cd69bc0270411b313c907c173')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver   python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r qtconsole-$_qtcv   python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'python2-ipykernel' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-jupyter_client-$_jcliv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-qtconsole-$_qtcv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$pkgdir/usr/bin"
-  rm jupyter
-  rm 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-04-16 Thread Kyle Keen
Date: Saturday, April 16, 2016 @ 15:11:06
  Author: kkeen
Revision: 171175

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 171174, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  253 ++---
 1 file changed, 128 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-16 13:10:40 UTC (rev 171174)
+++ PKGBUILD2016-04-16 13:11:06 UTC (rev 171175)
@@ -1,125 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.1.0
-pkgrel=2
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-ipykernel' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-jsonschema'
- 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-# but split them out officially over time
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.1  # jupyter console
-_jcliv=4.2.2  # jupyter client
-_qtcv=4.2.1   # qtconsole
-
-# future order of splits:
-# python{,2}-jupyter_core
-# python{,2}-jupyter_client
-# python-ipywidgets
-
-source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('b7e928f965f68aef13fea1bf9d6384aa'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- 'a8b077ae0a5c57e9518ac039ad5febb8'
- '988ea87554215a83c6ad52e554d8d8c4'
- '97a3e29cd69bc0270411b313c907c173')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver   python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r qtconsole-$_qtcv   python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'python2-ipykernel' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-jupyter_client-$_jcliv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-qtconsole-$_qtcv"
-  python2 setup.py install --prefix=/usr 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-04-08 Thread Kyle Keen
Date: Friday, April 8, 2016 @ 17:22:14
  Author: kkeen
Revision: 169753

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 169752, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  250 ++---
 1 file changed, 125 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-08 15:22:00 UTC (rev 169752)
+++ PKGBUILD2016-04-08 15:22:14 UTC (rev 169753)
@@ -1,125 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.1.0
-pkgrel=1
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-ipykernel' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-jsonschema'
- 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-# but split them out officially over time
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.1  # jupyter console
-_jcliv=4.2.1  # jupyter client
-_qtcv=4.2.0   # qtconsole
-
-# future order of splits:
-# python{,2}-jupyter_core
-# python{,2}-jupyter_client
-# python-ipywidgets
-
-source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('b7e928f965f68aef13fea1bf9d6384aa'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- 'a8b077ae0a5c57e9518ac039ad5febb8'
- '16994e5cace322c777456bc5a26502d7'
- '63c8f88830e41007dc1b807f02a250f9')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver   python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r qtconsole-$_qtcv   python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'python2-ipykernel' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-jupyter_client-$_jcliv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-qtconsole-$_qtcv"
-  python2 setup.py install --prefix=/usr 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:12:09
  Author: kkeen
Revision: 165644

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 165643, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  245 +++--
 1 file changed, 125 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-09 03:11:55 UTC (rev 165643)
+++ PKGBUILD2016-03-09 03:12:09 UTC (rev 165644)
@@ -1,120 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=8
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-ipykernel' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-jsonschema'
- 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-# but split them out officially over time
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.0  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_qtcv=4.2.0   # qtconsole
-
-source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '9c655076262760bdbeeada9d7f586237'
- '8436e4a3266a442f576cdfef39dc0e19'
- '63c8f88830e41007dc1b807f02a250f9')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver   python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r qtconsole-$_qtcv   python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'python2-ipykernel' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-jupyter_client-$_jcliv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-qtconsole-$_qtcv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$pkgdir/usr/bin"
-  rm jupyter
-  rm jupyter-kernelspec
-  rm 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-03-06 Thread Kyle Keen
Date: Sunday, March 6, 2016 @ 17:28:21
  Author: kkeen
Revision: 165394

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 165393, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  240 ++---
 1 file changed, 120 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-06 16:26:22 UTC (rev 165393)
+++ PKGBUILD2016-03-06 16:28:21 UTC (rev 165394)
@@ -1,120 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=7
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-ipykernel' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-jsonschema'
- 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-# but split them out officially over time
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.0  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_qtcv=4.1.1   # qtconsole
-
-source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '9c655076262760bdbeeada9d7f586237'
- '8436e4a3266a442f576cdfef39dc0e19'
- '09edb4932e59a07f26ff1fd492c9f740')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver   python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r qtconsole-$_qtcv   python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'python2-ipykernel' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-jupyter_client-$_jcliv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-qtconsole-$_qtcv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$pkgdir/usr/bin"
-  rm jupyter
-  rm jupyter-kernelspec
-  rm 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:44:08
  Author: kkeen
Revision: 163450

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 163449, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  266 ++---
 1 file changed, 133 insertions(+), 133 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 20:43:52 UTC (rev 163449)
+++ PKGBUILD2016-02-25 20:44:08 UTC (rev 163450)
@@ -1,133 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=5
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'jupyter-notebook' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-_ipykv=4.2.2  # ipykernel
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.0  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_qtcv=4.1.1   # qtconsole
-
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '4ac8ae11f1eef4920bf4a5383e13ab50'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '9c655076262760bdbeeada9d7f586237'
- '8436e4a3266a442f576cdfef39dc0e19'
- '09edb4932e59a07f26ff1fd492c9f740')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipykernel-$_ipykv"
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'jupyter' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-ipykernel-$_ipykv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-01-29 Thread Kyle Keen
Date: Saturday, January 30, 2016 @ 03:57:08
  Author: kkeen
Revision: 159436

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 159435, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  292 +++--
 1 file changed, 133 insertions(+), 159 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-30 02:56:47 UTC (rev 159435)
+++ PKGBUILD2016-01-30 02:57:08 UTC (rev 159436)
@@ -1,159 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=4
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('mathjax: latex equation rendering'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# rebundle all the parts that were split out
-_ipykv=4.2.2  # ipykernel
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.0.3  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_notev=4.1.0  # notebook
-_qtcv=4.1.1   # qtconsole
-
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"notebook.tgz::https://github.com/jupyter/notebook/archive/$_notev.tar.gz;
-
"qtconsole.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '4ac8ae11f1eef4920bf4a5383e13ab50'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '0e928ea261e7f8154698cf69ed4f2459'
- '8436e4a3266a442f576cdfef39dc0e19'
- '763ab54b3fc69f6225b9659b6994e756'
- '09edb4932e59a07f26ff1fd492c9f740')
-
-# notebook optdeps ?
-# 'haskell-pandoc: ipython notebook conversion'
-# 'texlive-bin: notebook pdf export'
-
-# qtconsole deps?
-# python-pyqt4 python-sip python-pygments python-pyzmq
-# is qt5 now?
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir"
-
-  # FS45999 disable bundled mathjax
-  cd "$srcdir/notebook-$_notev"
-  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
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  provides=('ipython-notebook')
-  #replaces=('ipython-notebook')
-
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipykernel-$_ipykv"
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/notebook-$_notev"
-  # 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.5/site-packages/notebook/static/components/MathJax"
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2016-01-11 Thread Kyle Keen
Date: Monday, January 11, 2016 @ 14:02:32
  Author: kkeen
Revision: 155995

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 155994, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  318 ++---
 1 file changed, 159 insertions(+), 159 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-11 13:02:18 UTC (rev 155994)
+++ PKGBUILD2016-01-11 13:02:32 UTC (rev 155995)
@@ -1,159 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=3
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('mathjax: latex equation rendering'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# rebundle all the parts that were split out
-_ipykv=4.2.1  # ipykernel
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.0.3  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_notev=4.0.6  # notebook
-_qtcv=4.1.1   # qtconsole
-
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"notebook.tgz::https://github.com/jupyter/notebook/archive/$_notev.tar.gz;
-
"qtconsole.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- 'de583ee9c84db6296269ce7de0afb63f'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '0e928ea261e7f8154698cf69ed4f2459'
- '8436e4a3266a442f576cdfef39dc0e19'
- 'd70d8a6d01893f4b64df9edbc0e13b52'
- '09edb4932e59a07f26ff1fd492c9f740')
-
-# notebook optdeps ?
-# 'haskell-pandoc: ipython notebook conversion'
-# 'texlive-bin: notebook pdf export'
-
-# qtconsole deps?
-# python-pyqt4 python-sip python-pygments python-pyzmq
-# is qt5 now?
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir"
-
-  # FS45999 disable bundled mathjax
-  cd "$srcdir/notebook-$_notev"
-  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
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  provides=('ipython-notebook')
-  #replaces=('ipython-notebook')
-
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipykernel-$_ipykv"
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/notebook-$_notev"
-  # 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.5/site-packages/notebook/static/components/MathJax"
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2015-12-11 Thread Kyle Keen
Date: Friday, December 11, 2015 @ 20:55:55
  Author: kkeen
Revision: 153061

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 153060, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  310 +++--
 1 file changed, 159 insertions(+), 151 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-11 19:55:03 UTC (rev 153060)
+++ PKGBUILD2015-12-11 19:55:55 UTC (rev 153061)
@@ -1,151 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=2
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('mathjax: latex equation rendering'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# some of these will update rapidly, others never
-# so _vers will be phased in as new updates are released
-_ipykv=4.0.3  # ipykernel
-_ipywv=4.0.2  # ipywidgets
-_qtcv=4.0.1   # qtconsole
-_notev=4.0.4  # notebook
-
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/4.0.0.tar.gz;
-
"nbformat.tar.gz::https://github.com/jupyter/nbformat/archive/4.0.0.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/4.0.2.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/4.0.0.tar.gz;
-
"notebook.tgz::https://github.com/jupyter/notebook/archive/$_notev.tar.gz;
-
"https://pypi.python.org/packages/source/q/qtconsole/qtconsole-$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '690f424a89e38a5559802bb58223142e'
- '1ced3f6b0893f7a43c6392252c0f80ab'
- '9661620b1e10a7b46f314588d2d0932f'
- '7cf61359fa4e9cf3ef5e969e2fcb909e'
- 'f2e174938c91136549b908bd39fa5d59'
- '00fa63c67cb3adf359d09dc4d803aff5'
- 'ab72f28f6af8107d71241a4110e92c05'
- 'a8f17246361ee37ec55d3222dee9e18c')
-
-# notebook optdeps ?
-# 'haskell-pandoc: ipython notebook conversion'
-# 'texlive-bin: notebook pdf export'
-
-# qtconsole deps?
-# python-pyqt4 python-sip python-pygments python-pyzmq
-# is qt5 now?
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-4.0.0 python2-jupyter_client-4.0.0
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv  python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir"
-
-  # FS45999 disable bundled mathjax
-  cd "$srcdir/notebook-$_notev"
-  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
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  provides=('ipython-notebook')
-  #replaces=('ipython-notebook')
-
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipykernel-$_ipykv"
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/notebook-$_notev"
-  # 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.5/site-packages/notebook/static/components/MathJax"
-
-  cd "$srcdir/nbconvert-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-4.0.2"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 examples/jupyter-qtconsole.desktop 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2015-09-19 Thread Felix Yan
Date: Saturday, September 19, 2015 @ 08:27:07
  Author: fyan
Revision: 140695

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 140694, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  302 ++---
 1 file changed, 151 insertions(+), 151 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-19 06:26:31 UTC (rev 140694)
+++ PKGBUILD2015-09-19 06:27:07 UTC (rev 140695)
@@ -1,151 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.4
-pkgrel=2
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('mathjax: latex equation rendering'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# some of these will update rapidly, others never
-# so _vers will be phased in as new updates are released
-_ipykv=4.0.3  # ipykernel
-_ipywv=4.0.2  # ipywidgets
-_qtcv=4.0.1   # qtconsole
-_notev=4.0.1  # notebook
-
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/4.0.0.tar.gz;
-
"nbformat.tar.gz::https://github.com/jupyter/nbformat/archive/4.0.0.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/4.0.0.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/4.0.0.tar.gz;
-
"notebook.tgz::https://github.com/jupyter/notebook/archive/$_notev.tar.gz;
-
"https://pypi.python.org/packages/source/q/qtconsole/qtconsole-$_qtcv.tar.gz;)
-md5sums=('5b6ca0e73bf559f4fe6106a6e412f913'
- '690f424a89e38a5559802bb58223142e'
- '1ced3f6b0893f7a43c6392252c0f80ab'
- '9661620b1e10a7b46f314588d2d0932f'
- '7cf61359fa4e9cf3ef5e969e2fcb909e'
- 'c34deb24f1c14208b2cb4c60f346d298'
- '00fa63c67cb3adf359d09dc4d803aff5'
- '1b66b9074df8e3d9d53ee00dde31cea1'
- 'a8f17246361ee37ec55d3222dee9e18c')
-
-# notebook optdeps ?
-# 'haskell-pandoc: ipython notebook conversion'
-# 'texlive-bin: notebook pdf export'
-
-# qtconsole deps?
-# python-pyqt4 python-sip python-pygments python-pyzmq
-# is qt5 now?
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-4.0.0 python2-jupyter_client-4.0.0
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv  python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir"
-
-  # FS45999 disable bundled mathjax
-  cd "$srcdir/notebook-$_notev"
-  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
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  provides=('ipython-notebook')
-  #replaces=('ipython-notebook')
-
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipykernel-$_ipykv"
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/notebook-$_notev"
-  # 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.4/site-packages/notebook/static/components/MathJax"
-
-  cd "$srcdir/nbconvert-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-4.0.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 examples/jupyter-qtconsole.desktop 

[arch-commits] Commit in jupyter/repos/community-any (PKGBUILD PKGBUILD)

2015-08-23 Thread Kyle Keen
Date: Sunday, August 23, 2015 @ 19:07:52
  Author: kkeen
Revision: 138694

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 138693, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

--+
 PKGBUILD |  300 ++---
 1 file changed, 151 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-08-23 17:07:29 UTC (rev 138693)
+++ PKGBUILD2015-08-23 17:07:52 UTC (rev 138694)
@@ -1,149 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.4
-pkgrel=1
-pkgdesc=A language-agnostic web-based interactive shell/notebook server.
-arch=('any')
-url=http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('mathjax: latex equation rendering'
-'python-pyqt5: qtconsole'
-'python-sip: qtconsole')
-
-# some of these will update rapidly, others never
-# so _vers will be phased in as new updates are released
-_ipykv=4.0.3  # ipykernel
-_ipywv=4.0.2  # ipywidgets
-_qtcv=4.0.1   # qtconsole
-_notev=4.0.1  # notebook
-
-source=(jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/4.0.0.tar.gz;
-
nbformat.tar.gz::https://github.com/jupyter/nbformat/archive/4.0.0.tar.gz;
-
jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/4.0.0.tar.gz;
-
jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/4.0.0.tar.gz;
-
notebook.tgz::https://github.com/jupyter/notebook/archive/$_notev.tar.gz;
-
https://pypi.python.org/packages/source/q/qtconsole/qtconsole-$_qtcv.tar.gz;)
-md5sums=('5b6ca0e73bf559f4fe6106a6e412f913'
- '690f424a89e38a5559802bb58223142e'
- '1ced3f6b0893f7a43c6392252c0f80ab'
- '9661620b1e10a7b46f314588d2d0932f'
- '7cf61359fa4e9cf3ef5e969e2fcb909e'
- 'c34deb24f1c14208b2cb4c60f346d298'
- '00fa63c67cb3adf359d09dc4d803aff5'
- '1b66b9074df8e3d9d53ee00dde31cea1'
- 'a8f17246361ee37ec55d3222dee9e18c')
-
-# notebook optdeps ?
-# 'haskell-pandoc: ipython notebook conversion'
-# 'texlive-bin: notebook pdf export'
-
-# qtconsole deps?
-# python-pyqt4 python-sip python-pygments python-pyzmq
-# is qt5 now?
-
-prepare() {
-  cd $srcdir
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-4.0.0 python2-jupyter_client-4.0.0
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv  python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd $srcdir
-
-  # FS45999 disable bundled mathjax
-  cd $srcdir/notebook-$_notev
-  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
-
-  cd $srcdir/ipywidgets-$_ipywv
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  provides=('ipython-notebook')
-  #replaces=('ipython-notebook')
-
-  cd $srcdir/jupyter_core-$pkgver
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/ipykernel-$_ipykv
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/ipywidgets-$_ipywv
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/notebook-$_notev
-  # 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.4/site-packages/notebook/static/components/MathJax
-
-  cd $srcdir/nbconvert-4.0.0
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/nbformat-4.0.0
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/jupyter_console-4.0.0
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/jupyter_client-4.0.0
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-
-  cd $srcdir/qtconsole-$_qtcv
-  python3 setup.py install --prefix=/usr --root=$pkgdir --optimize=0
-  install -Dm644 examples/jupyter-qtconsole.desktop 
$pkgdir/usr/share/applications/ipython-qtconsole.desktop
-
-  cd $srcdir
-  install -Dm644 jupyter_core-$pkgver/COPYING.md