Summary: | net-im/zoom - code snippets not working in chat | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Chris <cemcginley> |
Component: | Current packages | Assignee: | Ulrich Müller <ulm> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | dilfridge, jstein, mva |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Chris
2020-09-26 14:16:11 UTC
The bug has been referenced in the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e7b4de3599d6ca395f049e320dc165d8e311f09 commit 3e7b4de3599d6ca395f049e320dc165d8e311f09 Author: Ulrich Müller <ulm@gentoo.org> AuthorDate: 2020-09-27 18:28:13 +0000 Commit: Ulrich Müller <ulm@gentoo.org> CommitDate: 2020-09-27 18:28:51 +0000 net-im/zoom: Depend on dev-libs/quazip. Bug: https://bugs.gentoo.org/744814 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Ulrich Müller <ulm@gentoo.org> .../{zoom-5.3.465578.0920.ebuild => zoom-5.3.465578.0920-r1.ebuild} | 2 ++ 1 file changed, 2 insertions(+) I believe that I can reproduce the problem (after I found out how to enable that code snippet button in settings). Please test zoom-5.3.465578.0920-r1 which adds a dependency on net-libs/quazip. (In reply to Ulrich Müller from comment #2) > Please test zoom-5.3.465578.0920-r1 which adds a dependency on > net-libs/quazip. This should read dev-libs/quazip. Unfortunately this does not seem to address the issues I described. Not much more that I can do here. No source code that we could look into. :( This is what I get when debugging with strace: With net-im/zoom-5.3.465578.0920 I see the following in strace output, after clicking the "Create snippet" button in the "Create Code Snippet" window: openat(AT_FDCWD, "./haswell/liblibquazip.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "./haswell/liblibquazip", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "./haswell/libquazip.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "./haswell/libquazip", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "./libquazip.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "./libquazip", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) So it fails to open libquazip.so. Note that the above sequence of openat calls only appears as soon as I press the snippet button. With net-im/zoom-5.3.465578.0920-r1, I get this: openat(AT_FDCWD, "./haswell/liblibquazip.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (N o such file or directory) openat(AT_FDCWD, "./haswell/liblibquazip", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No s uch file or directory) openat(AT_FDCWD, "./haswell/libquazip.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No s uch file or directory) openat(AT_FDCWD, "./haswell/libquazip", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "./libquazip.so", O_RDONLY|O_CLOEXEC) = 83 So for -r1 it succeeds opening the lib, and creates the code snippet for me. (In reply to Chris from comment #4) > Unfortunately this does not seem to address the issues I described. I don't doubt this, but I don't know why it is different on your system. I'll see if I can run with strace to gather more info. I get the code snippet pop-up, but cannot submit the content. Can you confirm that you actually can send the code snippet? Thanks. I just re-ran Zoom with strace and could not reproduce the issue. Ran without strace, and still cannot reproduce the issue. I am unsure what changed between my earlier test and now as I had restarted Zoom after updating. I think it's safe to call this closed. Thanks for the assist. |