commit: 9e23fdcf58652182005906ccb88b3ee197bb9eba Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Jan 1 15:14:13 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Wed Jan 1 15:14:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e23fdcf
net-im/zoom: Check for pipestatus Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> net-im/zoom/zoom-6.3.1.5673.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-im/zoom/zoom-6.3.1.5673.ebuild b/net-im/zoom/zoom-6.3.1.5673.ebuild index fb4b91ff2990..61473dfd1366 100644 --- a/net-im/zoom/zoom-6.3.1.5673.ebuild +++ b/net-im/zoom/zoom-6.3.1.5673.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit desktop linux-info readme.gentoo-r1 xdg-utils +inherit desktop eapi9-pipestatus linux-info readme.gentoo-r1 xdg-utils DESCRIPTION="Video conferencing and web conferencing service" HOMEPAGE="https://zoom.us/" @@ -104,7 +104,8 @@ src_install() { doins -r Qt find Qt -type f '(' -name '*.so' -o -name '*.so.*' ')' \ - -printf '/opt/zoom/%p\0' | xargs -0 -r fperms 0755 || die + -printf '/opt/zoom/%p\0' | xargs -0 -r fperms 0755 + pipestatus || die ( # Remove libs and plugins with unresolved soname dependencies. # Why does the upstream package contain such garbage? :-( cd "${ED}"/opt/zoom/Qt || die
