Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/
Date: Sat, 26 Mar 2022 00:01:21
Message-Id: 1648252843.2630992d7e26838c190192b06fbdb3d6b6921ac8.sam@gentoo
1 commit: 2630992d7e26838c190192b06fbdb3d6b6921ac8
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 23:50:06 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 00:00:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2630992d
7
8 dev-lang/crystal: [QA] fix tc-get* quoting
9
10 This can cause build problems for e.g. 32-bit (gcc -m32 ...)
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-lang/crystal/crystal-1.1.0.ebuild | 8 ++++----
15 dev-lang/crystal/crystal-1.1.1.ebuild | 8 ++++----
16 dev-lang/crystal/crystal-1.2.1.ebuild | 8 ++++----
17 dev-lang/crystal/crystal-1.2.2.ebuild | 8 ++++----
18 4 files changed, 16 insertions(+), 16 deletions(-)
19
20 diff --git a/dev-lang/crystal/crystal-1.1.0.ebuild b/dev-lang/crystal/crystal-1.1.0.ebuild
21 index 7af64a711416..a435a4600025 100644
22 --- a/dev-lang/crystal/crystal-1.1.0.ebuild
23 +++ b/dev-lang/crystal/crystal-1.1.0.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 +# Copyright 1999-2022 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI=7
30 @@ -70,9 +70,9 @@ src_compile() {
31 threads=$(makeopts_jobs) \
32 verbose=1 \
33 \
34 - CC=$(tc-getCC) \
35 - CXX=$(tc-getCXX) \
36 - AR=$(tc-getAR) \
37 + CC="$(tc-getCC)" \
38 + CXX="$(tc-getCXX)" \
39 + AR="$(tc-getAR)" \
40 LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" \
41 \
42 PATH="${bootstrap_path}:${PATH}" \
43
44 diff --git a/dev-lang/crystal/crystal-1.1.1.ebuild b/dev-lang/crystal/crystal-1.1.1.ebuild
45 index 5917510958e7..f21d7749e7a5 100644
46 --- a/dev-lang/crystal/crystal-1.1.1.ebuild
47 +++ b/dev-lang/crystal/crystal-1.1.1.ebuild
48 @@ -1,4 +1,4 @@
49 -# Copyright 1999-2021 Gentoo Authors
50 +# Copyright 1999-2022 Gentoo Authors
51 # Distributed under the terms of the GNU General Public License v2
52
53 EAPI=7
54 @@ -62,9 +62,9 @@ src_configure() {
55 stats=1
56 threads=$(makeopts_jobs)
57 verbose=1
58 - CC=$(tc-getCC)
59 - CXX=$(tc-getCXX)
60 - AR=$(tc-getAR)
61 + CC="$(tc-getCC)"
62 + CXX="$(tc-getCXX)"
63 + AR="$(tc-getAR)"
64 LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config"
65 PATH="${bootstrap_path}:${PATH}"
66 CRYSTAL_PATH=src
67
68 diff --git a/dev-lang/crystal/crystal-1.2.1.ebuild b/dev-lang/crystal/crystal-1.2.1.ebuild
69 index 6e531f8dcf46..7758bb838f9a 100644
70 --- a/dev-lang/crystal/crystal-1.2.1.ebuild
71 +++ b/dev-lang/crystal/crystal-1.2.1.ebuild
72 @@ -1,4 +1,4 @@
73 -# Copyright 1999-2021 Gentoo Authors
74 +# Copyright 1999-2022 Gentoo Authors
75 # Distributed under the terms of the GNU General Public License v2
76
77 EAPI=7
78 @@ -59,9 +59,9 @@ src_configure() {
79 stats=1
80 threads=$(makeopts_jobs)
81 verbose=1
82 - CC=$(tc-getCC)
83 - CXX=$(tc-getCXX)
84 - AR=$(tc-getAR)
85 + CC="$(tc-getCC)"
86 + CXX="$(tc-getCXX)"
87 + AR="$(tc-getAR)"
88 LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config"
89 PATH="${bootstrap_path}:${PATH}"
90 CRYSTAL_PATH=src
91
92 diff --git a/dev-lang/crystal/crystal-1.2.2.ebuild b/dev-lang/crystal/crystal-1.2.2.ebuild
93 index 6e531f8dcf46..7758bb838f9a 100644
94 --- a/dev-lang/crystal/crystal-1.2.2.ebuild
95 +++ b/dev-lang/crystal/crystal-1.2.2.ebuild
96 @@ -1,4 +1,4 @@
97 -# Copyright 1999-2021 Gentoo Authors
98 +# Copyright 1999-2022 Gentoo Authors
99 # Distributed under the terms of the GNU General Public License v2
100
101 EAPI=7
102 @@ -59,9 +59,9 @@ src_configure() {
103 stats=1
104 threads=$(makeopts_jobs)
105 verbose=1
106 - CC=$(tc-getCC)
107 - CXX=$(tc-getCXX)
108 - AR=$(tc-getAR)
109 + CC="$(tc-getCC)"
110 + CXX="$(tc-getCXX)"
111 + AR="$(tc-getAR)"
112 LLVM_CONFIG="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config"
113 PATH="${bootstrap_path}:${PATH}"
114 CRYSTAL_PATH=src