[arch-commits] Commit in jupyterlab/repos/community-any (4 files)

Antonio Rojas arojas at gemini.archlinux.org
Tue May 3 16:25:16 UTC 2022


    Date: Tuesday, May 3, 2022 @ 16:25:15
  Author: arojas
Revision: 1192409

archrelease: copy trunk to community-any

Added:
  jupyterlab/repos/community-any/PKGBUILD
    (from rev 1192408, jupyterlab/trunk/PKGBUILD)
  jupyterlab/repos/community-any/no-nbclassic.patch
    (from rev 1192408, jupyterlab/trunk/no-nbclassic.patch)
Deleted:
  jupyterlab/repos/community-any/PKGBUILD
  jupyterlab/repos/community-any/no-nbclassic.patch

--------------------+
 PKGBUILD           |   82 +++++++++++++++++++++++++--------------------------
 no-nbclassic.patch |   26 ++++++++--------
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-05-03 16:24:59 UTC (rev 1192408)
+++ PKGBUILD	2022-05-03 16:25:15 UTC (rev 1192409)
@@ -1,41 +0,0 @@
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-
-pkgname=jupyterlab
-_pipname=jupyterlab
-pkgver=3.3.4
-pkgrel=1
-pkgdesc='JupyterLab computational environment'
-arch=(any)
-url='https://github.com/jupyterlab/jupyterlab'
-license=(custom)
-makedepends=(python-build python-installer python-pre-commit)
-depends=(python-jupyterlab_server python-jupyter_packaging jupyter-notebook-shim nodejs)
-optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
-checkdepends=('python-pytest-tornasync' 'npm')
-source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz
-        no-nbclassic.patch)
-sha256sums=('e04355848b3d91ac4d95c2e3846a0429b33e9c2edc79668fb4fc4d212f1e5107'
-            'c81b7b957622b7ea68589daa568bba96a8955e768aea0bce60c27fa041e07cc4')
-
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic dependency
-  sed -e '/nbclassic/d' -i $pkgname-$pkgver/setup.cfg
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd $pkgname-$pkgver
-  pytest -v -k 'not test_build'
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  mv "$pkgdir"/usr/etc "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jupyterlab/repos/community-any/PKGBUILD (from rev 1192408, jupyterlab/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-05-03 16:25:15 UTC (rev 1192409)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=jupyterlab
+_pipname=jupyterlab
+pkgver=3.4.0
+pkgrel=1
+pkgdesc='JupyterLab computational environment'
+arch=(any)
+url='https://github.com/jupyterlab/jupyterlab'
+license=(custom)
+makedepends=(python-build python-installer python-pre-commit)
+depends=(python-jupyterlab_server python-jupyter_packaging jupyter-notebook-shim nodejs)
+optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
+checkdepends=('python-pytest-tornasync' 'npm')
+source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz
+        no-nbclassic.patch)
+sha256sums=('0b504cef99c5eeb4058e554aa90733370d2b4b1ba5a275e267a5a144f43daa55'
+            'c81b7b957622b7ea68589daa568bba96a8955e768aea0bce60c27fa041e07cc4')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic dependency
+  sed -e '/nbclassic/d' -i $pkgname-$pkgver/setup.cfg
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $pkgname-$pkgver
+  pytest -v -k 'not test_build'
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  mv "$pkgdir"/usr/etc "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: no-nbclassic.patch
===================================================================
--- no-nbclassic.patch	2022-05-03 16:24:59 UTC (rev 1192408)
+++ no-nbclassic.patch	2022-05-03 16:25:15 UTC (rev 1192409)
@@ -1,13 +0,0 @@
-diff --git a/jupyterlab/labapp.py b/jupyterlab/labapp.py
-index 1eb56b22fe..5a401a0fdf 100644
---- a/jupyterlab/labapp.py
-+++ b/jupyterlab/labapp.py
-@@ -19,7 +19,7 @@ from jupyterlab_server import (
-     WorkspaceImportApp,
-     WorkspaceListApp,
- )
--from nbclassic.shim import NBClassicConfigShimMixin
-+from notebook_shim.shim import NotebookConfigShimMixin as NBClassicConfigShimMixin
- from traitlets import Bool, Instance, Unicode, default
- 
- from ._version import __version__

Copied: jupyterlab/repos/community-any/no-nbclassic.patch (from rev 1192408, jupyterlab/trunk/no-nbclassic.patch)
===================================================================
--- no-nbclassic.patch	                        (rev 0)
+++ no-nbclassic.patch	2022-05-03 16:25:15 UTC (rev 1192409)
@@ -0,0 +1,13 @@
+diff --git a/jupyterlab/labapp.py b/jupyterlab/labapp.py
+index 1eb56b22fe..5a401a0fdf 100644
+--- a/jupyterlab/labapp.py
++++ b/jupyterlab/labapp.py
+@@ -19,7 +19,7 @@ from jupyterlab_server import (
+     WorkspaceImportApp,
+     WorkspaceListApp,
+ )
+-from nbclassic.shim import NBClassicConfigShimMixin
++from notebook_shim.shim import NotebookConfigShimMixin as NBClassicConfigShimMixin
+ from traitlets import Bool, Instance, Unicode, default
+ 
+ from ._version import __version__



More information about the arch-commits mailing list