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 B4AFB158095 for ; Thu, 8 Sep 2022 10:24:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1400E09A8; Thu, 8 Sep 2022 10:24:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BD24FE09A8 for ; Thu, 8 Sep 2022 10:24:44 +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 037B034106C for ; Thu, 8 Sep 2022 10:24:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2C025CD for ; Thu, 8 Sep 2022 10:24:40 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1662632017.7073ef94dda7aa9f35922b54ba3e6f0a9f5739de.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/yuzu/yuzu-0_p20220725.ebuild X-VCS-Directories: games-emulation/yuzu/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 7073ef94dda7aa9f35922b54ba3e6f0a9f5739de X-VCS-Branch: dev Date: Thu, 8 Sep 2022 10:24:40 +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: 81aa2681-596f-428c-8ca7-0c3c66a4c440 X-Archives-Hash: f63e6c70bcff4511570de57406c04159 commit: 7073ef94dda7aa9f35922b54ba3e6f0a9f5739de Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu Sep 8 10:13:37 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu Sep 8 10:13:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7073ef94 games-emulation/yuzu: quote S/FILESDIR variables Signed-off-by: Andrew Ammerlaan gentoo.org> games-emulation/yuzu/yuzu-0_p20220725.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/games-emulation/yuzu/yuzu-0_p20220725.ebuild b/games-emulation/yuzu/yuzu-0_p20220725.ebuild index a307582e5..c1d3fd0d9 100644 --- a/games-emulation/yuzu/yuzu-0_p20220725.ebuild +++ b/games-emulation/yuzu/yuzu-0_p20220725.ebuild @@ -57,7 +57,7 @@ BDEPEND=" discord? ( >=dev-libs/rapidjson-1.1.0 ) " S="${WORKDIR}"/yuzu-mainline-dfaab8f6571856ec3c75cfad303a50503d213665 -PATCHES=( ${FILESDIR}/${P}.patch ) +PATCHES=( "${FILESDIR}/${P}.patch" ) REQUIRED_USE="|| ( qt5 sdl )" @@ -70,10 +70,10 @@ pkg_setup() { src_unpack() { default - mv "${WORKDIR}"/xbyak* ${S}/externals/xbyak/xbyak || die - mv "${WORKDIR}"/dynarmic*/* ${S}/externals/dynarmic || die + mv "${WORKDIR}"/xbyak* "${S}/externals/xbyak/xbyak" || die + mv "${WORKDIR}"/dynarmic*/* "${S}/externals/dynarmic" || die if use discord; then - mv "${WORKDIR}"/discord*/* ${S}/externals/discord-rpc || die + mv "${WORKDIR}"/discord*/* "${S}/externals/discord-rpc" || die fi } 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 AA16B158094 for ; Thu, 8 Sep 2022 10:24:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7BCBE09DC; Thu, 8 Sep 2022 10:24:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A2650E09DC for ; Thu, 8 Sep 2022 10:24:50 +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 54563341088 for ; Thu, 8 Sep 2022 10:24:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F7335CD for ; Thu, 8 Sep 2022 10:24:46 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1662632017.7073ef94dda7aa9f35922b54ba3e6f0a9f5739de.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-emulation/yuzu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/yuzu/yuzu-0_p20220725.ebuild X-VCS-Directories: games-emulation/yuzu/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 7073ef94dda7aa9f35922b54ba3e6f0a9f5739de X-VCS-Branch: master Date: Thu, 8 Sep 2022 10:24:46 +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: 76caaaa4-53e9-4a59-8198-c9b5c7f23462 X-Archives-Hash: 127b3f8a718b734f1d716f13f3c7fc57 Message-ID: <20220908102446.uqMiyqBg1E3UwZ51-ts6wJl6w-ikYg4H2ZkKXNLs3NA@z> commit: 7073ef94dda7aa9f35922b54ba3e6f0a9f5739de Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu Sep 8 10:13:37 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu Sep 8 10:13:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7073ef94 games-emulation/yuzu: quote S/FILESDIR variables Signed-off-by: Andrew Ammerlaan gentoo.org> games-emulation/yuzu/yuzu-0_p20220725.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/games-emulation/yuzu/yuzu-0_p20220725.ebuild b/games-emulation/yuzu/yuzu-0_p20220725.ebuild index a307582e5..c1d3fd0d9 100644 --- a/games-emulation/yuzu/yuzu-0_p20220725.ebuild +++ b/games-emulation/yuzu/yuzu-0_p20220725.ebuild @@ -57,7 +57,7 @@ BDEPEND=" discord? ( >=dev-libs/rapidjson-1.1.0 ) " S="${WORKDIR}"/yuzu-mainline-dfaab8f6571856ec3c75cfad303a50503d213665 -PATCHES=( ${FILESDIR}/${P}.patch ) +PATCHES=( "${FILESDIR}/${P}.patch" ) REQUIRED_USE="|| ( qt5 sdl )" @@ -70,10 +70,10 @@ pkg_setup() { src_unpack() { default - mv "${WORKDIR}"/xbyak* ${S}/externals/xbyak/xbyak || die - mv "${WORKDIR}"/dynarmic*/* ${S}/externals/dynarmic || die + mv "${WORKDIR}"/xbyak* "${S}/externals/xbyak/xbyak" || die + mv "${WORKDIR}"/dynarmic*/* "${S}/externals/dynarmic" || die if use discord; then - mv "${WORKDIR}"/discord*/* ${S}/externals/discord-rpc || die + mv "${WORKDIR}"/discord*/* "${S}/externals/discord-rpc" || die fi }