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: Sun, 07 Aug 2022 08:58:30
Message-Id: 1659862698.c601161bcbee5a16ba5a10c9432cc851d10ea1bc.andrewammerlaan@gentoo
1 commit: c601161bcbee5a16ba5a10c9432cc851d10ea1bc
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 7 08:57:54 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 7 08:58:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c601161b
7
8 sci-misc/jupyterlab-desktop-bin: drop 3.3.4.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.4.2.ebuild | 72 ----------------------
14 2 files changed, 73 deletions(-)
15
16 diff --git a/sci-misc/jupyterlab-desktop-bin/Manifest b/sci-misc/jupyterlab-desktop-bin/Manifest
17 index 0ad85ece09e0..fb35d2939183 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.4.2.rpm 317104304 BLAKE2B d983738b3f0e8bf25014e5c4dca2eb0ccfd5be238d2376a3703a2f5347687d1737b97fed8cf5a8937a1b2258bc26bb6fb4311624fbd76d690c88f74569b4c2d3 SHA512 d444865a2a51d10d27ffb8f98f137151eaccc8901dadbdb34794fd705cc395b33ee789ad921fa03300ff31657805e51a61656f3ece35c98843737d751512637c
22 DIST jupyterlab-desktop-bin-3.4.4.1.rpm 318510660 BLAKE2B ddbe9786082546bcefd39f7aa9cf631d5dd830c0771e1eca84838829433503dd37a1445e232a4a9c9332a256a294034a6538b3115b105063a2c26698f40a0c07 SHA512 5556e75fbedf8e152811b1164364dbc4d99fbfb6cd41ced81d479673f5705dade6d15240bc5096338de0056970fffc32444aa78c93bb1b66b44bc266a7254d8d
23
24 diff --git a/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.4.2.ebuild b/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.4.2.ebuild
25 deleted file mode 100644
26 index aff596591a12..000000000000
27 --- a/sci-misc/jupyterlab-desktop-bin/jupyterlab-desktop-bin-3.3.4.2.ebuild
28 +++ /dev/null
29 @@ -1,72 +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 -# Electron bundles a bunch of things
43 -LICENSE="
44 - MIT BSD BSD-2 BSD-4 AFL-2.1 Apache-2.0 Ms-PL GPL-2 LGPL-2.1 APSL-2
45 - unRAR OFL CC-BY-SA-3.0 MPL-2.0 android public-domain all-rights-reserved
46 -"
47 -SLOT="0"
48 -
49 -RDEPEND="
50 - app-accessibility/at-spi2-atk
51 - app-accessibility/at-spi2-core
52 - dev-libs/atk
53 - dev-libs/expat
54 - dev-libs/glib
55 - dev-libs/nspr
56 - dev-libs/nss
57 - dev-python/jupyterlab
58 - media-libs/alsa-lib
59 - media-libs/mesa
60 - net-print/cups
61 - sys-apps/dbus
62 - sys-libs/glibc
63 - x11-libs/cairo
64 - x11-libs/gdk-pixbuf
65 - x11-libs/gtk+:3
66 - x11-libs/libdrm
67 - x11-libs/libX11
68 - x11-libs/libxcb
69 - x11-libs/libXcomposite
70 - x11-libs/libXdamage
71 - x11-libs/libXext
72 - x11-libs/libXfixes
73 - x11-libs/libxkbcommon
74 - x11-libs/libXrandr
75 - x11-libs/libxshmfence
76 - x11-libs/pango
77 -"
78 -
79 -QA_PREBUILT="opt/JupyterLab/*"
80 -
81 -S="${WORKDIR}"
82 -
83 -src_install() {
84 - # remove files useless for Gentoo
85 - rm -r usr/lib || die
86 - mv "${S}"/* "${ED}" || die
87 - # add convenience symlink to launch from cli
88 - dosym ../JupyterLab/jupyterlab-desktop /opt/bin/jupyterlab-desktop
89 -}
90 -
91 -pkg_postinst() {
92 - xdg_pkg_postinst
93 - elog ""
94 - elog "On initial startup you will be prompted to select the python environment of"
95 - elog "your choice. Either select a specific python version, e.g. /usr/bin/pythonX.Y,"
96 - elog "or choose /usr/bin/python to follow the system wide setting in"
97 - elog "/etc/python-exec/python-exec.conf."
98 - elog "Please note that only python environments corresponding to the enabled"
99 - elog "PYTHON_TARGETS on dev-python/jupyterlab will work."
100 - elog ""
101 -}