Re: Hydra status

2014-04-10 Thread Andreas Enge
On Thu, Apr 10, 2014 at 11:45:05AM +0200, Andreas Enge wrote: > Now texlive is marked as failed, with the following message at > guix build: error: open-file: No such file or directory: > "/gnu/store/j0b550qfqac1w550v0zq2nlb0sqc-texlive-2013.drv" And even fresher: http://hydra.gnu.org/buil

Re: dmd: [PATCH] Improve socket connection errors handling.

2014-04-10 Thread Cyprien Nicolas
Il y a environ 24 minutes, Ludovic Courtès écrivit : > I pushed a couple of patches that achieve the same result slightly > differently: ‘open-connection’ is left unchanged and it’s the caller’s > responsibility to handle any errors; clients use the new > ‘with-system-error-handling’ macro do handl

Re: dmd: [PATCH] Improve socket connection errors handling.

2014-04-10 Thread Ludovic Courtès
Cyprien Nicolas skribis: > My first patch for dmd :-) Very cool, welcome! :-) Those backtraces had been bothering me for a while too, so thanks for looking at it. > From 6e8f871198b661b631a319f3abaef71bc6269fb7 Mon Sep 17 00:00:00 2001 > From: Cyprien Nicolas > Date: Thu, 10 Apr 2014 10:07:0

Re: [PATCH] gnu: util-linux: Enable ddate.

2014-04-10 Thread Ludovic Courtès
Alírio Eyng skribis: > There are discordians out there. > Do you discord? > > From 2e99ec7c6fb50c8c59c918b303db5c38b8354744 Mon Sep 17 00:00:00 2001 > From: =?UTF-8?q?Al=C3=ADrio=20Eyng?= > Date: Thu, 10 Apr 2014 12:55:50 + > Subject: [PATCH] gnu: util-linux: Enable ddate. > > * gnu/packages

[PATCH] gnu: util-linux: Enable ddate.

2014-04-10 Thread Alírio Eyng
There are discordians out there. Do you discord? From 2e99ec7c6fb50c8c59c918b303db5c38b8354744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C3=ADrio=20Eyng?= Date: Thu, 10 Apr 2014 12:55:50 + Subject: [PATCH] gnu: util-linux: Enable ddate. * gnu/packages/linux.scm (util-linux): Add --enable-dd

Re: Hydra status

2014-04-10 Thread Andreas Enge
On Wed, Apr 09, 2014 at 11:08:32PM +0200, Ludovic Courtès wrote: > Going to http://hydra.gnu.org/build/49569/ shows that the texlive builds > were actually aborted. The “Nix error output” box shows this: Now texlive is marked as failed, with the following message at http://hydra.gnu.org/build/

Re: Hydra status

2014-04-10 Thread Andreas Enge
On Wed, Apr 09, 2014 at 10:35:40PM +0200, Ludovic Courtès wrote: > Andreas Enge skribis: > > And there are others that, when one tries to restart them, reply with > >500 Internal Server Error > >This build cannot be restarted. > I installed the offload fixes (specifically 4b00f34 plus a re

Re: [Nix-dev] GNU Guix 0.6 released

2014-04-10 Thread Ludovic Courtès
(Stripping Cc.) Shea Levy skribis: > On Wed, Apr 09, 2014 at 08:29:25PM +0200, Ludovic Courtès wrote: [...] >> • About >> >> GNU Guix is the functional package manager for the GNU system >> distribution. >> >> In addition to standard package management features, Guix supports >> tran

Re: Proposal: prefetch tarballs in a batch

2014-04-10 Thread Ludovic Courtès
Nikita Karetnikov skribis: > So, in order to add a tarball to the store, one can write: > > $ ./pre-inst-env guile > scheme@(guile-user)> ,use (guix store) (guix packages) (guix derivations) > (gnu packages wget) > scheme@(guile-user)> (define s (open-connection)) > scheme@(guile-user)> (package

dmd: [PATCH] Improve socket connection errors handling.

2014-04-10 Thread Cyprien Nicolas
My first patch for dmd :-) I thought about moving the interior format call to support.scm (caught-error), but I wanted to keep the patch simple, and not making two differents changes in one patch (error handling, support improvements). Comments welcome. -- Cyprien/Fulax From 6e8f871198b661b631a3