diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-03-18 15:31:01 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-03-18 16:13:15 +0100 |
commit | b90b083c12fee2231a0d383e595a6814949cd737 (patch) | |
tree | 0cac098db84e99c5e4ab51d28dbb5eeaebaaad04 /net-im/rocketchat-desktop-bin | |
parent | dev-util/itstool: Stabilize 2.0.7 hppa, #834426 (diff) | |
download | gentoo-b90b083c12fee2231a0d383e595a6814949cd737.tar.gz gentoo-b90b083c12fee2231a0d383e595a6814949cd737.tar.bz2 gentoo-b90b083c12fee2231a0d383e595a6814949cd737.zip |
net-im/rocketchat-desktop-bin: add 3.7.9
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'net-im/rocketchat-desktop-bin')
-rw-r--r-- | net-im/rocketchat-desktop-bin/Manifest | 1 | ||||
-rw-r--r-- | net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.9.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest index d3a193f71817..e3d3e355a361 100644 --- a/net-im/rocketchat-desktop-bin/Manifest +++ b/net-im/rocketchat-desktop-bin/Manifest @@ -1 +1,2 @@ DIST rocketchat-3.7.8.x86_64.rpm 72461320 BLAKE2B 33cd4dd39c966761fb79c09002247924d1d59490c75c41c5941b8ecbc0a4fc7f05e3210388bea06a502cc01416e026cdf3ea38c81fdfc7a743e6b22a7e6fd302 SHA512 13d529ee32c2945b77e45220568a290c74a15d99fb49f1c595a78d2acd91a16556ea73fced2667ddbee6a986bf57677e2a0fab82eb0723e8f62a49a0e990588e +DIST rocketchat-3.7.9.x86_64.rpm 62177412 BLAKE2B 0acb4fb3c36e758073e81cfe41a2a2b184091e22ce9bf92290c9df6ba5c73da8bdd8525829d6b5795ed4c7910eb26aa761c08ec8f9efc84b6ec94182dc0ccd3d SHA512 6e1a65723ed7e419d94d58bb71d35596a0d261d92f1bcb56cc9341b3108714c4d9ff0e09982bfafd26e42e0ba48a6e7a181f4cfdb630f59659e6823c8aa9b39c diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.9.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.9.ebuild new file mode 100644 index 000000000000..194a95979a80 --- /dev/null +++ b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.9.ebuild @@ -0,0 +1,54 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit rpm xdg + +DESCRIPTION="The Ultimate Open Source Web Chat Platform" +HOMEPAGE="https://rocket.chat" +SRC_URI="https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${PV}/rocketchat-${PV}.x86_64.rpm" +S="${WORKDIR}" + +KEYWORDS="-* ~amd64" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + app-accessibility/at-spi2-atk:2 + dev-libs/atk + dev-libs/expat + dev-libs/libappindicator + dev-libs/nspr + dev-libs/nss + media-fonts/noto-emoji + media-libs/alsa-lib + net-print/cups + sys-libs/glibc + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libnotify + x11-libs/libxcb + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libxkbcommon + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/libXScrnSaver + x11-libs/pango +" + +QA_PREBUILT="opt/Rocket.Chat/*" + +src_install() { + # remove files useless for Gentoo + rm -r usr/lib || die + mv "${S}"/* "${ED}" || die +} |