bug#54297: Qutebrowser failed to render local fonts.

2022-05-02 Thread Lars-Dominik Braun
Hi, I’ve been experiencing the same issue with RStudio (which uses qtwebengine under the hood)[1]. The workaround is the same, but it seems qtwebengine 5.15.7 has a fix for this issue[2] caused by an upgrade to glibc 2.33. So the solution would be to upgrade our qtwebengine package. Cheers, Lars

bug#48796: Guix on Debian 11 - Cant run or find applications from Guix in Desktop Menus

2022-05-02 Thread Giovanni Biscuolo
Hi Liliana Marie, thank you for your heads up! I confess I'm pretty much confused about "Freedesktop.org's xdg menu system" because I thought it's now a cross-distro standard that should work out of the box without much tinkering by the distro maintainers and/or by the user. There is a non zero

bug#54297: Qutebrowser failed to render local fonts.

2022-05-02 Thread Zhu Zihao
Yes, this issue should be a duplicate of https://issues.guix.gnu.org/53011 But I'm not sure whether we can update qtwebengine without touching other Qt components. Lars-Dominik Braun writes: > Hi, > > I’ve been experiencing the same issue with RStudio (which uses > qtwebengine under the hood)

bug#55223: Shepherd 0.9.0 ‘make-inetd-constructor’ can leak file descriptors

2022-05-02 Thread Ludovic Courtès
‘make-inetd-constructor’ creates a socket and then calls bind(2) on it. --8<---cut here---start->8--- (lambda args (let ((sock (non-blocking-port (socket (sockaddr:fam address) socket-style 0))) […]) (setsockopt sock SOL_

bug#55200: Guix offload fails to allow connections while attempting to connect with the host's hostname or FQDN

2022-05-02 Thread Simon Streit
Just a quick follow up to correct the title. I noticed that my wording is wrong: Simon Streit writes: > After a bit of bisecting I pinned my issue down to checkout > 808b9e850491c7b1d867a5f1f4d5ee6f61f345d4. From there on any guix > offload test or status will fail if a hostname, or FQDN, is se

bug#55139: package-location is wrong for transformed packages

2022-05-02 Thread Ludovic Courtès
Hi, Maxim Cournoyer skribis: >> ,import (gnu packages) (guix packages) >> (car (find-packages-by-name "python2-pyalsaaudio")) > $1 = # 7f2b76fab160> >> (package-definition-location-code package $1) > $2 = #f >> (package-definition-location $2) > $3 = #< file: "gnu/packages/audio.scm" line: 4327

bug#55186: package-definition-location is wrong for inherited packages

2022-05-02 Thread Ludovic Courtès
Hi, Maxim Cournoyer skribis: > Here's another problem with source location I've discovered when > attempting to locate the source of `python2-pytest-warnings', which > reads like: > > (define-public python2-pytest-warnings > (package (inherit (package-with-python2 > (strip

bug#55223: Shepherd 0.9.0 ‘make-inetd-constructor’ can leak file descriptors

2022-05-02 Thread Ludovic Courtès
Ludovic Courtès skribis: > ‘make-inetd-constructor’ creates a socket and then calls bind(2) on it. > > (lambda args > (let ((sock (non-blocking-port > (socket (sockaddr:fam address) socket-style 0))) > […]) > (setsockopt sock SOL_SOCKET SO_REUSEADDR 1) >