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: Thu, 31 Oct 2019 13:29:58
Message-Id: 1572528521.abc9e6e1eb53f9df2085f23c9118119469055b25.whissi@gentoo
1 commit: abc9e6e1eb53f9df2085f23c9118119469055b25
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 31 13:28:41 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 31 13:28:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc9e6e1
7
8 www-client/firefox: force stderr for einfo in llvm_check_deps()
9
10 CLoses: https://bugs.gentoo.org/695668
11 Package-Manager: Portage-2.3.78, Repoman-2.3.17
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 www-client/firefox/firefox-68.2.0.ebuild | 3 ++-
15 www-client/firefox/firefox-70.0.ebuild | 3 ++-
16 2 files changed, 4 insertions(+), 2 deletions(-)
17
18 diff --git a/www-client/firefox/firefox-68.2.0.ebuild b/www-client/firefox/firefox-68.2.0.ebuild
19 index e3af4ace464..b51a15732d0 100644
20 --- a/www-client/firefox/firefox-68.2.0.ebuild
21 +++ b/www-client/firefox/firefox-68.2.0.ebuild
22 @@ -213,7 +213,8 @@ llvm_check_deps() {
23 fi
24 fi
25
26 - einfo "Will use LLVM slot ${LLVM_SLOT}!"
27 + # <EAPI 7 workaround, #695668
28 + einfo "Will use LLVM slot ${LLVM_SLOT}!" >&2
29 }
30
31 pkg_setup() {
32
33 diff --git a/www-client/firefox/firefox-70.0.ebuild b/www-client/firefox/firefox-70.0.ebuild
34 index 6d26b12d6cf..c4e0acf0788 100644
35 --- a/www-client/firefox/firefox-70.0.ebuild
36 +++ b/www-client/firefox/firefox-70.0.ebuild
37 @@ -216,7 +216,8 @@ llvm_check_deps() {
38 fi
39 fi
40
41 - einfo "Will use LLVM slot ${LLVM_SLOT}!"
42 + # <EAPI 7 workaround, #695668
43 + einfo "Will use LLVM slot ${LLVM_SLOT}!" >&2
44 }
45
46 pkg_setup() {