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, 02 May 2022 10:56:48
Message-Id: 1651488996.644ab0ecfbbba69be54a91453d1fa38b18a5256b.andrewammerlaan@gentoo
1 commit: 644ab0ecfbbba69be54a91453d1fa38b18a5256b
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 10:55:06 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 10:56:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=644ab0ec
7
8 sci-misc/jupyterlab-desktop-bin: drop 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 deletions(-)
15
16 diff --git a/sci-misc/jupyterlab-desktop-bin/Manifest b/sci-misc/jupyterlab-desktop-bin/Manifest
17 index c562ad9f98b8..948f06fc5faf 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.2.rpm 316224896 BLAKE2B 93f2345f67648f5269b9a7c6f37a1a3275a787d8a8ee082c95270ec52cabbe037eaf968af3f27e2fafe6a6ccf1393755eb586bc26790a1703056c5ab764500dd SHA512 a3bdef78c1823c8aa734db3496c7ff8f2c56d77b13aef3d36364160f13ad6b9cde8c6b66ddb66fb386f50325fb04a62fec85bce1110a49df9f4cd3f257751941
22 DIST jupyterlab-desktop-bin-3.3.4.2.rpm 317104304 BLAKE2B d983738b3f0e8bf25014e5c4dca2eb0ccfd5be238d2376a3703a2f5347687d1737b97fed8cf5a8937a1b2258bc26bb6fb4311624fbd76d690c88f74569b4c2d3 SHA512 d444865a2a51d10d27ffb8f98f137151eaccc8901dadbdb34794fd705cc395b33ee789ad921fa03300ff31657805e51a61656f3ece35c98843737d751512637c
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 deleted file mode 100644
26 index 15bdd61754eb..000000000000
27 --- a/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.2.2.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 -}