From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E272D158090 for ; Sat, 7 May 2022 21:03:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9A48E07C9; Sat, 7 May 2022 21:03:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B960CE07C9 for ; Sat, 7 May 2022 21:03:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6ECC3415C2 for ; Sat, 7 May 2022 21:03:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C88A430 for ; Sat, 7 May 2022 21:03:39 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1651957406.b4a4bdb0c8fe2a795c48adab25b001754d289f88.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/zoom/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/zoom/zoom-5.10.4.2845-r1.ebuild net-im/zoom/zoom-5.10.4.2845-r2.ebuild X-VCS-Directories: net-im/zoom/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: b4a4bdb0c8fe2a795c48adab25b001754d289f88 X-VCS-Branch: master Date: Sat, 7 May 2022 21:03:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 90facb16-01fa-4a98-bfb9-e291702c42c5 X-Archives-Hash: 8dcb8e56028829e622c4a1dfba39d224 commit: b4a4bdb0c8fe2a795c48adab25b001754d289f88 Author: Ulrich Müller gentoo org> AuthorDate: Sat May 7 21:00:07 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat May 7 21:03:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a4bdb0 net-im/zoom: Be more noisy when warning about libcef breakage Bug: https://bugs.gentoo.org/835930 Suggested-by: Andreas K. Hüttel gentoo.org> Signed-off-by: Ulrich Müller gentoo.org> .../{zoom-5.10.4.2845-r1.ebuild => zoom-5.10.4.2845-r2.ebuild} | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net-im/zoom/zoom-5.10.4.2845-r1.ebuild b/net-im/zoom/zoom-5.10.4.2845-r2.ebuild similarity index 95% rename from net-im/zoom/zoom-5.10.4.2845-r1.ebuild rename to net-im/zoom/zoom-5.10.4.2845-r2.ebuild index 6a6b21c08daf..ed1876ca6598 100644 --- a/net-im/zoom/zoom-5.10.4.2845-r1.ebuild +++ b/net-im/zoom/zoom-5.10.4.2845-r2.ebuild @@ -170,9 +170,12 @@ src_install() { && DOC_CONTENTS+="\\n\\nTo enable screen sharing on GNOME Wayland, edit ~/.config/zoomus.conf and change the value of enableWaylandShare to true." - has_version ">=sys-libs/glibc-2.34[clone3(+)]" \ - && DOC_CONTENTS+="\\n\\nIf you encounter illegal instruction errors, - try disabling the clone3 use flag of sys-libs/glibc." + if has_version ">=sys-libs/glibc-2.34[clone3(+)]"; then + local w warn=( "If you encounter illegal instruction errors with zoom," + "try disabling the clone3 use flag of sys-libs/glibc." ) + DOC_CONTENTS+="\\n\\n${warn[*]}" + for w in "${warn[@]}"; do ewarn "${w}"; done + fi readme.gentoo_create_doc }