bug#51141: guix home reconfigure does not apply changes to shepherd services

2021-10-18 Thread Andrew Tropin
On 2021-10-16 18:06, Oleg Pykhalov wrote: > Hi Andrew, > > Andrew Tropin writes: > >> On 2021-10-12 01:53, Oleg Pykhalov wrote: >> >>> After changing a home shepherd service I tried to reconfigure with 'guix >>> home reconfigure'. >>> >>> Process started by a service did not restart. Assuming ho

bug#51261: Guix from qcow2 image refuses to boot after reconfigure

2021-10-18 Thread Jonathan Brielmaier
Imagine follow scenario: wget https://ftp.gnu.org/gnu/guix/guix-system-vm-image-1.3.0.x86_64-linux.qcow2 Boot the VM: qemu-system-x86_64 -enable-kvm -m 4G -device e1000,netdev=net0 \ -netdev user,id=net0,hostfwd=tcp::5522-:22 \ -drive file=guix-system-vm-image-1.3.0.x86_64-linux.qcow2,if=vir

bug#51258: emacs-next/git-master broken due to pdmp file naming changes

2021-10-18 Thread Paxton Evans
As of Emacs commit e81f1faca4382ed5c8f15fec84fb7c900a5468f9, building emacs-next with the git-master branch will cause some problems on Guix. The "emacs-next" build itself will work without any errors, but it will complain whenever you try run it: > emacs: could not load dump file > "/gnu/store/a5

bug#51114: Owncloud client error message

2021-10-18 Thread Daniel Meißner via Bug reports for GNU Guix
Hi Cayetano, this should be fixed in the current version of owncloud-client. See also https://issues.guix.gnu.org/47672 and https://issues.guix.gnu.org/51117. Best Daniel

bug#51259: Cannot build Guix from source (error messages about the translations)

2021-10-18 Thread Julien Lepiller
Hi Leo, Looks like something is wrong with your setup… are you running in "guix environment guix"? What's your $LANG? Le 18 octobre 2021 00:01:28 GMT-04:00, Leo Famulari a écrit : >I noticed today that I can't build Guix from a fresh Git checkout in the >usual manner. Something goes wrong whil

bug#51259: Cannot build Guix from source (error messages about the translations)

2021-10-18 Thread Tobias Geerinckx-Rice via Bug reports for GNU Guix
Leo Famulari 写道: ./doc/guix.ko.texi:431: here is the previous definition as @node ./doc/guix.ko.texi:2065: @node `??' previously defined This seems to hint at a locale error, and indeed it was: when I check out a fresh guix.git and build it in a recent ‘guix environment guix’ on Guix Syst

bug#51259: Cannot build Guix from source (error messages about the translations)

2021-10-18 Thread Julien Lepiller
I managed to reproduce the issue on fedora, in a broken pure environmert. In a pure environment, fedora gives error messages about software that doesn't exist, and asks if I want to install them. If I ^C at that point, I enter the environment, but some things are missing. There are litteral ??

bug#51259: Cannot build Guix from source (error messages about the translations)

2021-10-18 Thread Leo Famulari
On Mon, Oct 18, 2021 at 07:23:40AM -0400, Julien Lepiller wrote: > Hi Leo, > > Looks like something is wrong with your setup… are you running in "guix > environment guix"? What's your $LANG? Yes, it's in a "pure" environment. Normally LANG=en_US.UTF-8, but in the pure environment, LANG is unset

bug#50977: digital-ocean-environment-type fails

2021-10-18 Thread Franz Geffke
I just ran into the same issue on a droplet in a different region. The only detail that stands out is that 'private_networking' as seen here [1] has been depreciated on the DO API [2]. I doubt that is the reason this is failing though. > This parameter has been deprecated. Use vpc_uuid instead to

bug#51261: Guix from qcow2 image refuses to boot after reconfigure

2021-10-18 Thread Jonathan Brielmaier
It's because `/dev/vda1` is mounted to `/`. If I change that to `/dev/vda2` it works again :)

bug#51227: failed build of ghc-8.8.4 (on guix c27c196)

2021-10-18 Thread Giovanni Biscuolo
Hi Lars-Dominik, Lars-Dominik Braun writes: > Hi, > >> I'm trying to upgrade one of my profiles to guix c27c196 but I get this >> error: >> […] >> cannot build derivation >> `/gnu/store/jvmn4djjbi1hy1zwrwn5g50d94xazlhc-ghc-8.10.7.drv': 1 dependencies >> couldn't be built > is this still an iss

bug#50977: digital-ocean-environment-type fails

2021-10-18 Thread Franz Geffke
I've done some more digging. There are various issues with the script that actually converts the Debian 9 Droplet to Guix. 1. The SSL certificates of gnu.org fail on Debian 9 (since end of Sep). This appears to be related to a change in LetsEncrypt root certificates 2. The guix binary used is rath

bug#51258: [PATCH] gnu: emacs: Handle pdump filenames that contain a fingerprint

2021-10-18 Thread Morgan . J . Smith
From: Morgan Smith * gnu/packages/emacs.scm (emacs) [restore-emacs-pdmp]: Add regex to handle filenames that have a fingerprint in them --- Fixed your problem. Well it was also my problem. The regex is pretty simple but probably a little intimidating if you've never done it before. I highly