From f3a5278b2a9275e8472964e5b6915046eae67ea4 Mon Sep 17 00:00:00 2001 From: casparl Date: Tue, 18 Oct 2022 10:36:25 +0200 Subject: [PATCH] Add checksum to jupyterlmod and remove unnecessary comment. Shorten line in jupyter-server. Add binutils to jupyterlmod as builddep. --- .../jupyter-server-1.21.0-GCCcore-11.3.0.eb | 3 ++- .../jupyterlmod-3.0.0-GCCcore-11.3.0.eb | 15 +++++++++------ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/easybuild/easyconfigs/j/jupyter-server/jupyter-server-1.21.0-GCCcore-11.3.0.eb b/easybuild/easyconfigs/j/jupyter-server/jupyter-server-1.21.0-GCCcore-11.3.0.eb index f44e22d0b9f..4c395ad4b1c 100644 --- a/easybuild/easyconfigs/j/jupyter-server/jupyter-server-1.21.0-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/j/jupyter-server/jupyter-server-1.21.0-GCCcore-11.3.0.eb @@ -4,7 +4,8 @@ name = 'jupyter-server' version = '1.21.0' homepage = 'https://github.com/jupyter-server/jupyter-server' -description = """The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila.""" +description = """The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints) +for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila.""" toolchain = {'name': 'GCCcore', 'version': '11.3.0'} diff --git a/easybuild/easyconfigs/j/jupyterlmod/jupyterlmod-3.0.0-GCCcore-11.3.0.eb b/easybuild/easyconfigs/j/jupyterlmod/jupyterlmod-3.0.0-GCCcore-11.3.0.eb index c7917ccd912..8ddf17c5047 100644 --- a/easybuild/easyconfigs/j/jupyterlmod/jupyterlmod-3.0.0-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/j/jupyterlmod/jupyterlmod-3.0.0-GCCcore-11.3.0.eb @@ -9,9 +9,9 @@ description = """Jupyter interactive notebook server extension that allows user toolchain = {'name': 'GCCcore', 'version': '11.3.0'} -#source_urls = [PYPI_SOURCE] -#sources = [SOURCE_TAR_GZ] -#checksums = ['da769078650766b1fca6ef1e673d15ddd6ce7428001e05cc364cba246a77c3fe'] +builddependencies = [ + ('binutils', '2.38'), +] dependencies = [ ('Python', '3.10.4'), @@ -22,12 +22,15 @@ dependencies = [ use_pip = True exts_list = [ - ('jupyter_server', '1.21.0'), - (name, version), + ('jupyter_server', '1.21.0', { + 'checksums': ['d0adca19913a3763359be7f0b8c2ea8bfde356f4b8edd8e3149d7d0fbfaa248b'], + }), + (name, version, { + 'checksums': ['da769078650766b1fca6ef1e673d15ddd6ce7428001e05cc364cba246a77c3fe'], + }), ] # Add the notebook extension to the search path for jupyter notebooks -# modextrapaths = { 'JUPYTER_PATH': 'share/jupyter/', }