[PATCH] fix licensing information, for "Guy" (Joshua) Grant.

2014-10-20 Thread tadni
So, some months ago I was fairly certain I was going to change my first/given name to Guy... half a year later and it never happened, too I'm completly over that. But, within that timespan -- it so happens I patched some files I worked on to reflect that... so currently it's not reflexctive to

Re: [PATCH 0/3] guix import pypi: trivial fixes.

2014-10-20 Thread Cyril Roelandt
On 10/16/2014 05:02 AM, Ian Denhardt wrote: > Quoting Cyril Roelandt (2014-10-15 18:49:11) >> guix import pypi: Fix a type in a docstring. > > Was this supposed to be typo? > Yep. That is quite funny. I'll fix that, thanks! Cyril.

Re: [PATCH] gnu: Add Cython

2014-10-20 Thread Eric Bavier
Federico Beffa writes: > In preparing this package I've found that the python-build-system (not > sure about the others) defines the environment variable HOME as > "/homeless-shelter". However, that directory does not exist in the > build chroot. This is a problem for cython, because it wants to

[PATCH] gnu: Add cppunit

2014-10-20 Thread John Darrington
* gnu/packages/check.scm (cppunit): New variable. --- gnu/packages/check.scm | 23 +++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index ebb04e2..3d33fae 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -46

Re: [PATCH v2 1/1] Factor out a common pattern into a procedure.

2014-10-20 Thread Ian Denhardt
Quoting Ludovic Courtès (2014-10-20 09:34:34) > Ian Denhardt skribis: > Thanks, pushed! I’ve made the subject line more explicit. You're welcome, and thank you! I agree your subject line is better. > Also, note that the paragraph above isn’t strictly necessary because > these procedures have d

[PATCH] gnu: Add Cython

2014-10-20 Thread Federico Beffa
In preparing this package I've found that the python-build-system (not sure about the others) defines the environment variable HOME as "/homeless-shelter". However, that directory does not exist in the build chroot. This is a problem for cython, because it wants to access $HOME/.cython. Wouldn't it

[PATCH] list-packages: Display package usage count.

2014-10-20 Thread Eric Bavier
This patch adds a simple message like "used by X other packages" to each packages description on https://www.gnu.org/software/guix/package-list.html. >From 41a3599bcdc3888085379801e9a7f05430ffe0c3 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Mon, 20 Oct 2014 12:12:28 -0500 Subject: [PATCH] li

Re: [PATCH] guix: refresh: Use bags.

2014-10-20 Thread Eric Bavier
Ludovic Courtès writes: > Eric Bavier skribis: > >> Ludovic Courtès writes: >> >> From 1d22367e0806cea004631e22a782b7db3ffe65b0 Mon Sep 17 00:00:00 2001 >> From: Eric Bavier >> Date: Mon, 13 Oct 2014 13:46:09 -0500 >> Subject: [PATCH] guix: refresh: Use bags. >> >> * guix/packages.scm (bag-dire

Update sqlite

2014-10-20 Thread Andreas Enge
Hello, needing sqlite, I wondered if I could not quickly update it to the latest version. It appears that sqlite-large-page-size-fix.patch does not apply any more. Mark, as you added it, could you maybe check if it is still needed? Below is the new version and hash. Thanks! Andreas diff --git

Re: [PATCH v2 1/1] Factor out a common pattern into a procedure.

2014-10-20 Thread Ludovic Courtès
Ian Denhardt skribis: > The procedure version-prefix truncates a version string to a certain > number of components. version-major+minor is a special case of this, > which extracts the "major.minor" part of the string. Previously this > was handled by an expression common to several packages. > >