Re: Add guile-config

2016-02-16 Thread Alex Sassmannshausen
Hello, Christopher Allan Webber writes: > Alex Sassmannshausen writes: [...] > > I tried building and testing it: > > Starting download of > /gnu/store/gq2zz95zmmsjkpn7lbwfbna8m4hr56r7-guile-config-0.1.tar.gz > From http://alex.pompo.co/software/guile-config-0.1.tar.gz... > guile-config-0.1.t

Re: Guix vs GuixSD

2016-02-16 Thread Jookia
On Tue, Feb 16, 2016 at 03:26:01AM +, Chris Marusich wrote: > (Apologies for top-posting; my mobile email client doesn't seem to let me > post in any other way...) > > Regarding your diagrams, I guess the one that shows GuixSD using Guix makes > a little more sense to me than the one that shows

Re: Guix vs GuixSD

2016-02-16 Thread Chris Marusich
Jookia <166...@gmail.com> writes: > Perhaps I went a bit off topic there but I hope this give some understanding. Thank you for the explanation. That's more or less what I imagined was going on with GuixSD. Best regards, Chris

Re: [PATCH] gnu: Add slurm.

2016-02-16 Thread Andreas Enge
On Tue, Feb 16, 2016 at 08:21:07AM +0100, Pjotr Prins wrote: > > A number of configure flags were missing - without them, the inputs > > would not be found in their non-standard location. > Hmmm. It compiled, the tools ran... They probably concerned optional inputs, that maybe you did not need in

hydrogen

2016-02-16 Thread Efraim Flashner
I was working on changing the packages that use qt-4 to using qt-5, and I came across hydrogen. I've updated it from 0.9.5.1 to 0.9.7-beta1 and made some changes. Considering I don't actually use hydrogen, I thought someone who did could take a look at it first to make sure everything looked good b

Re: hydrogen

2016-02-16 Thread Ricardo Wurmus
Efraim Flashner writes: > I was working on changing the packages that use qt-4 to using qt-5, and I > came across hydrogen. I've updated it from 0.9.5.1 to 0.9.7-beta1 and made > some changes. Considering I don't actually use hydrogen, I thought someone > who did could take a look at it first to

Re: hydrogen

2016-02-16 Thread Efraim Flashner
On Tue, 16 Feb 2016 13:26:45 +0100 Ricardo Wurmus wrote: > Efraim Flashner writes: > > [...] > > Looks okay to me (I haven’t built or tested it, though), with the > exception of adding “pulseaudio” to the inputs. Is this necessary? > > I only ever use Hydrogen with JACK because it should

Re: hydrogen

2016-02-16 Thread Andreas Enge
On Tue, Feb 16, 2016 at 02:20:03PM +0200, Efraim Flashner wrote: > I was working on changing the packages that use qt-4 to using qt-5, and I > came across hydrogen. I've updated it from 0.9.5.1 to 0.9.7-beta1 and made > some changes. >From the website, it looks as if 0.9.5.1 is the latest "real" r

Re: hydrogen

2016-02-16 Thread Efraim Flashner
On Tue, 16 Feb 2016 13:37:23 +0100 Andreas Enge wrote: > On Tue, Feb 16, 2016 at 02:20:03PM +0200, Efraim Flashner wrote: > [...] > > From the website, it looks as if 0.9.5.1 is the latest "real" release: >http://www.hydrogen-music.org/hcms/node/21 > See at the bottom of the page. > > Ac

Re: hydrogen

2016-02-16 Thread Ricardo Wurmus
Efraim Flashner writes: > to jack. I'll build it again without pulseaudio to make sure that doesn't > cause any issues. It did give me an error about not being able to connect to > a jack server, but I'm not running jack so that isn't unexpected. Yeah, that’s normal. If you have JACK 2 then ma

[PATCH 1/2] svn-download: Respect current-http-proxy when downloading.

2016-02-16 Thread Jookia
When downloading a repository through SVN over HTTP, do it using a proxy if possible. This is especially useful for people who use Tor to do all their downloading. This doesn't work with svn:// repositories to my knowledge. * guix/build/svn.scm (svn-fetch): Pass the "servers:global:http-proxy-host

[PATCH 2/2] git-download: Respect current-http-proxy when downloading.

2016-02-16 Thread Jookia
Enable the use of HTTP proxies for Git and add a helper program for proxying the non-HTTP git:// protocol. The program connects standard input/output to a remote server. To accomplish this for now, socat is used. * guix/build/git.scm (module): Export git-proxy. (git-fetch): Take a proxy paramete

[PATCH] vm: Have qemu-image generate derivations instead.

2016-02-16 Thread Jookia
This small refactor should simplify some duplicated effort across functions and allow smarter qemu-image to do smarter things based on the operating system configuration rather than having each function that uses qemu-image pass selective parameters whenever new information is needed. * gnu/system

Re: [PATCH] gnu: Add libosinfo.

2016-02-16 Thread Ricardo Wurmus
ren...@openmailbox.org writes: > i attached libosinfo patch required for GNOME Boxes. Thank you very much! Below I’ll add a couple of comments. I’m not sure about a couple of things and I hope you can shed some light on these issues. > Considerations: > > a) In the source i used > "https:/

The tricky case of "--localstatedir=/var"

2016-02-16 Thread Jookia
Hey there, Over the past month a few people (myself included) have been hit by the 'gotcha' of not running ./configure with "--localstatedir=/var". It doesn't say this in the documentation but I question whether not having it as /var is a sane default. I'm sure this is somehow tied to the conventi

Re: [PATCH] gnu: Add gnome.

2016-02-16 Thread Thompson, David
On Fri, Feb 12, 2016 at 11:33 PM, 宋文武 wrote: > * gnu/packages/gnome.scm (gnome): New variable. > --- > gnu/packages/gnome.scm | 41 + > 1 file changed, 41 insertions(+) > I tried this out and everything worked, so please push to master. Unfortunately for

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Ricardo Wurmus
Jookia <166...@gmail.com> writes: > Hey there, > > Over the past month a few people (myself included) have been hit by the > 'gotcha' > of not running ./configure with "--localstatedir=/var". It doesn't say this in > the documentation but I question whether not having it as /var is a sane > defa

Re: [PATCH] Add StringTie.

2016-02-16 Thread Ricardo Wurmus
Thompson, David writes: > LGTM! Thanks. Pushed as d15d981ea29b17f880da3e17e2381750a759bba0. ~~ Ricardo

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Jookia
On Tue, Feb 16, 2016 at 03:29:02PM +0100, Ricardo Wurmus wrote: > Is this really so? Could you give us an example please? Oops! I was misreading the git log and patches. I'm wrong on this (happily, I may add!) So no, there's no patches to change. This is strictly a Guix issue. > ~~ Ricardo Jook

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Tobias Geerinckx-Rice
Hullo Guix, On 16 February 2016 at 14:57, Jookia <166...@gmail.com> wrote: > > > * Put the localstatedir in /gnu. > > This is actually what Nix does, so I'm a little surprised as to why Guix has > deviated from this practice. This will require updating all the patches to use > /gnu/var as the loc

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Tobias Geerinckx-Rice
On 16 February 2016 at 17:04, Tobias Geerinckx-Rice wrote: > Hullo Guix, > > On 16 February 2016 at 14:57, Jookia <166...@gmail.com> wrote: >> >> >> * Put the localstatedir in /gnu. >> >> This is actually what Nix does, so I'm a little surprised as to why Guix has >> deviated from this practice.

Re: Adding idle3-tools while unable to run ‘guix lint’

2016-02-16 Thread Tobias Geerinckx-Rice
Thanks Pjotr! I would have naively expected ‘gnutls’ to be a dependency of ‘guix’ and available to the latter at run time (wrappers; magic), but I guess that's not how Guile/Guix works? On 16 February 2016 at 08:26, Pjotr Prins wrote: > guile gnutls is missing which means it should be installed

[PATCH] Add genome annotations.

2016-02-16 Thread Ricardo Wurmus
Hi Guix, here are four patches to add genome annotation packages for R. The species names (“Mouse”, “Worm”, “Human”, “Fly”) are capitalised because they refer to the names of common model organisms. ~~ Ricardo PS: for the curious: “hs” = “Homo sapiens” (human), “ce” = “Caenorhabditis elegans” (

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Andreas Enge
On Tue, Feb 16, 2016 at 03:29:02PM +0100, Ricardo Wurmus wrote: > Jookia <166...@gmail.com> writes: > > * Change localstatedir to /var by default. > > * Put the localstatedir in /gnu. > I’m actually doing this on my cluster installation. It’s very > convenient at first because you can just mount

Re: Adding idle3-tools while unable to run ‘guix lint’

2016-02-16 Thread Tobias Geerinckx-Rice
Hmm, On 16 February 2016 at 17:22, Tobias Geerinckx-Rice wrote: > > /nix/store/k5m7fb4r3p71mkvaxgqh242aq8kr6h6s-guile-2.0.11/bin/guile: > symbol lookup error: > /gnu/store/rdi8195mysf340rm54xqjmxpl1qjq1wb-nettle-3.2/lib/libhogweed.so.4: > undefined symbol: __gmpz_limbs_read > > :-/ My guix check

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Jookia
On Tue, Feb 16, 2016 at 05:41:09PM +0100, Andreas Enge wrote: > There is also a middle ground that would be possible: Move some of the > content of localstatedir to /gnu; this would make sense for the sqlite > database, for instance. Then it would be possible to copy /gnu from one > system to anoth

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Andreas Enge
On Wed, Feb 17, 2016 at 04:12:32AM +1100, Jookia wrote: > I'm not sure how that would really fix the issue that people are hitting: Say > we > move some of the content to /gnu, things like profiles, the daemon socket, all > the things that Guix looks for and symlinks to won't be found if Guix look

Guix compilation

2016-02-16 Thread Andreas Enge
Just a quick "thank you" message to Taylan; your patch for compiling Guix in parallel makes an amazing difference! I just noticed it again on my Novena with its four relatively weak cores. Andreas

Re: Guix compilation

2016-02-16 Thread Thompson, David
On Tue, Feb 16, 2016 at 12:42 PM, Andreas Enge wrote: > Just a quick "thank you" message to Taylan; your patch for compiling Guix > in parallel makes an amazing difference! I just noticed it again on my Novena > with its four relatively weak cores. Seconded! Very nice improvement! - Dave

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Christopher Allan Webber
Jookia writes: > Hey there, > > Over the past month a few people (myself included) have been hit by the > 'gotcha' > of not running ./configure with "--localstatedir=/var". It doesn't say this in > the documentation but I question whether not having it as /var is a sane > default. I'm sure this i

Re: [PATCH] licenses: Add CC-BY-SA and CC-BY.

2016-02-16 Thread Christopher Allan Webber
ren...@openmailbox.org writes: > Hi, > > i attached patch for licenses CC-BY2 and CC-BY-SA2. > > Thanks Are these being used by anything at this time? Maybe it would make more sense to attach them if they are?

Re: Add guile-config

2016-02-16 Thread Christopher Allan Webber
Alex Sassmannshausen writes: > Hello, > > Christopher Allan Webber writes: > >> Alex Sassmannshausen writes: > > [...] > >> >> I tried building and testing it: >> >> Starting download of >> /gnu/store/gq2zz95zmmsjkpn7lbwfbna8m4hr56r7-guile-config-0.1.tar.gz >> From http://alex.pompo.co/software/g

Re: [PATCH] wxwidgets: enable extended regexps

2016-02-16 Thread Danny Milosavljevic
Hi, On Mon, 15 Feb 2016 17:47:36 -0500 "Thompson, David" wrote: > On Mon, Feb 15, 2016 at 5:07 PM, Andreas Enge wrote: > > On Mon, Feb 15, 2016 at 05:04:09PM -0500, Leo Famulari wrote: > >> Can you test that some of these other apps still work with this change? > > > > $ guix refresh -l wxw

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Danny Milosavljevic
Hi, also, even worse, when using a fine git checkout for some time, you will from time to time do this: $ git pull $ make check If this touches stuff autoconf cares about, make will do ./configure again and leave localstatedir off. Then lots (32) of the tests will fail. Just happened again...

glibc update

2016-02-16 Thread Leo Famulari
I'm wondering if anyone has rebuilt their local systems based on the glibc update in security updates? I'm wondering what is the best way to achieve this? For Guix users, something like this? $ git checkout master \ && git checkout -b my-branch \ && git cherry-pick 8304ccdbc7b653ab0b81e3cec5420fc

Re: [PATCH] licenses: Add CC-BY-SA and CC-BY.

2016-02-16 Thread rennes
On 2016-02-16 13:13, Christopher Allan Webber wrote: ren...@openmailbox.org writes: Hi, i attached patch for licenses CC-BY2 and CC-BY-SA2. Thanks Are these being used by anything at this time? Maybe it would make more sense to attach them if they are? Hi I will send gnome-backgrounds

Re: [PATCH] Update pandas, numpy, pysnptools, fastlmm

2016-02-16 Thread Ricardo Wurmus
Andreas Enge writes: > it looks like the python2-numpy update has broken vigra: >http://hydra.gnu.org/build/1008323/nixlog/1/tail-reload > I could confirm it on my own machine. > > This is quite annoying, as vigra is an input to libreoffice. > > Could one of you have a look? I had a look bu

Re: [PATCH] licenses: Add CC-BY-SA and CC-BY.

2016-02-16 Thread Christopher Allan Webber
ren...@openmailbox.org writes: > On 2016-02-16 13:13, Christopher Allan Webber wrote: >> ren...@openmailbox.org writes: >> >>> Hi, >>> >>> i attached patch for licenses CC-BY2 and CC-BY-SA2. >>> >>> Thanks >> >> Are these being used by anything at this time? Maybe it would make >> more >> se

Re: The tricky case of "--localstatedir=/var"

2016-02-16 Thread Mark H Weaver
Danny Milosavljevic writes: > also, even worse, when using a fine git checkout for some time, you will from > time to time do this: > > $ git pull > $ make check > > If this touches stuff autoconf cares about, make will do ./configure > again and leave localstatedir off. Then lots (32) of the te

Re: Network-Manager test fail

2016-02-16 Thread Mark H Weaver
Daniel Pimentel writes: > I try to change Ratpoison to Gnome-shell, but there's a follow error > with test for NetworkManager: > > Testsuite summary for NetworkManager 1.0.6 > > # TOTAL: 24 > # PASS: 16 > # SKIP: 0 > #

Re: thesis: guixsd should provide /usr/bin/env

2016-02-16 Thread 宋文武
Someone (sorry, I forget who) mentioned in #guix that we can use binfmt_misc to handle the shebang. I tried coding it in C, and it seems to working fine. Here it is: . Try it with care: --8<---cut here---start->8--- $ sudo moun

Re: thesis: guixsd should provide /usr/bin/env

2016-02-16 Thread Jookia
On Wed, Feb 17, 2016 at 03:31:42PM +0800, 宋文武 wrote: > Someone (sorry, I forget who) mentioned in #guix that we can use > binfmt_misc to handle the shebang. I might have been me since I thought this would be a neat idea. > I tried coding it in C, and it seems to working fine. > Here it is: