Re: [GSoC] Package management from Emacs

2014-03-06 Thread Ludovic Courtès
Grim Schjetne g...@schjetne.se skribis: l...@gnu.org (Ludovic Courtès) writes: Xue Fuqiao x...@gnu.org skribis: `r' Refresh the package list (`guix-refresh'). This recomputes the package list. Perhaps there should be something that runs ‘guix pull’ too (it’s like ‘apt-get

Re: [PATCH] gnu: gnupg: Add support for version 1.4.16

2014-03-06 Thread Ludovic Courtès
Mark H Weaver m...@netris.org skribis: From 90929b7126a6676ca30f8e968d4b6ca3e10a4d3d Mon Sep 17 00:00:00 2001 From: Mark H Weaver m...@netris.org Date: Wed, 5 Mar 2014 16:21:24 -0500 Subject: [PATCH] gnu: gnupg: Add support for version 1.4.16. * gnu/packages/gnupg.scm (gnupg-1): New

Re: [PATCH] gnu: Add ncmpc

2014-03-06 Thread Ludovic Courtès
David Thompson dthomps...@worcester.edu skribis: From 05b688c100292d9407486235a2ab8f0ac2b27446 Mon Sep 17 00:00:00 2001 From: David Thompson dthomps...@worcester.edu Date: Wed, 5 Mar 2014 20:45:55 -0500 Subject: [PATCH] gnu: Add ncmpc. * gnu/packages/mpd.scm (ncmpc): New variable. Looks

Re: [PATCHES] Add libotr and bitlbee.

2014-03-06 Thread Ludovic Courtès
Mark H Weaver m...@netris.org skribis: From 6ece020375232d3fab6c8c1dc16e1ae0031617ba Mon Sep 17 00:00:00 2001 From: Mark H Weaver m...@netris.org Date: Wed, 5 Mar 2014 19:12:19 -0500 Subject: [PATCH 1/2] gnu: Add libotr. * gnu/packages/messaging.scm: New file. * gnu-system.am

[PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight

2014-03-06 Thread Eric Bavier
This patch adds a couple pretty-printers. Comments? From 07bd4032614f61d94bffddd6355702584a680f0f Mon Sep 17 00:00:00 2001 From: Eric Bavier bav...@member.fsf.org Date: Thu, 6 Mar 2014 14:16:18 -0600 Subject: [PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight *

Re: [GSoC] Package management from Emacs

2014-03-06 Thread Xue Fuqiao
In Package Menu mode, `r' will download the archive contents again, whereas `g' only rebuilds the tabulated list of packages that have been downloaded previously. So we can use `r' (guix pull) to check if there is any updated packages, and use `g' for example to revert the install/delete marks in

Re: [PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight

2014-03-06 Thread Ludovic Courtès
Eric Bavier ericbav...@gmail.com skribis: From 07bd4032614f61d94bffddd6355702584a680f0f Mon Sep 17 00:00:00 2001 From: Eric Bavier bav...@member.fsf.org Date: Thu, 6 Mar 2014 14:16:18 -0600 Subject: [PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight *

[PATCH] coreutils: fix test suite

2014-03-06 Thread Cyril Roelandt
* gnu/packages/patches/coreutils-skip-nohup.patch: patch taken from the git repository of coreutils, that makes sure tests/misc/nohup.sh does not fail when /dev/tty does not exist. * gnu/packages/base.scm (coreutils): use it. * gnu-system.am (dist_patch_DATA): add it. --- gnu-system.am

Want help with writing package recipe

2014-03-06 Thread Joshua Branson
Hello, I'm trying to write a recipe to install GNU typist: http://www.gnu.org/software/gtypist/ Just to be clear, one cannot install gtypist with guix package -i gtypist, because guix does not currently have a recipe for gtypist. Anyway, I used guix download path to tarball

[PATCH 0/5] Python improvements.

2014-03-06 Thread Cyril Roelandt
This patch series, meant to be applied on the core-updates branch, brings a bunch of improvements to the Python package. The first one fixes bug #16569. The second one uses /nix/.../sh in the subprocess module if /bin/sh is not available. I know Mark is not too found of using /bin/sh if it is

[PATCH 2/5] gnu: Python: use /nix/.../sh if /bin/sh cannot be found

2014-03-06 Thread Cyril Roelandt
* gnu/packages/python.scm (python-2): patch Lib/subprocess.py to use /nix/.../sh when /bin/sh is not available (most of the time, in Guix chroot) --- gnu/packages/python.scm | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm

[PATCH 3/5] gnu: Enable tests in Python 3.

2014-03-06 Thread Cyril Roelandt
* gnu/packages/python.scm: enable tests for Python 3 * gnu/packages/python-fix-tests.patch: New file. * gnu/packages/gnu-sysem.am (dist_patch_DATA): add it. --- gnu-system.am | 1 + gnu/packages/patches/python-fix-tests.patch | 62 +

[PATCH 1/5] gnu: Enable the 'ctypes' module in Python.

2014-03-06 Thread Cyril Roelandt
* gnu/packages/python.scm (python-2): add libffi to the inputs and use it to build the ctypes module. --- gnu/packages/python.scm | 8 1 file changed, 8 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 44e3c14..8f92dc2 100644 ---

[PATCH 4/5] gnu: Python: bump to 3.3.4

2014-03-06 Thread Cyril Roelandt
* gnu/packages/python.scm (python): bump to 3.3.4 --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index f58e6db..df53b18 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@