Re: qt: monolithic or modular?

2016-05-27 Thread Andreas Enge
On Fri, May 20, 2016 at 01:59:04PM +0200, Ludovic Courtès wrote: > Efraim Flashner skribis: > > Actually I just checked ./configure --help again, and I can pass the > > flag '-nomake examples' and it shouldn't make the examples at all. I'm > > not sure how much compile time

[PATCH] gnu: Add guile-gnome

2016-05-27 Thread Patrick Hetu
* gnu/packages/gtk.scm (guile-gnome): New variables. --- gnu/packages/gtk.scm | 107 +++ 1 file changed, 107 insertions(+) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 1fe52a4..9111781 100644 --- a/gnu/packages/gtk.scm +++

Re: [PATCH v3] gnu: Add rofi.

2016-05-27 Thread Danny Milosavljevic
On Fri, 27 May 2016 14:35:25 -0400 Leo Famulari wrote: > Gah, I forgot to attach my patch. It's attached now, with the unused > packages removed. Yeah, I installed your version and tried it out. Works fine.

Re: [PATCH v3] gnu: Add rofi.

2016-05-27 Thread Leo Famulari
On Fri, May 27, 2016 at 08:23:31PM +0200, Danny Milosavljevic wrote: > I tried with the inputs removed and it still works fine. See below for the > new patch. Gah, I forgot to attach my patch. It's attached now, with the unused packages removed. > +(inputs > + `(("libx11" ,libx11) > +

[PATCH v3] gnu: Add rofi.

2016-05-27 Thread Danny Milosavljevic
I tried with the inputs removed and it still works fine. See below for the new patch. From: Danny Milosavljevic * gnu/packages/xdisorg.scm (rofi): New variable. --- gnu/packages/xdisorg.scm | 42 ++ 1 file changed, 42

Re: [PATCH] gnu: lapack: Build the LAPACKE library.

2016-05-27 Thread Eric Bavier
On 2016-05-27 12:08, Leo Famulari wrote: On Wed, May 25, 2016 at 09:52:05AM -0400, David Thompson wrote: From: David Thompson * gnu/packages/maths.scm (lapack)[arguments]: Add "-DLAPACKE=ON". Builds for me on x86_64. How much does this add to the size of the lapack package?

Re: [PATCH] gnu: gprolog: Don't install files into "$out/gprolog-1.4.4".

2016-05-27 Thread Leo Famulari
On Thu, May 26, 2016 at 09:46:58PM +0800, 宋文武 wrote: > * gnu/packages/gprolog.scm (gprolog)[arguments]: Pass '--with-install-dir' > to #:configure-flags. It seems like the right thing to do.

Re: [PATCH v2] * gnu/packages/xdisorg.scm (rofi): New variable.

2016-05-27 Thread Leo Famulari
On Thu, May 26, 2016 at 02:56:19AM +0200, Danny Milosavljevic wrote: > +(define-public rofi [...] > +(inputs > + `(("libx11" ,libx11) > + ("libxinerama" ,libxinerama) > + ("libxft" ,libxft) > + ("pango" ,pango) > + ("cairo" ,cairo) > + ("glib" ,glib) > +

Re: [PATCH] gnu: Add hdf4

2016-05-27 Thread Leo Famulari
On Wed, May 25, 2016 at 06:42:04PM +0100, Jeremy Robst wrote: > Hi, > > On Tue, 24 May 2016, Eric Bavier wrote: > > > Could we apply a variation of the hdf5-config-date.patch? > > Ok, I've based a patch on this one, and removed the other unreproduciable > output, so I've not got a reproduciable

Re: [PATCH] gnu: lapack: Build the LAPACKE library.

2016-05-27 Thread Leo Famulari
On Wed, May 25, 2016 at 09:52:05AM -0400, David Thompson wrote: > From: David Thompson > > * gnu/packages/maths.scm (lapack)[arguments]: Add "-DLAPACKE=ON". Builds for me on x86_64.

Re: [PATCH] gnu: Add r-knitrbootstrap.

2016-05-27 Thread Leo Famulari
On Tue, May 24, 2016 at 02:53:31PM +0200, Ricardo Wurmus wrote: > * gnu/packages/statistics.scm (r-knitrbootstrap): New variable. It builds for me. > +(license license:expat))) I couldn't find this in the source code. The only thing I found was the authorship info in 'LICENSE' and this line

Re: Adding wc to Bournish

2016-05-27 Thread Thompson, David
On Fri, May 27, 2016 at 11:28 AM, Taylan Ulrich Bayırlı/Kammer wrote: > By the way, I prefer SRFI-11 let-values (standardized in R7RS): > > (define (wc-command file) > (let-values (((lines words chars) > (call-with-input-file file

Re: Adding wc to Bournish

2016-05-27 Thread Taylan Ulrich Bayırlı/Kammer
Eric Bavier writes: > On 2016-05-26 14:27, Efraim Flashner wrote: >> Here's where I'm currently at with 'wc'. Currently I'm getting an error >> about having the wrong number of arguments for lambda (I assume) > [...] >> +(define (wc-command file) >> + ((lambda (lines

Re: [PATCH]:Resend: Add LLVM, clang and clang-runtime-3.8 to GNU Guix

2016-05-27 Thread Dennis Mungai
Yes, I did. I'll inspect this shortly and give you feedback. On 27 May 2016 at 17:09, Eric Bavier wrote: > On 2016-05-26 15:44, Dennis Mungai wrote: >> >> See corrected patch, as attached. > > >> +(define-public clang-3.8 >> + (clang-from-llvm llvm-3.8

Re: core-updates vs. core-updates-next

2016-05-27 Thread Leo Famulari
On Fri, May 27, 2016 at 10:14:09AM +0200, Ludovic Courtès wrote: > Hi! > > l...@famulari.name (Leo Famulari) skribis: > > > commit b0bbf2491e346a355c1ec5584c16de7fbfa14f5e > > Author: Leo Famulari > > Date: Thu May 26 13:24:41 2016 -0400 > > > > gnu: expat: Remove

[PATCH 2/2] gnu: Add emacs-better-defaults.

2016-05-27 Thread David Thompson
* gnu/packages/emacs.scm (emacs-better-defaults): New variable. --- gnu/packages/emacs.scm | 21 + 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5d6db5a..105c25d 100644 --- a/gnu/packages/emacs.scm +++

Re: Adding wc to Bournish

2016-05-27 Thread Eric Bavier
On 2016-05-26 14:27, Efraim Flashner wrote: Here's where I'm currently at with 'wc'. Currently I'm getting an error about having the wrong number of arguments for lambda (I assume) [...] +(define (wc-command file) + ((lambda (lines words chars) ; lambda doesn't like 3 variables + (format

[PATCH] emacs-pkg-info

2016-05-27 Thread Catonano
This patch should be committed before the one I sent previously (emacs-queue) This is an excerpt from the build log In toplevel form: test/pkg-info-test.el:34:1:Error: Cannot open load file: not a directory, pkg-info-dummy-package Compiling

Re: Add glfw 3.1.2 to GNU Guix

2016-05-27 Thread Ricardo Wurmus
Hi Dennis, > This patch adds glfw 3.1.2 to GNU Guix. Thank you for your patch! > From 6d93bf068efe283940952cb31da1f0c1ba82a0cd Mon Sep 17 00:00:00 2001 > From: brainiarc7 > Date: Thu, 26 May 2016 22:49:25 +0300 > Subject: [PATCH] Add glfw to GNU Guix > --- >

core-updates vs. core-updates-next

2016-05-27 Thread Ludovic Courtès
Hi! l...@famulari.name (Leo Famulari) skribis: > commit b0bbf2491e346a355c1ec5584c16de7fbfa14f5e > Author: Leo Famulari > Date: Thu May 26 13:24:41 2016 -0400 > > gnu: expat: Remove replacement. > > * gnu/packages/xml.scm (expat)[replacement]: Remove field. >

Re: Fwd: [PATCH] emacs-epl

2016-05-27 Thread Alex Kost
Catonano (2016-05-27 00:09 +0300) wrote: > From 0d303576f88d00f2d3b58e7c452bcf575876b124 Mon Sep 17 00:00:00 2001 > From: humanitiesNerd > Date: Thu, 26 May 2016 01:31:30 +0200 > Subject: gnu: Add new variable (emacs-epl). The name should be: gnu: Add emacs-epl. > *

[PATCH] emacs-queue

2016-05-27 Thread Catonano
From da52c5897cb72056b18a1d1d5e94970b5c88d03b Mon Sep 17 00:00:00 2001 From: humanitiesNerd Date: Fri, 27 May 2016 10:01:59 +0200 Subject: gnu: Add new variable (emacs-queue). * gnu/packages/emacs.scm (emacs-queue): New variable. --- diff --git a/gnu/packages/emacs.scm