Date: Monday, April 10, 2023 @ 17:24:05 Author: arojas Revision: 1444509
upgpkg: jupyterlab 3.6.3-5: Drop notebook dependency, make server-ydoc a hard dependency Modified: jupyterlab/trunk/PKGBUILD ----------+ PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-04-10 17:12:28 UTC (rev 1444508) +++ PKGBUILD 2023-04-10 17:24:05 UTC (rev 1444509) @@ -3,14 +3,14 @@ pkgname=jupyterlab _pipname=jupyterlab pkgver=3.6.3 -pkgrel=4 +pkgrel=5 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' 'jupyter-server-ydoc: for collaborative mode') +depends=(python-jupyterlab_server python-jupyter_packaging jupyter-notebook-shim jupyter-server-ydoc nodejs) +optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support') checkdepends=(python-pytest-tornasync python-pytest-jupyter npm) source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz no-nbclassic.patch) @@ -19,7 +19,7 @@ prepare() { patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic dependency - sed -e '/nbclassic/d' -i $pkgname-$pkgver/setup.cfg + sed -e '/nbclassic/d' -e '/notebook<7/d' -i $pkgname-$pkgver/setup.cfg } build() {
