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 3AE0015815E for ; Mon, 5 Feb 2024 11:28:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA64EE2A4E; Mon, 5 Feb 2024 11:28:41 +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 8DAA3E2A4E for ; Mon, 5 Feb 2024 11:28:41 +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 A42A63430F0 for ; Mon, 5 Feb 2024 11:28:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 841F414C8 for ; Mon, 5 Feb 2024 11:28:37 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1707132511.4a9728077951bd4078a3e32eb1cdd8b81935410c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/ryujinx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/ryujinx/ryujinx-1.1.1104.ebuild X-VCS-Directories: games-emulation/ryujinx/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 4a9728077951bd4078a3e32eb1cdd8b81935410c X-VCS-Branch: master Date: Mon, 5 Feb 2024 11:28:37 +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: ed57e001-00a7-4fd1-a018-1ae57da8d0f5 X-Archives-Hash: fcc11a0a2c8912e0b0b25e0183ab6316 commit: 4a9728077951bd4078a3e32eb1cdd8b81935410c Author: Maciej Barć gentoo org> AuthorDate: Mon Feb 5 08:37:12 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Feb 5 11:28:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a972807 games-emulation/ryujinx: fix launcher install on musl Signed-off-by: Maciej Barć gentoo.org> games-emulation/ryujinx/ryujinx-1.1.1104.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/games-emulation/ryujinx/ryujinx-1.1.1104.ebuild b/games-emulation/ryujinx/ryujinx-1.1.1104.ebuild index 99d0241df2f0..448995f99981 100644 --- a/games-emulation/ryujinx/ryujinx-1.1.1104.ebuild +++ b/games-emulation/ryujinx/ryujinx-1.1.1104.ebuild @@ -336,8 +336,9 @@ RDEPEND=" " CHECKREQS_DISK_BUILD="3G" -DOTNET_PKG_PROJECTS=( "src/${PN^}/${PN^}.csproj" ) - +DOTNET_PKG_PROJECTS=( + "src/${PN^}/${PN^}.csproj" +) PATCHES=( "${FILESDIR}/${PN}-1.1.1093-better-defaults.patch" "${FILESDIR}/${PN}-1.1.1093-disable-updates.patch" @@ -371,7 +372,10 @@ src_test() { src_install() { dotnet-pkg-base_install - fperms +x "/usr/share/${P}/${PN^}.sh" + # "Ryujinx.sh" launcher script is only copied for "linux-x64" RID, + # let's copy it unconditionally. Bug: https://bugs.gentoo.org/923817 + exeinto "/usr/share/${P}" + doexe "distribution/linux/${PN^}.sh" dotnet-pkg-base_dolauncher "/usr/share/${P}/${PN^}.sh" newicon distribution/misc/Logo.svg "${PN^}.svg"