From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 74F911581EC for ; Tue, 19 Nov 2024 09:57:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97960E093E; Tue, 19 Nov 2024 09:56:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7AFF0E093E for ; Tue, 19 Nov 2024 09:56:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 555A2335DCC for ; Tue, 19 Nov 2024 09:56:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B943BAED for ; Tue, 19 Nov 2024 09:56:56 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1732010206.df75b178b33ab56d7c67103c00941b6c5d5a22e5.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-im/revolt-desktop/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-im/revolt-desktop/revolt-desktop-1.0.8-r1.ebuild X-VCS-Directories: net-im/revolt-desktop/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: df75b178b33ab56d7c67103c00941b6c5d5a22e5 X-VCS-Branch: dev Date: Tue, 19 Nov 2024 09:56:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 81e61752-318a-4b8a-94bb-4170899faa85 X-Archives-Hash: be557b868c9e02070432aee4b828c6ab commit: df75b178b33ab56d7c67103c00941b6c5d5a22e5 Author: David Roman gmail com> AuthorDate: Tue Nov 19 09:56:23 2024 +0000 Commit: David Roman gmail com> CommitDate: Tue Nov 19 09:56:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=df75b178 net-im/revolt-desktop: fix broken symlink Add missing RDEPEND Add desktop file Closes: https://bugs.gentoo.org/943886 Signed-off-by: David Roman gmail.com> .../revolt-desktop/revolt-desktop-1.0.8-r1.ebuild | 67 ++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/net-im/revolt-desktop/revolt-desktop-1.0.8-r1.ebuild b/net-im/revolt-desktop/revolt-desktop-1.0.8-r1.ebuild new file mode 100644 index 000000000..b056c6d50 --- /dev/null +++ b/net-im/revolt-desktop/revolt-desktop-1.0.8-r1.ebuild @@ -0,0 +1,67 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop wrapper xdg + +DESCRIPTION="Revolt Desktop App" +HOMEPAGE="https://github.com/revoltchat/desktop https://revolt.chat/" +SRC_URI=" + amd64? ( https://github.com/revoltchat/desktop/releases/download/v${PV}/${P}.tar.gz -> ${P}.gh.tar.gz ) +" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + app-accessibility/at-spi2-core:2 + dev-lang/python + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/mesa + net-print/cups + sys-apps/dbus + sys-apps/systemd-utils + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrandr + x11-libs/libdrm + x11-libs/libxcb:= + x11-libs/libxkbcommon + x11-libs/pango +" + +QA_PREBUILT="*" + +DESTDIR="/opt/${PN}" + +src_install() { + exeinto "${DESTDIR}" + doexe "${PN}" chrome-sandbox libEGL.so libffmpeg.so libGLESv2.so libvk_swiftshader.so + + ln -sf "$(command -v python)" resources/app.asar.unpacked/node_modules/register-scheme/build/node_gyp_bins/python3 + + insinto "${DESTDIR}" + doins chrome_crashpad_handler chrome_{100,200}_percent.pak icudtl.dat resources.pak snapshot_blob.bin v8_context_snapshot.bin + insopts -m0755 + doins -r locales resources + + # Chrome-sandbox requires the setuid bit to be specifically set. + # see https://github.com/electron/electron/issues/17972 + fowners root "${DESTDIR}/chrome-sandbox" + fperms 4711 "${DESTDIR}/chrome-sandbox" + + make_wrapper "${PN}" "${DESTDIR}/${PN}" + make_desktop_entry revolt-desktop Revolt "" Network +}