Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/rocketchat-desktop-bin/
Date: Tue, 07 Dec 2021 10:04:03
Message-Id: 1638871437.bb9a5774f1bc70d9a2d4714f9316cf6cde0cd994.andrewammerlaan@gentoo
1 commit: bb9a5774f1bc70d9a2d4714f9316cf6cde0cd994
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 10:02:24 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 10:03:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9a5774
7
8 net-im/rocketchat-desktop-bin: add version 3.7.0
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 net-im/rocketchat-desktop-bin/Manifest | 1 +
14 .../rocketchat-desktop-bin-3.7.0.ebuild | 54 ++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest
18 index 5c2a7918b353..3cce9b693702 100644
19 --- a/net-im/rocketchat-desktop-bin/Manifest
20 +++ b/net-im/rocketchat-desktop-bin/Manifest
21 @@ -1 +1,2 @@
22 DIST rocketchat-3.6.0.x86_64.rpm 58643360 BLAKE2B 23e630112c8c28d39dbeb6824aa75d7289ad59e6cf061f2e61165511e2f57062832fb4ec64d9c985b1de94b0a28025b7f374d2a1428bc72eb6259f80cf79428d SHA512 8cc6b6842f9bdc3d13c4d293aa1aa75daba2bc66fab1262c051407fbe686fac1980e0abba3ccfa8d7cc6d96fc6391e24101b6baa9af3751edf4bf680968df142
23 +DIST rocketchat-3.7.0.x86_64.rpm 72048484 BLAKE2B c7f2d81df1cde64caf0699ac706891bd3d5bb38a976354abb344a6ea65f465fb32ceeb08c445621f5a65eda1b886b836520095ee295f7c1c6dd32ab498ea77ff SHA512 c4574520bdb60666eefde5899e304b65dc7cc9eb2cce7221d84cef6e3d003ecee0630c2175357591b5545d682be16c7bade490f37df86f80db1948c30a50e52c
24
25 diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild
26 new file mode 100644
27 index 000000000000..46fc3d26d958
28 --- /dev/null
29 +++ b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild
30 @@ -0,0 +1,54 @@
31 +# Copyright 2019-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit rpm xdg
37 +
38 +DESCRIPTION="The Ultimate Open Source Web Chat Platform"
39 +HOMEPAGE="https://rocket.chat"
40 +SRC_URI="https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${PV}/rocketchat-${PV}.x86_64.rpm"
41 +
42 +KEYWORDS="-* ~amd64"
43 +LICENSE="MIT"
44 +SLOT="0"
45 +
46 +RDEPEND="
47 + app-accessibility/at-spi2-atk:2
48 + dev-libs/atk
49 + dev-libs/expat
50 + dev-libs/libappindicator
51 + dev-libs/nspr
52 + dev-libs/nss
53 + media-fonts/noto-emoji
54 + media-libs/alsa-lib
55 + net-print/cups
56 + x11-libs/cairo
57 + x11-libs/gdk-pixbuf:2
58 + x11-libs/gtk+:3
59 + x11-libs/libnotify
60 + x11-libs/libxcb
61 + x11-libs/libX11
62 + x11-libs/libXcomposite
63 + x11-libs/libXcursor
64 + x11-libs/libXdamage
65 + x11-libs/libXext
66 + x11-libs/libXfixes
67 + x11-libs/libXi
68 + x11-libs/libxkbcommon
69 + x11-libs/libXrandr
70 + x11-libs/libXrender
71 + x11-libs/libXtst
72 + x11-libs/libXScrnSaver
73 + x11-libs/pango
74 +"
75 +
76 +QA_PREBUILT="/opt/Rocket.Chat/*"
77 +
78 +S="${WORKDIR}"
79 +
80 +src_install() {
81 + # remove files useless for Gentoo
82 + rm -r usr/lib || die
83 + mv "${S}"/* "${ED}" || die
84 +}