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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F047B158062 for ; Fri, 31 Mar 2023 16:23:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D1A5E0821; Fri, 31 Mar 2023 16:23:30 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A47FE0821 for ; Fri, 31 Mar 2023 16:23:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C744340D5A for ; Fri, 31 Mar 2023 16:23:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC5C98D8 for ; Fri, 31 Mar 2023 16:23:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1680279795.faa52c1c5bc2c1a2ac9382f22c6dd0802b8b7250.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/discord/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/discord/discord-0.0.26-r1.ebuild net-im/discord/discord-0.0.26.ebuild X-VCS-Directories: net-im/discord/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: faa52c1c5bc2c1a2ac9382f22c6dd0802b8b7250 X-VCS-Branch: master Date: Fri, 31 Mar 2023 16:23:27 +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: adee5c5b-b0d9-4f98-88b2-b294213162b4 X-Archives-Hash: 106b5c8ebc6eb30c98b71303d82b966f commit: faa52c1c5bc2c1a2ac9382f22c6dd0802b8b7250 Author: Sam James gentoo org> AuthorDate: Fri Mar 31 16:22:23 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 31 16:23:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faa52c1c net-im/discord: install chrome_crashpad_handler if it exists This fixes crashes at startup. Closes: https://bugs.gentoo.org/903616 Thanks-to: Jyrki Launonen yahoo.com> Signed-off-by: Sam James gentoo.org> net-im/discord/{discord-0.0.26.ebuild => discord-0.0.26-r1.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net-im/discord/discord-0.0.26.ebuild b/net-im/discord/discord-0.0.26-r1.ebuild similarity index 94% rename from net-im/discord/discord-0.0.26.ebuild rename to net-im/discord/discord-0.0.26-r1.ebuild index 95653d446eaa..9f84b3e48126 100644 --- a/net-im/discord/discord-0.0.26.ebuild +++ b/net-im/discord/discord-0.0.26-r1.ebuild @@ -116,6 +116,10 @@ src_install() { fowners root "${DESTDIR}/chrome-sandbox" fperms 4711 "${DESTDIR}/chrome-sandbox" + # Crashpad is included in the package once in a while and when it does, it must be installed. + # See #903616 and #890595 + [[ -x chrome_crashpad_handler ]] && doins chrome_crashpad_handler + dosym "${DESTDIR}/${MY_PN^}" "/usr/bin/${MY_PN}" }