Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/
Date: Wed, 02 Oct 2019 20:27:43
Message-Id: 1570048055.deb0943d59970cc531d30502195d2fa0aae2e7e7.mgorny@gentoo
1 commit: deb0943d59970cc531d30502195d2fa0aae2e7e7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 20:25:00 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 20:27:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb0943d
7
8 sys-devel/llvm: Switch outdated target reports to eqawarn
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/llvm/llvm-10.0.0.9999.ebuild | 14 +++++++-------
13 1 file changed, 7 insertions(+), 7 deletions(-)
14
15 diff --git a/sys-devel/llvm/llvm-10.0.0.9999.ebuild b/sys-devel/llvm/llvm-10.0.0.9999.ebuild
16 index eccfd8a533b..bd137968658 100644
17 --- a/sys-devel/llvm/llvm-10.0.0.9999.ebuild
18 +++ b/sys-devel/llvm/llvm-10.0.0.9999.ebuild
19 @@ -109,16 +109,16 @@ check_live_ebuild() {
20 all_targets=( "${prod_targets[@]}" "${exp_targets[@]}" )
21
22 if [[ ${exp_targets[*]} != ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]} ]]; then
23 - ewarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!"
24 - ewarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}"
25 - ewarn "Expected: ${exp_targets[*]}"
26 - ewarn
27 + eqawarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!"
28 + eqawarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}"
29 + eqawarn "Expected: ${exp_targets[*]}"
30 + eqawarn
31 fi
32
33 if [[ ${all_targets[*]} != ${ALL_LLVM_TARGETS[*]#llvm_targets_} ]]; then
34 - ewarn "ALL_LLVM_TARGETS is outdated!"
35 - ewarn " Have: ${ALL_LLVM_TARGETS[*]#llvm_targets_}"
36 - ewarn "Expected: ${all_targets[*]}"
37 + eqawarn "ALL_LLVM_TARGETS is outdated!"
38 + eqawarn " Have: ${ALL_LLVM_TARGETS[*]#llvm_targets_}"
39 + eqawarn "Expected: ${all_targets[*]}"
40 fi
41 }