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.bd1cba106b1b017959209317d535e31cc0be6b4d.andrewammerlaan@gentoo
1 commit: bd1cba106b1b017959209317d535e31cc0be6b4d
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 17:37:16 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=bd1cba10
7
8 sci-misc/jupyterlab-desktop-bin: drop 3.3.2.1
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.1.ebuild | 68 ----------------------
14 2 files changed, 69 deletions(-)
15
16 diff --git a/sci-misc/jupyterlab-desktop-bin/Manifest b/sci-misc/jupyterlab-desktop-bin/Manifest
17 index 84a9aefb45ff..dab2b3d20b19 100644
18 --- a/sci-misc/jupyterlab-desktop-bin/Manifest
19 +++ b/sci-misc/jupyterlab-desktop-bin/Manifest
20 @@ -1,2 +1 @@
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.1.ebuild b/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.2.1.ebuild
25 deleted file mode 100644
26 index 15bdd61754eb..000000000000
27 --- a/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.2.1.ebuild
28 +++ /dev/null
29 @@ -1,68 +0,0 @@
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 -}