Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/
Date: Mon, 12 Jul 2021 23:32:51
Message-Id: 1626132711.a99f2ebfa423b6ceb3cbe98987f3a58144403fce.whissi@gentoo
1 commit: a99f2ebfa423b6ceb3cbe98987f3a58144403fce
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 12 23:02:50 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 12 23:31:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a99f2ebf
7
8 www-client/firefox: downgrading ewarn to einfo in llvm_check_deps
9
10 Bug: https://bugs.gentoo.org/795351
11 Package-Manager: Portage-3.0.21, Repoman-3.0.3
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 www-client/firefox/firefox-78.12.0.ebuild | 6 +++---
15 www-client/firefox/firefox-90.0.ebuild | 6 +++---
16 2 files changed, 6 insertions(+), 6 deletions(-)
17
18 diff --git a/www-client/firefox/firefox-78.12.0.ebuild b/www-client/firefox/firefox-78.12.0.ebuild
19 index 04d5ea5d3d6..36a8533d36e 100644
20 --- a/www-client/firefox/firefox-78.12.0.ebuild
21 +++ b/www-client/firefox/firefox-78.12.0.ebuild
22 @@ -201,19 +201,19 @@ fi
23
24 llvm_check_deps() {
25 if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then
26 - ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
27 + einfo "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
28 return 1
29 fi
30
31 if use clang ; then
32 if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then
33 - ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
34 + einfo "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
35 return 1
36 fi
37
38 if use pgo ; then
39 if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then
40 - ewarn "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
41 + einfo "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
42 return 1
43 fi
44 fi
45
46 diff --git a/www-client/firefox/firefox-90.0.ebuild b/www-client/firefox/firefox-90.0.ebuild
47 index f12a10c1a28..9ecfb11e4d5 100644
48 --- a/www-client/firefox/firefox-90.0.ebuild
49 +++ b/www-client/firefox/firefox-90.0.ebuild
50 @@ -193,19 +193,19 @@ fi
51
52 llvm_check_deps() {
53 if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then
54 - ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
55 + einfo "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
56 return 1
57 fi
58
59 if use clang ; then
60 if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then
61 - ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
62 + einfo "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
63 return 1
64 fi
65
66 if use pgo ; then
67 if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then
68 - ewarn "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
69 + einfo "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2
70 return 1
71 fi
72 fi