Server unrresponsive

2015-01-20 Thread Daniel Pimentel
Hi Guix, I tried install in my desktop (amd64) and server is very busy. Message: server is unresponsive Thanks. -- Daniel Pimentel (d4n1)

Re: wip-armhf branch ready for wider testing

2015-01-20 Thread Daniel Pimentel
On 2015-01-20 19:46, Mark H Weaver wrote: l...@gnu.org (Ludovic Courtès) writes: Mark H Weaver skribis: Our armhf targets the same set of machines as Debian's armhf, namely the ARMv7-A architecture with VFP3D16 coprocessor. So 'uname -m' must output "armv7l" or better, and I guess the proc

Re: FOSDEM

2015-01-20 Thread Daniel Pimentel
On 2015-01-20 18:49, l...@gnu.org wrote: My talk at FOSDEM in the Distributions track has been accepted: https://fosdem.org/2015/schedule/event/the_emacs_of_distros/ Make sure to stop by if you’re around! I think there may be at least another Guix hacker so if someone else comes, we could sy

Re: wip-armhf branch ready for wider testing

2015-01-20 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: > Mark H Weaver skribis: > >> Our armhf targets the same set of machines as Debian's armhf, namely the >> ARMv7-A architecture with VFP3D16 coprocessor. So 'uname -m' must >> output "armv7l" or better, and I guess the processor "Features" as >> reported by

Re: Graceful handling of missing patches

2015-01-20 Thread Andreas Enge
On Tue, Jan 20, 2015 at 10:22:39AM +0100, Ludovic Courtès wrote: > $ ./pre-inst-env guix build findutils > guix build: error: WHAT?.patch: patch not found This turned out to be crucial in debugging: The problem with "guix build soprano" was not in the patch of soprano (which was there), but o

Circular dependencies in python modules

2015-01-20 Thread Andreas Enge
Hello! To package zeitgeist, I need python2-rdflib. With python 3, there was no problem, but with python 2, there seems to be a dependency on sparqlwrapper: ... Installed /gnu/store/kxd0yf301yz53cp8lyn7acyha78sfcjk-python2-rdflib-4.1.2/lib/python2.7/site-packages/rdflib-4.1.2-py2.7.egg Processin

Re: guix environment

2015-01-20 Thread David Thompson
Ludovic Courtès writes: > Any takers? :-) I can try, unless someone beats me to it. -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate

FOSDEM

2015-01-20 Thread Ludovic Courtès
My talk at FOSDEM in the Distributions track has been accepted: https://fosdem.org/2015/schedule/event/the_emacs_of_distros/ Make sure to stop by if you’re around! I think there may be at least another Guix hacker so if someone else comes, we could synchronize and hold a tiny summit. :-) Lud

Re: guix environment

2015-01-20 Thread Ludovic Courtès
Federico Beffa skribis: > I believe that "guix environment" does not consider all outputs > properly. As one example, when I execute: > > guix environment libpeas > > the $PATH doesn't include /gnu/store/...glib-2.42.1-bin/bin where > ("glib:bin" ,glib "bin") is one of the native-inputs of the pa

Re: XML path not found

2015-01-20 Thread Ludovic Courtès
Andreas Enge skribis: > when running "guix package -i ...", I obtain the following message: > > find-files: /home/privat/.guix-profile/xml/: No such file or directory Here’s a way to reproduce it: --8<---cut here---start->8--- $ guix package -p foo -i libxml2

Re: Advanced Config Template

2015-01-20 Thread Ludovic Courtès
Omar Radwan skribis: > I'm trying to install guix in a way that I have X, tor and networking on > the fly right after install, but I'm having a very hard time with the > declaration services. This is my config.scm > > (use-modules (gnu)) > > (operating-system > (host-name "Atom") > (timezone

[PATCH] gnu: libpeas: Update to 1.12.1, add arguments and disable tests.

2015-01-20 Thread Federico Beffa
Please find attached a patch for libpeas. This package, up to now, is the only one experiencing some side-effects from the gobject-introspection patch that we adopted from nix and which installs the full path name of shared libraries in .typelib and .gir files. The side-effect here is that some t

guix environment

2015-01-20 Thread Federico Beffa
Hi, I believe that "guix environment" does not consider all outputs properly. As one example, when I execute: guix environment libpeas the $PATH doesn't include /gnu/store/...glib-2.42.1-bin/bin where ("glib:bin" ,glib "bin") is one of the native-inputs of the package. Is this intentional? If y

Re: Graceful handling of missing patches

2015-01-20 Thread Ludovic Courtès
Andreas Enge skribis: > On Tue, Jan 20, 2015 at 10:22:39AM +0100, Ludovic Courtès wrote: >> With commits 6b1f972 and dbab515, patch-not-found errors are now >> gracefully handled at run time: >> >> $ ./pre-inst-env guix build findutils >> guix build: error: WHAT?.patch: patch not found >> >

Re: Graceful handling of missing patches

2015-01-20 Thread Andreas Enge
On Tue, Jan 20, 2015 at 10:22:39AM +0100, Ludovic Courtès wrote: > With commits 6b1f972 and dbab515, patch-not-found errors are now > gracefully handled at run time: > > $ ./pre-inst-env guix build findutils > guix build: error: WHAT?.patch: patch not found > > This introduces an ABI change,

Graceful handling of missing patches

2015-01-20 Thread Ludovic Courtès
With commits 6b1f972 and dbab515, patch-not-found errors are now gracefully handled at run time: $ ./pre-inst-env guix build findutils guix build: error: WHAT?.patch: patch not found This introduces an ABI change, so make sure to run: make clean-go && make Thanks, Ludo’.