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

Antonio Rojas arojas at gemini.archlinux.org
Mon Apr 4 12:03:53 UTC 2022


    Date: Monday, April 4, 2022 @ 12:03:53
  Author: arojas
Revision: 1181268

archrelease: copy trunk to community-any

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

--------------------+
 PKGBUILD           |   75 +++++++++++++++++++++++++++++----------------------
 no-nbclassic.patch |   13 ++++++++
 2 files changed, 56 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-04-04 12:03:35 UTC (rev 1181267)
+++ PKGBUILD	2022-04-04 12:03:53 UTC (rev 1181268)
@@ -1,32 +0,0 @@
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-
-pkgname=jupyterlab
-_pipname=jupyterlab
-pkgver=3.3.2
-pkgrel=2
-pkgdesc='JupyterLab computational environment'
-arch=(any)
-url='https://github.com/jupyterlab/jupyterlab'
-license=(custom)
-makedepends=(python-build python-installer)
-depends=(python-jupyterlab_server python-jupyter_packaging jupyter-nbclassic nodejs)
-optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
-source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('3c716bf5592cb28c5c55c615c6e5bd3efc71898f6957d13719b56478bbbb587a')
-
-prepare() {
-  sed -e 's|nbclassic~=0.2|nbclassic|' -i $pkgname-$pkgver/setup.cfg # Remove dependency version constraint
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-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 1181267, jupyterlab/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-04-04 12:03:53 UTC (rev 1181268)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=jupyterlab
+_pipname=jupyterlab
+pkgver=3.3.2
+pkgrel=3
+pkgdesc='JupyterLab computational environment'
+arch=(any)
+url='https://github.com/jupyterlab/jupyterlab'
+license=(custom)
+makedepends=(python-build python-installer)
+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
+        jupyterlab-fix-tests.patch::https://github.com/jupyterlab/jupyterlab/commit/56b437fc.patch)
+sha256sums=('3c716bf5592cb28c5c55c615c6e5bd3efc71898f6957d13719b56478bbbb587a'
+            '923954cca5ac139091f3a6c7c922c3bf3b4173375bb28a1cc016f74f82869d7e'
+            '5db8f09ecb71ca93c09d050940c9767218bf4ffc5368225eb7ebd72a7f02ed90')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic dependency
+  patch -d $pkgname-$pkgver -p1 < jupyterlab-fix-tests.patch # Fix tests
+}
+
+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/no-nbclassic.patch (from rev 1181267, jupyterlab/trunk/no-nbclassic.patch)
===================================================================
--- no-nbclassic.patch	                        (rev 0)
+++ no-nbclassic.patch	2022-04-04 12:03:53 UTC (rev 1181268)
@@ -0,0 +1,13 @@
+diff --git a/jupyterlab/labapp.py b/jupyterlab/labapp.py
+index 75af58179c..df2bcdc4cd 100644
+--- a/jupyterlab/labapp.py
++++ b/jupyterlab/labapp.py
+@@ -14,7 +14,7 @@ from jupyter_server.serverapp import flags
+ from jupyter_server.utils import url_path_join as ujoin
+ 
+ from jupyterlab_server import LabServerApp, LicensesApp, WorkspaceExportApp, 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