Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/jupyterlab-desktop-bin/
Date: Mon, 28 Mar 2022 18:21:38
Message-Id: 1648491678.63662c381c0f34a257bb747f7f0f8996c9cf3a16.andrewammerlaan@gentoo
1 commit: 63662c381c0f34a257bb747f7f0f8996c9cf3a16
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 17:37:03 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 18:21:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63662c38
7
8 sci-misc/jupyterlab-desktop-bin: add 3.3.2.2
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 sci-misc/jupyterlab-desktop-bin/Manifest | 1 +
13 .../jupyterlab-desktop-bin-3.3.2.2.ebuild | 68 ++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/sci-misc/jupyterlab-desktop-bin/Manifest b/sci-misc/jupyterlab-desktop-bin/Manifest
17 index 3a66dc82e4ca..84a9aefb45ff 100644
18 --- a/sci-misc/jupyterlab-desktop-bin/Manifest
19 +++ b/sci-misc/jupyterlab-desktop-bin/Manifest
20 @@ -1 +1,2 @@
21 DIST jupyterlab-desktop-bin-3.3.2.1.rpm 316847336 BLAKE2B 76812cccfdc52a5588f40fc0338136d1af94c08360226e2c90ec04bee3ba7a48829e1e8ebdd47303ee193a678f554d39e33ecb9e28e05a63f38ae6c54c995be1 SHA512 bcc37b7a6dcedbdfa24e7591a33f9c152647287738b4c5bf44af387445b6c73d4855fe238fed557ee6eae8399fc3bcc4f6b19f07e712ae7c73d7372dcf0df66c
22 +DIST jupyterlab-desktop-bin-3.3.2.2.rpm 316224896 BLAKE2B 93f2345f67648f5269b9a7c6f37a1a3275a787d8a8ee082c95270ec52cabbe037eaf968af3f27e2fafe6a6ccf1393755eb586bc26790a1703056c5ab764500dd SHA512 a3bdef78c1823c8aa734db3496c7ff8f2c56d77b13aef3d36364160f13ad6b9cde8c6b66ddb66fb386f50325fb04a62fec85bce1110a49df9f4cd3f257751941
23
24 diff --git a/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.2.2.ebuild b/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.2.2.ebuild
25 new file mode 100644
26 index 000000000000..15bdd61754eb
27 --- /dev/null
28 +++ b/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.2.2.ebuild
29 @@ -0,0 +1,68 @@
30 +# Copyright 2019-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit rpm xdg
36 +
37 +DESCRIPTION="JupyterLab desktop application, based on Electron"
38 +HOMEPAGE="https://jupyter.org/"
39 +SRC_URI="https://github.com/jupyterlab/${PN%%-bin}/releases/download/v$(ver_rs 3 -)/JupyterLab-Setup-Fedora.rpm -> ${P}.rpm"
40 +
41 +KEYWORDS="-* ~amd64"
42 +LICENSE="BSD MIT"
43 +SLOT="0"
44 +
45 +RDEPEND="
46 + app-accessibility/at-spi2-atk
47 + app-accessibility/at-spi2-core
48 + dev-libs/atk
49 + dev-libs/expat
50 + dev-libs/glib
51 + dev-libs/nspr
52 + dev-libs/nss
53 + dev-python/jupyterlab
54 + media-libs/alsa-lib
55 + media-libs/mesa
56 + net-print/cups
57 + sys-apps/dbus
58 + sys-libs/glibc
59 + x11-libs/cairo
60 + x11-libs/gdk-pixbuf
61 + x11-libs/gtk+:3
62 + x11-libs/libdrm
63 + x11-libs/libX11
64 + x11-libs/libxcb
65 + x11-libs/libXcomposite
66 + x11-libs/libXdamage
67 + x11-libs/libXext
68 + x11-libs/libXfixes
69 + x11-libs/libxkbcommon
70 + x11-libs/libXrandr
71 + x11-libs/libxshmfence
72 + x11-libs/pango
73 +"
74 +
75 +QA_PREBUILT="opt/JupyterLab/*"
76 +
77 +S="${WORKDIR}"
78 +
79 +src_install() {
80 + # remove files useless for Gentoo
81 + rm -r usr/lib || die
82 + mv "${S}"/* "${ED}" || die
83 + # add convenience symlink to launch from cli
84 + dosym ../JupyterLab/jupyterlab-desktop /opt/bin/jupyterlab-desktop
85 +}
86 +
87 +pkg_postinst() {
88 + xdg_pkg_postinst
89 + elog ""
90 + elog "On initial startup you will be prompted to select the python environment of"
91 + elog "your choice. Either select a specific python version, e.g. /usr/bin/pythonX.Y,"
92 + elog "or choose /usr/bin/python to follow the system wide setting in"
93 + elog "/etc/python-exec/python-exec.conf."
94 + elog "Please note that only python environments corresponding to the enabled"
95 + elog "PYTHON_TARGETS on dev-python/jupyterlab will work."
96 + elog ""
97 +}