Re: Problem No space left on device

2014-09-08 Thread Adam Pribyl
On Sun, 7 Sep 2014, Luis Souto Graña wrote: How can I do that? I also already tried: $ qemu-img create -f raw temporal.img 10G # TMPDIR=/mnt/temporal guix system init /mnt/gnuguix/config.scm /mnt/gnuguix --no-substitutes I ended up with the same error: No space left on device What does the df

Re: guix.el multiple outputs

2014-09-08 Thread Ludovic Courtès
Taylan Ulrich Bayirli/Kammer taylanbayi...@gmail.com skribis: In that case, let me just mention a concrete annoyance I had which could be fixed on the UI side: I find it useful to keep a plain text list of all installed packages, in a format that can also be fed back in. So far I used guix

Re: guix.el: Key bindings for a package list

2014-09-08 Thread Ludovic Courtès
Alex Kost alez...@gmail.com skribis: If I understood correctly, the message should look like this: emacs: Improve key bindings for marking the packages. Use U to upgrade the current package, ^ to upgrade all. * emacs/guix-list.el: (guix-list-unmark): With prefix, mark all.

Re: Problem No space left on device

2014-09-08 Thread Ludovic Courtès
Hello, Luis Souto Graña luissoutob...@gmail.com skribis: Hello, could you help me? I have tried to install several times GNU guix using QEMU, but I always end up with the following error: No space left on device. My latest attempt, step by step: $ qemu-img create -f raw gnuguix.img 30G $

Re: GNU Guixguix source archive branch, master, updated. v0.7-198-ge46db77

2014-09-08 Thread Ludovic Courtès
Hi, Thanks for taking care of Linux-Libre upgrades! Jason Self js...@gnu.org skribis: commit e46db7728db1b2ba2e826fe57a8d23fed11049a1 Author: Jason Self j...@jxself.org Date: Sat Sep 6 19:52:38 2014 -0700 gnu: linux-libre: Update to 3.16.2. * gnu/packages/linux.scm

Re: [PATCH] gnu: Add zsh

2014-09-08 Thread Ludovic Courtès
Hello, lemonni...@ulrar.net skribis: This is my first package, so I'd be interested to know if there is things that could be done better. For the license, most of the files uses their own license but a few are under GPL, so I put that. Is that right, or should I put (license (x11-style

Re: [PATCH] gnu: Add postgresql.

2014-09-08 Thread Ludovic Courtès
l...@gnu.org (Ludovic Courtès) skribis: Eventually we may want to move all sqlite, postgres, mysql, and recutils in a new (gnu packages database) module, WDYT? Done in 5f96f30. Ludo’.

Re: [PATCH] gnu: Add zsh

2014-09-08 Thread lemonnierk
Thanks a lot for the feedback. Here is the new patch : From 7352f5876a2c3942ebab92e30f659a62cd7bca7f Mon Sep 17 00:00:00 2001 From: Kevin Lemonnier lemonni...@ulrar.net Date: Mon, 8 Sep 2014 21:06:31 +0200 Subject: [PATCH] gnu: Add zsh * gnu/packages/zsh.scm: New file * gnu-system.am

Re: pypi-guix script

2014-09-08 Thread Thompson, David
On Mon, Sep 8, 2014 at 10:42 AM, Ludovic Courtès l...@gnu.org wrote: Thompson, David dthomps...@worcester.edu skribis: On Mon, Sep 8, 2014 at 3:06 AM, Ludovic Courtès l...@gnu.org wrote: [...] It would indeed be nice to turn it into a ‘guix pipy’ command or something like that. If need

Re: GNU Guixguix source archive branch, master, updated. v0.7-198-ge46db77

2014-09-08 Thread Jason Self
Ludovic Courtès asked: What was the reason for reverting to 3.16.1 and then switching back to 3.16.2? I jumped the gun. I compiled 3.16.2 for my public repository using the deblob scripts and later on updated Guix, but I didn't think to check if lxo had actually published 3.16.2 tarballs yet.

[PATCH 1/6] gnu: Add fribidi

2014-09-08 Thread Marek Benc
* gnu/packages/fribidi.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. --- gnu-system.am|1 + gnu/packages/fribidi.scm | 45 + 2 files changed, 46 insertions(+) create mode 100644 gnu/packages/fribidi.scm diff --git

[PATCH 2/6] gnu: Add libwmf

2014-09-08 Thread Marek Benc
* gnu/packages/image.scm (libwmf): New variable. --- gnu/packages/image.scm | 37 + 1 file changed, 37 insertions(+) diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 014266c..107d1d3 100644 --- a/gnu/packages/image.scm +++

[PATCH 4/6] gnu: Add enchant

2014-09-08 Thread Marek Benc
* gnu/packages/enchant.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. --- gnu-system.am|1 + gnu/packages/enchant.scm | 61 ++ 2 files changed, 62 insertions(+) create mode 100644 gnu/packages/enchant.scm diff --git

[PATCH 4/6] gnu: Add enchant

2014-09-08 Thread Marek Benc
* gnu/packages/enchant.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. --- gnu-system.am|1 + gnu/packages/enchant.scm | 61 ++ 2 files changed, 62 insertions(+) create mode 100644 gnu/packages/enchant.scm diff --git

[PATCH 6/6] Add abiword

2014-09-08 Thread Marek Benc
Phew, this was a bit harder than I thought it would be, but here it is. Note: To get spell checking to work, install an aspell dictionary for your language (currently only English) and then put something like this into ~/.aspell.conf: dict-dir /home/dusan/.guix-profile/lib/aspell A couple