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 CE12015808B for ; Sun, 20 Mar 2022 00:26:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37363E08ED; Sun, 20 Mar 2022 00:26:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0DC4E08A0 for ; Sun, 20 Mar 2022 00:26:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 187A1342EF4 for ; Sun, 20 Mar 2022 00:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9ACA832F for ; Sun, 20 Mar 2022 00:26:20 +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: <1647735913.9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/stockfish/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/stockfish/stockfish-10.ebuild games-board/stockfish/stockfish-13.ebuild games-board/stockfish/stockfish-14.1.ebuild games-board/stockfish/stockfish-14.ebuild X-VCS-Directories: games-board/stockfish/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71 X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:26:20 +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: 926a7efc-69ca-45c6-ad06-6898483c02e3 X-Archives-Hash: 2baa39729f9fd02acce77a9abfb86d04 commit: 9c2a341fbbc3fa0f15b48c0c49b4fed99e10ad71 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 00:25:13 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 00:25:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c2a341f games-board/stockfish: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> games-board/stockfish/stockfish-10.ebuild | 6 +++--- games-board/stockfish/stockfish-13.ebuild | 6 +++--- games-board/stockfish/stockfish-14.1.ebuild | 6 +++--- games-board/stockfish/stockfish-14.ebuild | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/games-board/stockfish/stockfish-10.ebuild b/games-board/stockfish/stockfish-10.ebuild index 5974776f35e1..f8c2aa054feb 100644 --- a/games-board/stockfish/stockfish-10.ebuild +++ b/games-board/stockfish/stockfish-10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -57,8 +57,8 @@ src_compile() { # COMPILER to support Travis CI and we abuse it to make sure that we # build with our compiler of choice. emake all ARCH="${my_arch}" \ - COMP=$(tc-getCXX) \ - COMPILER=$(tc-getCXX) \ + COMP="$(tc-getCXX)" \ + COMPILER="$(tc-getCXX)" \ debug=$(usex debug "yes" "no") \ optimize=$(usex optimize "yes" "no") } diff --git a/games-board/stockfish/stockfish-13.ebuild b/games-board/stockfish/stockfish-13.ebuild index 69d38bbeee91..7e9dda906792 100644 --- a/games-board/stockfish/stockfish-13.ebuild +++ b/games-board/stockfish/stockfish-13.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -62,8 +62,8 @@ src_compile() { # COMPILER to support Travis CI and we abuse it to make sure that we # build with our compiler of choice. emake all ARCH="${my_arch}" \ - COMP=$(tc-getCXX) \ - COMPILER=$(tc-getCXX) \ + COMP="$(tc-getCXX)" \ + COMPILER="$(tc-getCXX)" \ debug=$(usex debug "yes" "no") \ optimize=$(usex optimize "yes" "no") } diff --git a/games-board/stockfish/stockfish-14.1.ebuild b/games-board/stockfish/stockfish-14.1.ebuild index 95f30e5ff4b6..2ccc74178557 100644 --- a/games-board/stockfish/stockfish-14.1.ebuild +++ b/games-board/stockfish/stockfish-14.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -62,8 +62,8 @@ src_compile() { # COMPILER to support Travis CI and we abuse it to make sure that we # build with our compiler of choice. emake all ARCH="${my_arch}" \ - COMP=$(tc-getCXX) \ - COMPILER=$(tc-getCXX) \ + COMP="$(tc-getCXX)" \ + COMPILER="$(tc-getCXX)" \ debug=$(usex debug "yes" "no") \ optimize=$(usex optimize "yes" "no") } diff --git a/games-board/stockfish/stockfish-14.ebuild b/games-board/stockfish/stockfish-14.ebuild index 4fb8113d9839..dd2f85f84bc6 100644 --- a/games-board/stockfish/stockfish-14.ebuild +++ b/games-board/stockfish/stockfish-14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -62,8 +62,8 @@ src_compile() { # COMPILER to support Travis CI and we abuse it to make sure that we # build with our compiler of choice. emake all ARCH="${my_arch}" \ - COMP=$(tc-getCXX) \ - COMPILER=$(tc-getCXX) \ + COMP="$(tc-getCXX)" \ + COMPILER="$(tc-getCXX)" \ debug=$(usex debug "yes" "no") \ optimize=$(usex optimize "yes" "no") }