New French PO file for 'guix' (version 0.14.0)

2018-04-18 Thread Translation Project Robot
Hello, gentle maintainer. This is a message from the Translation Project robot. A revised PO file for textual domain 'guix' has been submitted by the French team of translators. The file is available at: http://translationproject.org/latest/guix/fr.po (We can arrange things so that in the

Re: [PATCH] Create INDEX.LIST; Was: Fix references in jar manifests

2018-04-18 Thread Danny Milosavljevic
Hi Chris, On Mon, 02 Apr 2018 00:12:42 +0200 Chris Marusich wrote: > Is that the only reason? My understanding is that we want to generate > the JAR indices not only (1) to ensure that grafting will work properly, > but also (2) to ensure that the reference scanner will find all the > store pat

Re: Package input loop detection

2018-04-18 Thread Ricardo Wurmus
Hi Ludo, Christopher wrote this: >>> I'm not particularly fond of the implementation, because the >>> package-derivation function is called from expand-input called from >>> bag->derivation, the information about the part of the graph that has >>> been traversed is passed through each function.

Re: Guix-based build tool

2018-04-18 Thread Ludovic Courtès
Hi Chris & Chris, :-) Chris Marusich skribis: > Christopher Lemmer Webber writes: > >> David Thompson has made many comments before on the mistake of mixing >> build systems and package managers... I'm a bit worried that we might be >> encouraging going down that same path? > > The Guix daemon

Re: Guix-based build tool

2018-04-18 Thread Ludovic Courtès
Hello, Christopher Lemmer Webber skribis: > While this is a fun idea, I'd still much rather have a guile-based > DSL replacement for autotools type things that's standalone (but maybe > also which can export to shell if need be). Yeah, not depending on Guix would have pros (it’d be more widely

Re: [PATCH] guix-daemon: Add option to disable garbage collection.

2018-04-18 Thread Ludovic Courtès
Hello! Roel Janssen skribis: > I'm not sure this made it to the mailing list. Is the proposed patch > fine to disable the GC for remote connections? It did make it to the list, I’ll look at it real soon. Ludo’.

Re: staging evaluation in progress

2018-04-18 Thread Ludovic Courtès
Hello Marius, Marius Bakke skribis: > I just started a 'staging' evaluation: > > https://hydra.gnu.org/jobset/gnu/staging > > Fairly minor changes this round, highlights include Wayland 1.15 and > GStreamer 1.14. We narrowly missed Mesa 17.3.9 which was scheduled for > today but delayed, hopefu

Re: fftw runtime cpu detection

2018-04-18 Thread Ludovic Courtès
Eric Bavier skribis: > Hello Guix, > > On Fri, 06 Apr 2018 20:37:42 +0200 > Marius Bakke wrote: > >> Ludovic Courtès writes: >> >> > Eric Bavier skribis: >> > >> >> On Fri, Apr 06, 2018 at 10:05:43AM +0200, Ludovic Courtès wrote: >> >> >> >>> If that’s the case, I’d be in favor of pushing

create a symlink

2018-04-18 Thread Rene
Hello, In 'gnu/build/install.scm', I try to create a symlink from '/gnu/store/..hurd-0.9' to /hurd during 'guix system init '. But Guix waits for a string, is it possible to use a package to do the symlink? CODE--- (let ((hurd-1 (string-append target

Re: create a symlink

2018-04-18 Thread Danny Milosavljevic
Hi Rene, > But Guix waits for a string, is it possible to use a package to do the > symlink? Not directly - but you can "convert" a package to a string by putting in guix/scripts/system.scm : (install-hurd #$hurd) or so (where "install-hurd" is your procedure in gnu/build/install.scm). pg