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 677B315808B for ; Sat, 26 Mar 2022 00:01:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E51BCE089C; Sat, 26 Mar 2022 00:01:18 +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 C703DE089C for ; Sat, 26 Mar 2022 00:01:18 +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 D9F25343504 for ; Sat, 26 Mar 2022 00:01:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 311FC350 for ; Sat, 26 Mar 2022 00:01:15 +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: <1648252843.2630992d7e26838c190192b06fbdb3d6b6921ac8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/crystal/crystal-1.1.0.ebuild dev-lang/crystal/crystal-1.1.1.ebuild dev-lang/crystal/crystal-1.2.1.ebuild dev-lang/crystal/crystal-1.2.2.ebuild X-VCS-Directories: dev-lang/crystal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2630992d7e26838c190192b06fbdb3d6b6921ac8 X-VCS-Branch: master Date: Sat, 26 Mar 2022 00:01:15 +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: bd49e481-6f9d-4a10-9ee7-affc1f84e75b X-Archives-Hash: 8a9fa3ecbe2fb2b19072f42c69bb7cde commit: 2630992d7e26838c190192b06fbdb3d6b6921ac8 Author: Sam James gentoo org> AuthorDate: Fri Mar 25 23:50:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 26 00:00:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2630992d dev-lang/crystal: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> dev-lang/crystal/crystal-1.1.0.ebuild | 8 ++++---- dev-lang/crystal/crystal-1.1.1.ebuild | 8 ++++---- dev-lang/crystal/crystal-1.2.1.ebuild | 8 ++++---- dev-lang/crystal/crystal-1.2.2.ebuild | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/dev-lang/crystal/crystal-1.1.0.ebuild b/dev-lang/crystal/crystal-1.1.0.ebuild index 7af64a711416..a435a4600025 100644 --- a/dev-lang/crystal/crystal-1.1.0.ebuild +++ b/dev-lang/crystal/crystal-1.1.0.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 @@ -70,9 +70,9 @@ src_compile() { threads=$(makeopts_jobs) \ verbose=1 \ \ - CC=$(tc-getCC) \ - CXX=$(tc-getCXX) \ - AR=$(tc-getAR) \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + AR="$(tc-getAR)" \ LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" \ \ PATH="${bootstrap_path}:${PATH}" \ diff --git a/dev-lang/crystal/crystal-1.1.1.ebuild b/dev-lang/crystal/crystal-1.1.1.ebuild index 5917510958e7..f21d7749e7a5 100644 --- a/dev-lang/crystal/crystal-1.1.1.ebuild +++ b/dev-lang/crystal/crystal-1.1.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,9 +62,9 @@ src_configure() { stats=1 threads=$(makeopts_jobs) verbose=1 - CC=$(tc-getCC) - CXX=$(tc-getCXX) - AR=$(tc-getAR) + CC="$(tc-getCC)" + CXX="$(tc-getCXX)" + AR="$(tc-getAR)" LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" PATH="${bootstrap_path}:${PATH}" CRYSTAL_PATH=src diff --git a/dev-lang/crystal/crystal-1.2.1.ebuild b/dev-lang/crystal/crystal-1.2.1.ebuild index 6e531f8dcf46..7758bb838f9a 100644 --- a/dev-lang/crystal/crystal-1.2.1.ebuild +++ b/dev-lang/crystal/crystal-1.2.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 @@ -59,9 +59,9 @@ src_configure() { stats=1 threads=$(makeopts_jobs) verbose=1 - CC=$(tc-getCC) - CXX=$(tc-getCXX) - AR=$(tc-getAR) + CC="$(tc-getCC)" + CXX="$(tc-getCXX)" + AR="$(tc-getAR)" LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" PATH="${bootstrap_path}:${PATH}" CRYSTAL_PATH=src diff --git a/dev-lang/crystal/crystal-1.2.2.ebuild b/dev-lang/crystal/crystal-1.2.2.ebuild index 6e531f8dcf46..7758bb838f9a 100644 --- a/dev-lang/crystal/crystal-1.2.2.ebuild +++ b/dev-lang/crystal/crystal-1.2.2.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 @@ -59,9 +59,9 @@ src_configure() { stats=1 threads=$(makeopts_jobs) verbose=1 - CC=$(tc-getCC) - CXX=$(tc-getCXX) - AR=$(tc-getAR) + CC="$(tc-getCC)" + CXX="$(tc-getCXX)" + AR="$(tc-getAR)" LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" PATH="${bootstrap_path}:${PATH}" CRYSTAL_PATH=src