From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id C519C1580E0 for ; Thu, 30 Jan 2025 12:16:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id AD84A343028 for ; Thu, 30 Jan 2025 12:16:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A1F001103B6; Thu, 30 Jan 2025 12:15: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 bobolink.gentoo.org (Postfix) with ESMTPS id 981721103B6 for ; Thu, 30 Jan 2025 12:15: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 510E8342FEF for ; Thu, 30 Jan 2025 12:15:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF92120D7 for ; Thu, 30 Jan 2025 12:15:57 +0000 (UTC) From: "Vincent Ahluwalia" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vincent Ahluwalia" Message-ID: <1738239345.6d2bf75fc6d74e466b1610a2bf47457b12330964.vincentahluwalia@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-util/curseforge/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-util/curseforge/curseforge-1.269.2.22204.ebuild X-VCS-Directories: games-util/curseforge/ X-VCS-Committer: vincentahluwalia X-VCS-Committer-Name: Vincent Ahluwalia X-VCS-Revision: 6d2bf75fc6d74e466b1610a2bf47457b12330964 X-VCS-Branch: dev Date: Thu, 30 Jan 2025 12:15:57 +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: 6abceebc-4db3-439d-b901-c051182a3feb X-Archives-Hash: 76d2cce616b51e268e60252a8e8113c9 commit: 6d2bf75fc6d74e466b1610a2bf47457b12330964 Author: Vincent Ahluwalia protonmail com> AuthorDate: Thu Jan 30 12:14:29 2025 +0000 Commit: Vincent Ahluwalia protonmail com> CommitDate: Thu Jan 30 12:15:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d2bf75f games-util/curseforge: Fix bugs 949065, 949066 and 949067 Signed-off-by: Vincent Ahluwalia protonmail.com> games-util/curseforge/curseforge-1.269.2.22204.ebuild | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/games-util/curseforge/curseforge-1.269.2.22204.ebuild b/games-util/curseforge/curseforge-1.269.2.22204.ebuild index 22cd1d8be..50e6153b9 100644 --- a/games-util/curseforge/curseforge-1.269.2.22204.ebuild +++ b/games-util/curseforge/curseforge-1.269.2.22204.ebuild @@ -9,7 +9,7 @@ CHROMIUM_LANGS=" sw ta te th tr uk ur vi zh-CN zh-TW " -inherit chromium-2 desktop unpacker linux-info +inherit chromium-2 desktop unpacker linux-info xdg-utils DESCRIPTION="The CurseForge Electron App" HOMEPAGE="https://www.curseforge.com/" @@ -21,7 +21,7 @@ SLOT="0" KEYWORDS="~amd64" RESTRICT="bindist mirror strip test" -DEPEND=" +RDEPEND=" app-accessibility/at-spi2-core dev-libs/expat dev-libs/glib @@ -48,6 +48,7 @@ DEPEND=" x11-libs/pango x11-misc/xdg-utils " +DEPEND="${RDEPEND}" DESTDIR="/opt/${PN}" @@ -89,4 +90,11 @@ pkg_postinst() { elog "This package will keep itself up-to-date." elog "No need to download any ebuilds in the future." elog "CurseForge is not open-source." + xdg_icon_cache_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update }