bug#35872: messages that are redundant can be eliminated?

2020-03-30 Thread Ludovic Courtès
Hi! Ludovic Courtès skribis: > (+Cc: Efraim following our discussion on IRC.) > > Ludovic Courtès skribis: > >> This is a bug where the presence of propagated inputs leads ‘guix >> upgrade’ to assume something would be upgraded, even when that’s not the >> case. This can be reproduced with: >>

bug#40334: MATE: I can't add/remove workspaces

2020-03-30 Thread sirgazil via Bug reports for GNU Guix
I'm using the Guix System, and found this problem in MATE 1.22, but another person confirmed that it still occurs in MATE 1.24 (https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00472.html). ## Steps to reproduce 1. Right-click on the Workspace Switcher applet 2. Choose Preferences. #

bug#40333: lxqt-config-monitor segmentation fault

2020-03-30 Thread Hamzeh Nasajpour
Hi guys, I installed the `LXQt` in guix and I'm using it. The `lxqt-config-monitor` has a problem and it will be crashed. If I install the `libkscreen` and `qttools` manually beside the `lxqt` it works fine. I see these packages are listed in the `lxqt-config` dependencies. What's your idea abo

bug#40330: [MATE]: mate-control-center: some submenus are broken

2020-03-30 Thread Jonathan Brielmaier
mate-control-center 1.24 has some broken "submenus". `Preferred Applications` do not start/work. `Time and Date Manager` does not work as well. Resulting in following dbus error: ``` GetNtpState GBDus.Error:org.freedesktop.DBus.Error.ServiceUnkwon: The name org.freedesktop.timedate1 was not provi

bug#40329: [MATE]: atril: vector icons missing

2020-03-30 Thread Jonathan Brielmaier
In atril 1.22 the logo in Help->About seems to be a bitmap and not a vector graphic. Other MATE packages have vector icons there.

bug#40328: [MATE] pluma: installing external plugins fails

2020-03-30 Thread Jonathan Brielmaier
Installing external plugins in pluma (text editor) fails with: "plugin loader python3 not found". Can be maybe fixed with propagating python. Plugins who are installed by default do work.

bug#40327: [MATE] shutdown and reboot not possible from UI

2020-03-30 Thread Jonathan Brielmaier
MATE 1.24 (1.22) as well doesn't have a shutdown and reboot button in the UI. You can either logout and shutdown/reboot from GDM or shutdown/reboot via terminal.

bug#40273: installer: No way to input Latin characters with non-Latin keyboard layouts

2020-03-30 Thread pelzflorian (Florian Pelz)
On Mon, Mar 30, 2020 at 07:11:13PM +0200, pelzflorian (Florian Pelz) wrote: > The attached patch to Guix enables > Alt+Shift toggling of the layout (it is too hacky, and it is always > QWERTY layout!). But it is possible. Please someone else decide on the right approach.

bug#24076: [PATCH] gnu: GnuPG: Really use ~/.guix-profile/bin/pinentry by default.

2020-03-30 Thread Leo Famulari
On Sun, Mar 29, 2020 at 04:57:33PM +0200, Ludovic Courtès wrote: > Here I’d add: > > if (dir == NULL) > { >struct password *pw; >pw = getpwuid (getuid ()); >if (pw != NULL) > dir = pw->pw_dir; >else > dir = "/"; > } > > Otherwise LGTM!

bug#40273: installer: No way to input Latin characters with non-Latin keyboard layouts

2020-03-30 Thread pelzflorian (Florian Pelz)
On Mon, Mar 30, 2020 at 01:35:29PM +0200, Mathieu Othacehe wrote: > In the installer, the keyboard layout is handled by KMSCON. It means > that running setxkbmap or loadkeys commands won't help. As KMSCON only > supports static keyboard layout setting at start time, I had to patch it > dirty (see k

bug#40273: installer: No way to input Latin characters with non-Latin keyboard layouts

2020-03-30 Thread pelzflorian (Florian Pelz)
On Mon, Mar 30, 2020 at 12:39:50PM +0200, Mathieu Othacehe wrote: > Now I pushed a 'wip-installer-help' branch that implement this > mechanism. I'm now able to switch the installer keyboard layout from any > step. > > WDYT? I like it. The switching also does not affect the generated config.scm.

bug#40316: core-updates nss not reproducible

2020-03-30 Thread Marius Bakke
Danny Milosavljevic writes: > Hi, > > core-updates' nss is not reproducible (commit > aebcbb27bc2f192cc06163251bab66a4ceb7b7d6). Is this issue only present on the 'core-updates' branch? There haven't been any changes to NSS on that branch compared to 'master' AFAIK. signature.asc Description:

bug#37207: nginx serving files from the store returns Last-Modified = Epoch

2020-03-30 Thread Vincent Legoll
Hello, On Sun, Mar 29, 2020 at 11:50 AM Gábor Boskovits wrote: > Does it also use etags, or just last-modified? >From the email exchange I had with the maintainer of the site, I think it only uses last-modified. > I ask this because we already have bug similar to this, and it would > be interes

bug#40273: installer: No way to input Latin characters with non-Latin keyboard layouts

2020-03-30 Thread Mathieu Othacehe
> Yes, that is definitely a good place, *but* now that I saw Debian, it > would be good to additionally have a key combination. I think > switching in an F1 help menu is more discoverable and having both > would be good. OK, noted. > From what an Arab friend told me, they are used to a key com

bug#40273: installer: No way to input Latin characters with non-Latin keyboard layouts

2020-03-30 Thread pelzflorian (Florian Pelz)
On Sat, Mar 28, 2020 at 08:45:05PM +0100, Mathieu Othacehe wrote: > Maybe we could add a help menu with key shortcut. From that > help menu, one could change the current keyboard layout from any > installation step? > Yes, that is definitely a good place, *but* now that I saw Debian, it would be

bug#40273: installer: No way to input Latin characters with non-Latin keyboard layouts

2020-03-30 Thread Mathieu Othacehe
Hey, > * Guile-newt functions "newt-set-help-callback" and > "add-component-callback" seem to be tripping over each other and I'm > having a hard time trying to understand why. Ok I found out why, it was the GC that was collecting the callback pointers. I fixed it in Guile-newt. Now I push