Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/zoom/
Date: Sat, 07 May 2022 21:03:42
Message-Id: 1651957406.b4a4bdb0c8fe2a795c48adab25b001754d289f88.ulm@gentoo
1 commit: b4a4bdb0c8fe2a795c48adab25b001754d289f88
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 21:00:07 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 21:03:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a4bdb0
7
8 net-im/zoom: Be more noisy when warning about libcef breakage
9
10 Bug: https://bugs.gentoo.org/835930
11 Suggested-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 .../{zoom-5.10.4.2845-r1.ebuild => zoom-5.10.4.2845-r2.ebuild} | 9 ++++++---
15 1 file changed, 6 insertions(+), 3 deletions(-)
16
17 diff --git a/net-im/zoom/zoom-5.10.4.2845-r1.ebuild b/net-im/zoom/zoom-5.10.4.2845-r2.ebuild
18 similarity index 95%
19 rename from net-im/zoom/zoom-5.10.4.2845-r1.ebuild
20 rename to net-im/zoom/zoom-5.10.4.2845-r2.ebuild
21 index 6a6b21c08daf..ed1876ca6598 100644
22 --- a/net-im/zoom/zoom-5.10.4.2845-r1.ebuild
23 +++ b/net-im/zoom/zoom-5.10.4.2845-r2.ebuild
24 @@ -170,9 +170,12 @@ src_install() {
25 && DOC_CONTENTS+="\\n\\nTo enable screen sharing on GNOME Wayland,
26 edit ~/.config/zoomus.conf and change the value of
27 enableWaylandShare to true."
28 - has_version ">=sys-libs/glibc-2.34[clone3(+)]" \
29 - && DOC_CONTENTS+="\\n\\nIf you encounter illegal instruction errors,
30 - try disabling the clone3 use flag of sys-libs/glibc."
31 + if has_version ">=sys-libs/glibc-2.34[clone3(+)]"; then
32 + local w warn=( "If you encounter illegal instruction errors with zoom,"
33 + "try disabling the clone3 use flag of sys-libs/glibc." )
34 + DOC_CONTENTS+="\\n\\n${warn[*]}"
35 + for w in "${warn[@]}"; do ewarn "${w}"; done
36 + fi
37 readme.gentoo_create_doc
38 }