Re: [PATCH] gnu: Add tftp-hpa.

2017-03-15 Thread Leo Famulari
On Sun, Feb 12, 2017 at 03:05:20PM +0100, Gábor Boskovits wrote: > Hello! Hi, thanks for the contribution! Sorry for the slw reply. I added the package in commit 5b5cf3c7659ee33bb981135708929c8f0a46aec8 > #1 A post on the list cought my attention regarding security of packages > with both

Re: [PATCH] gnu: Add lmms

2017-03-15 Thread Leo Famulari
On Wed, Mar 08, 2017 at 08:47:03PM -0800, Rodger Fox wrote: > Subject: [PATCH] gnu: Add lmms. > > * gnu/packages/music.scm (lmms): New variable. Thanks, this looks fun! > + ("qt" ,qt-4) Qt 4 is no longer supported by the Qt project, but security vulnerabilities continue to be discovered

Re: bug#26075: [PATCH -v3 1/2] build: union: Add create-all-directories? parameter to union-build

2017-03-15 Thread Danny Milosavljevic
Both LGTM!

[PATCH 4/5] doc: Re-generate openvpn service documentation.

2017-03-15 Thread Mathieu Othacehe
* doc/guix.texi (VPN Services): Generate documentation with generate-openvpn-server-documentation and generate-openvpn-client-documentation helpers and guile 2.1.7. --- doc/guix.texi | 88 +-- 1 file changed, 44 insertions(+), 44

[PATCH 5/5] services: Fix a typo which was corrected in generated doc.

2017-03-15 Thread Mathieu Othacehe
* gnu/services/vpn.scm (define-split-configuration): Fix typo. --- gnu/services/vpn.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm index 844a11b3d..e1a04a985 100644 --- a/gnu/services/vpn.scm +++ b/gnu/services/vpn.scm @@ -1,6

[PATCH 1/5] gnu: tlp: Read configuration from /etc/tlp.

2017-03-15 Thread Mathieu Othacehe
* gnu/packages/linux.scm (tlp): Set TLP_CONF to "/etc/tlp". --- gnu/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 28440297e..bb9dbcb3d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@

[PATCH 3/5] gnu: Add tlp service.

2017-03-15 Thread Mathieu Othacehe
* gnu/services/pm.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add gnu/services/tlp.scm. * doc/guix.texi (Power management Services): New section. --- doc/guix.texi | 499 gnu/local.mk| 2 + gnu/services/pm.scm | 406

[PATCH 2/5] services: Factorize define-maybe macro.

2017-03-15 Thread Mathieu Othacehe
* gnu/services/configuration.scm (define-maybe): New exported procedure. (id): New procedure extracted from define-configuration. * gnu/services/messaging.scm (define-all-configurations): Define id inside procedure as define-all-configurations is now the only user. ---

[PATCH 0/5] Add tlp service.

2017-03-15 Thread Mathieu Othacehe
Hi Guix, Here's a patch serie to add tlp service and fix problems encountered meanwhile. While generating tlp documentation, I noticed that parts of the generated documentation had this format : @deftypevr @code{tlp-configuration} parameter boolean tlp-enable? instead of this expected format :

Re: Ready for Guile 2.2!

2017-03-15 Thread Ludovic Courtès
l...@gnu.org (Ludovic Courtès) skribis: > Guile 2.2 comes with a new compiler and a new virtual machine. As a > result, one of the main user-visible changes is that things are faster. An unscientific illustration of this point: --8<---cut here---start->8---

Re: Ready for Guile 2.2!

2017-03-15 Thread Pjotr Prins
On Wed, Mar 15, 2017 at 05:13:01PM +0100, Ludovic Courtès wrote: > Hello Guix! > > Exciting times! > > As of commit 608e42e7c92114497e7908980424288079acee1e, Guix builds with > Guile 2.2 (to be released sometime within the next 24 hours) and the > whole test suite passes. Very cool. Hats off to

Re: Question related to outputs

2017-03-15 Thread Pjotr Prins
On Wed, Mar 15, 2017 at 05:24:47PM +0100, Ludovic Courtès wrote: > So if your package declares “out” and “debug” as its outputs, it must > always produce both. Then users can choose to install only one or both, > but that’s a different issue. That clarifies that :). Both get built. > For

Re: 02/05: gnu: nss, nss-certs: Update to 3.29.3.

2017-03-15 Thread Mark H Weaver
Marius Bakke writes: > Marius Bakke writes: > >> Patch attached. I *think* the two values are for client and server >> respectively, but will study the source and build logs some more to make >> sure we're adjusting the right knobs. >> >> I suggest we

Re: 02/05: gnu: nss, nss-certs: Update to 3.29.3.

2017-03-15 Thread Marius Bakke
Ludovic Courtès writes: > Marius Bakke skribis: > >> Marius Bakke writes: >> >>> Patch attached. I *think* the two values are for client and server >>> respectively, but will study the source and build logs some more to make >>> sure

Re: RFC: writable private scratch XDG_CACHE_HOME in build enviroment?

2017-03-15 Thread Ludovic Courtès
Hey hey! Andy Wingo skribis: > Guile will try to automatically compile .scm files and cache them in > XDG_CACHE_HOME. When building Guile itself, Guile sets XDG_CACHE_HOME > to ${top_builddir}/cache. What if we would set this ourselves for all > packages? That way all

Re: 02/05: gnu: nss, nss-certs: Update to 3.29.3.

2017-03-15 Thread Ludovic Courtès
Marius Bakke skribis: > Marius Bakke writes: > >> Patch attached. I *think* the two values are for client and server >> respectively, but will study the source and build logs some more to make >> sure we're adjusting the right knobs. >> >> I suggest we

Re: Question related to outputs

2017-03-15 Thread Ludovic Courtès
Hi Pjotr, Pjotr Prins skribis: > In a package I have targets for out and debug. Now I want to tell the > make file to build different targets > > make -f Makefile.guix build-with-checks > > make -f Makefile.guix build-without-checks > > The latter would be the

Ready for Guile 2.2!

2017-03-15 Thread Ludovic Courtès
Hello Guix! Exciting times! As of commit 608e42e7c92114497e7908980424288079acee1e, Guix builds with Guile 2.2 (to be released sometime within the next 24 hours) and the whole test suite passes. All the dependencies of Guix except Guile-SSH (optional; use for offloading and for ‘guix copy’) are

Re: Should synopsis handle texinfo markup?

2017-03-15 Thread Ludovic Courtès
Hi Alex, Alex Kost skribis: > Hello, I've noticed that several packages contain "@code" structures in > their synopses, but only 'description' field supports texinfo markup. > For example, look at: > > guix package -s ruby-minitest-bonus-assertions > > So I wonder, should

Re: delete profile

2017-03-15 Thread Ludovic Courtès
Andy Wingo skribis: > On Tue 14 Mar 2017 17:43, Federico Beffa writes: > >> Alex Kost writes: >> >>> Federico Beffa (2017-03-14 09:42 +0100) wrote: >>> I run 'guix gc' and now I find dangling symlinks in my $HOME. >>> >>> What dangling

Re: 02/05: gnu: nss, nss-certs: Update to 3.29.3.

2017-03-15 Thread Marius Bakke
Marius Bakke writes: > Patch attached. I *think* the two values are for client and server > respectively, but will study the source and build logs some more to make > sure we're adjusting the right knobs. > > I suggest we try this on 'core-updates' if the patch is correct.

Re: delete profile

2017-03-15 Thread Andy Wingo
On Tue 14 Mar 2017 17:43, Federico Beffa writes: > Alex Kost writes: > >> Federico Beffa (2017-03-14 09:42 +0100) wrote: >> >>> I run 'guix gc' and now I find dangling symlinks in my $HOME. >> >> What dangling symlinks? Just remove them :-) > > Of this type: