Re: [PATCH] gnu: Add mesa-demos.

2015-03-15 Thread Ludovic Courtès
taylanbayi...@gmail.com (Taylan Ulrich Bayırlı/Kammer) skribis: l...@gnu.org (Ludovic Courtès) writes: [...] From e1f288dee780b374fc2162eb39d96a50d64964c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?= taylanbayi...@gmail.com Date: Fri, 13 Mar 2015

Re: DrRacket

2015-03-15 Thread Ludovic Courtès
I guess the SIGSEGVs are handled by Racket’s GC and are really harmless. Ludo’.

Re: 01/01: gnu: vlc: Update to 2.2.0

2015-03-15 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: Jason Self ja...@bluehome.net skribis: Anyway, Debian seems sufficently slow moving to me and so I looked at that to get an idea of what might be acceptable. They have 3.5 in Wheezy and are jumping to 3.16 for Jessie which I understand is due soon?

Re: ‘bsd-style’ → ‘non-copyleft’

2015-03-15 Thread Taylan Ulrich Bayırlı/Kammer
l...@gnu.org (Ludovic Courtès) writes: I’ve just renamed ‘bsd-style’ in (guix licenses) to ‘non-copyleft’, which is less ambiguous (see http://www.gnu.org/philosophy/words-to-avoid.html#BSD-style.) (The old binding is still there to avoid breakage, but we’ll remove it eventually.) Thanks,

Re: [ART] Updated SLiM theme with GuixSD logo

2015-03-15 Thread 白い熊@相撲道
On 2015-03-15 14:47, l...@gnu.org wrote: The default theme and theme name of ‘slim-service’ are defined in (gnu services xorg): ... The ‘artwork-repository’ variable here comes from (gnu artwork): Many thanks for the explanation. To use the “GNU” SLiM screen, you need to use an older

Re: hackage importer

2015-03-15 Thread Ludovic Courtès
Federico Beffa be...@ieee.org skribis: please find attached an initial version of an importer for packages from Hackage: http://hackage.haskell.org/ Woow, impressive piece of work! [...] * The code handles dependencies with conditionals and tries to comply with the description at

Re: [ART] Updated SLiM theme with GuixSD logo

2015-03-15 Thread Ludovic Courtès
白い熊@相撲道 guix-devel_gnu@sumou.com skribis: On 2015-03-14 15:03, l...@gnu.org wrote: The new theme is elegant, however I'd like to use the Gnu one out of nostalgia. Where can I set it so SLiM shows the GNU logo instead? See the #:theme and #:theme-name options of ‘slim-service’. HTH,

Re: Texlive

2015-03-15 Thread Mark H Weaver
Andreas Enge andr...@enge.fr writes: @@ -124,70 +121,157 @@ ;; Disable tests on mips64 to cope with a failure of luajiterr.test. ;; XXX FIXME fix luajit properly on mips64. - #:tests? ,(not (string-prefix? mips64 (or (%current-target-system) + #:tests? ,(not

Re: 01/01: gnu: vlc: Update to 2.2.0

2015-03-15 Thread Ludovic Courtès
Jason Self ja...@bluehome.net skribis: Ludovic Courtès said; Right. The version has to be chosen carefully (should be a LTS version and one that is likely to remain on fsfla.org and/or that we mirror on alpha.gnu.org), plus we don’t want glibc’s requirement to be too high so people can use

Re: Incomplete first draft of my GSoC proposal

2015-03-15 Thread Ludovic Courtès
Rohan Prinja rohan.pri...@gmail.com skribis: Thank you, this helped. I've updated my proposal accordingly. Great. Regarding DHCPv6: I read up on RFC 3315 and took notes. As you said, I feel that v6 should be kept as a bonus. The two protocols have a lot in common but v6 has enough

Re: [PATCH] gnu: Add mesa-demos.

2015-03-15 Thread Ludovic Courtès
taylanbayi...@gmail.com (Taylan Ulrich Bayırlı/Kammer) skribis: taylanbayi...@gmail.com (Taylan Ulrich Bayırlı/Kammer) writes: +(libxshmfence ,libxshmfence) Please add a margin comment explaining the reason. It's in the Requires.private field of the gl.pc pkg-config file. The

Texlive

2015-03-15 Thread Federico Beffa
Andreas Enge andr...@enge.fr writes: Hello, the attached patch does what its commit message says. It is the fruit of many trials and discussions with Ludovic. The tricky thing was to link to the kpsewhich binary in texlive-bin, but to make it take its configuration file texmf.cnf from

Re: Texlive

2015-03-15 Thread Andreas Enge
On Sun, Mar 15, 2015 at 10:50:05AM +0100, Federico Beffa wrote: If I understand correctly then the two packages, texlive and texlive-small, will essentially be independent. Yes, and mutually exclusive: If you install both, then there will be lots of collisions with an unpredictable outcome.

Add an xfce session to SLiM login menu

2015-03-15 Thread 白い熊@相撲道
Hello: I'd like to reconfigure the system, so that it offers ratpoison and xfce as session types in SLiM. In sysconfig.scm I currently have: (services (cons* (slim-service #:sessions (list %ratpoison-session-type)) ... How do I add xfce there? Also, I need to probably add a (packages...

Re: Texlive

2015-03-15 Thread Andreas Enge
On Sun, Mar 15, 2015 at 11:33:45AM -0400, Mark H Weaver wrote: - #:tests? ,(not (string-prefix? mips64 (or (%current-target-system) + #:tests? ,(not (equal? mips64el-linux (or (%current-target-system) What is the rationale for this change? None. I see you made a change on January

[PATCH] gnu: Add xcape.

2015-03-15 Thread Axel
Xcape allows to use modifier key as another key when pressed and released on its own. -- Александр Графов 0001-gnu-Add-xcape.patch Description: Binary data

make packagers life easier

2015-03-15 Thread Tomáš Čech
Hello Guix, I'd like to share some thoughts about packaging to find I'm doing it wrong or show that there is room for improvements. I don't think that the proposed improvements are hard to implement (from algorithmic POV) and I'm aware that all the things can be solved on my side, but that is

Re: hackage importer

2015-03-15 Thread Federico Beffa
Thanks for the review! I'm currently on a business trip. Will look carefully at your comments when I will be back. Regards, Fede On Sun, Mar 15, 2015 at 2:38 PM, Ludovic Courtès l...@gnu.org wrote: Federico Beffa be...@ieee.org skribis: please find attached an initial version of an importer

[PATCH] build GTK2 typelib file

2015-03-15 Thread Ricardo Wurmus
Hi Guix, GTK2 does not install its typelib file, which is needed by applications using GTK through gobject introspection. The attached patch fixes this by adding gobject-introspection to the native inputs. An additional make flag is required to use gcc rather than cc. Is the commit message

Re: Add an xfce session to SLiM login menu

2015-03-15 Thread 宋文武
2015-03-16 0:45 GMT+08:00 白い熊@相撲道 guix-devel_gnu@sumou.com: Hello: I'd like to reconfigure the system, so that it offers ratpoison and xfce as session types in SLiM. In sysconfig.scm I currently have: (services (cons* (slim-service #:sessions (list %ratpoison-session-type)) ... How