Re: new package build error: archiver requires 'AM_PROG_AR' in 'configure.ac'

2016-09-01 Thread Hartmut Goebel
Am 31.08.2016 um 21:49 schrieb Ricardo Wurmus: > I have never seen this before. Have you tried patching “configure.ac” > as it says, adding “AM_PROG_AR” somewhere? For now I worked around this issue by adding this line near the top of the confiure.ac: m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) This

Re: new package build error: archiver requires 'AM_PROG_AR' in 'configure.ac'

2016-09-01 Thread Hartmut Goebel
Am 31.08.2016 um 21:56 schrieb David Craven: >> I have never seen this before. Have you tried patching “configure.ac” >> as it says, adding “AM_PROG_AR” somewhere? > You could also try adding gettext and pkg-config to native-inputs. > Some autotools errors magically disappear sometimes... This di

Re: [PATCH] gnu: Add mash.

2016-09-01 Thread Marius Bakke
Leo Famulari writes: >> + (add-after 'unpack 'fix-includes >> + (lambda _ >> + (substitute* '("src/mash/Sketch.cpp" >> "src/mash/CommandFind.cpp") >> + (("^#include \"kseq\\.h\"") >> +"#include \"htslib/kseq.h\"")) >> + #t)

Re: [PATCH] Clean all .go in clean-go

2016-09-01 Thread David Craven
> Using wildcards can be tempting in such cases but it can lead to accidental > file deletions which is worse IMO. If you name what ever file *.go inside of your guix source tree, it's kind of your on fault. > Thinking this might be because of an ABI break I ran `make clean-go && make` > before

Re: Feedback, ideas, discussion: tracking patches, discussions, bugs.

2016-09-01 Thread ng0
ng0 writes: > it seems that gitlab can not be used because we require enterprise: > https://lists.gnu.org/archive/html/guix-devel/2016-08/msg02152.html > > I keep searching and trying out systems, but it almost seems like to > meet a consent where everyone gets what they want, it needs to be > wr

Building for Android and F-Droid

2016-09-01 Thread Hartmut Goebel
Hello, I just want to share an idea I had: Recently I was involved in packaging a app for f-droid. The f-droid build system consists of 1) a virtual machine which get cleaned up after each build. and 2) meta-data descriptions of each package. The meta-data includes build instructions and is basic

State of maven build system, gradle and Apache commens

2016-09-01 Thread Hartmut Goebel
Hi, is anyone working on this? (I'm lacking knowledge to help with maven or gradle, but could help with commons.) -- Schönen Gruß Hartmut Goebel Dipl.-Informatiker (univ), CISSP, CSSLP, ISO 27001 Lead Implementer Information Security Management, Security Governance, Secure Software Development

Re: gexps

2016-09-01 Thread Ludovic Courtès
David Craven skribis: > Hi, I have a couple of questions: > > How do gexps relate to packages? Are they used in the > package->bag->derivation process or is it just for writing services? Yes, currently. Currently the bag->derivation process uses ‘build-expression->derivation’, which is the (ugl

Re: new package build error: archiver requires 'AM_PROG_AR' in 'configure.ac'

2016-09-01 Thread Ludovic Courtès
Hi Hartmut, Hartmut Goebel skribis: > I try to build the asn1c package, see below. But this fails with the > following error message. > > /gnu/store/…-automake-1.15/share/automake-1.15/am/ltlibrary.am: > warning: 'libasn1compiler.la': linking libtool libraries using a non-POSIX > archiver requir

Re: [PATCH 3/7] import cran: description->package: Also return package dependencies.

2016-09-01 Thread Ludovic Courtès
Ricardo Wurmus skribis: > Ludovic Courtès writes: [...] >> In theory it would be possible to do something like: >> >> (define (description->package repo meta) >> (stream-cons `(package …) >> (stream-unfold (lambda (state) >> (description

Re: [PATCH] gnu: slim: Move to display-managers.scm.

2016-09-01 Thread Ludovic Courtès
David Craven skribis: > LGTM. +1, can you push? Thanks, Ludo’.

Re: gexps

2016-09-01 Thread David Craven
> If we force use of the host system type (say x86_64-linux), independent > of (%current-system) (say mips64el-linux), we approach what you want. > However, that would give us different derivations depending on the host > system type. That is, ‘guix system build -s mips64el-linux -d’ on > x86_64 w

Re: screenshot of the web interface to the GNU Guix package manager

2016-09-01 Thread Ludovic Courtès
"Thompson, David" skribis: > On Wed, Aug 31, 2016 at 9:56 AM, ng0 wrote: >> Ricardo Wurmus writes: >> >>> knx...@onionmail.info writes: >>> On https://git.dthompson.us/guix-web.git/blob/HEAD:/README.md there is a dead link to http://media.dthompson.us/mgoblin_media/media_ent

Re: X server crashes during 'guix system reconfigure' on mips64el

2016-09-01 Thread Ludovic Courtès
Leo Famulari skribis: > On Wed, Aug 31, 2016 at 04:17:29PM +0200, Ludovic Courtès wrote: >> I believe this is fixed by commit >> d4f8884fdb897e648fd7f4262b2142d8c363ac76 (and now we have proper >> tests!). >> >> Could you or Leo retry the previous scenario (you need to revert the >> revert) and

Re: State of maven build system, gradle and Apache commens

2016-09-01 Thread Ricardo Wurmus
Hartmut Goebel writes: > is anyone working on this? (I'm lacking knowledge to help with maven > or gradle, but could help with commons.) We are still a long way off before get to a working maven build system. I have a few more Java packages sitting here, but it’s not much. We first need to rec

Re: [PATCH] gnu: Add rpcbind

2016-09-01 Thread Ludovic Courtès
John Darrington skribis: > On Wed, Aug 31, 2016 at 10:38:00PM +0200, John Darrington wrote: > On Wed, Aug 31, 2016 at 10:25:36PM +0200, Ludovic Court??s wrote: > John Darrington skribis: > > > +(synopsis "A server to convert RPC program numbers into > uni

[PATCH v2] gnu: Add mtd-utils.

2016-09-01 Thread Danny Milosavljevic
gnu: Add mtd-utils. * gnu/packages/linux.scm (mtd-utils): New variable. --- gnu/packages/linux.scm | 36 1 file changed, 36 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index aac2cd1..4c690a6 100644 --- a/gnu/packages/linux.scm +

Re: [PATCH 1/2] daemon: Fix '--version'.

2016-09-01 Thread Ludovic Courtès
Alex Vong skribis: > l...@gnu.org (Ludovic Courtès) writes: [...] >> #include >> >> const char *argp_program_version = "foo"; >> const char *argp_program_bug_address = "f...@example.org"; >> >> static const struct argp_option options[] = >> { >> { "system", 's', "SYSTEM", 0, >> "as

Re: [PATCH] gnu: Add mtd-utils.

2016-09-01 Thread Ludovic Courtès
Danny Milosavljevic skribis: > On Wed, 31 Aug 2016 22:59:11 +0200 > l...@gnu.org (Ludovic Courtès) wrote: > >> Are there GPLv2 license headers that lack the “or any later version” >> wording, or anything that explicitly says “version 2 only”? If not, >> it’s v2-or-later. [...] > ./mkfs.ubifs/c

Re: [PATCH] Clean all .go in clean-go

2016-09-01 Thread Ludovic Courtès
Mathieu Lirzin skribis: > Eric Bavier writes: > >> From: Eric Bavier >> >> I encountered a runtime error recently while running `guix system >> reconfigure`. Thinking this might be because of an ABI break I ran `make >> clean-go && make` before trying again, with the same result. >> >> It tur

Re: Display diffs between generations.

2016-09-01 Thread Ludovic Courtès
Vincent Legoll skribis: --list-generations=full > > I think keeping a way to see all generations in one go would be cool --list-generations would still display all the generations. Or did you mean “a way to see *the content* of each generation”? Ludo’.

Re: [PATCH] gnu: Add u-boot.

2016-09-01 Thread Ludovic Courtès
Hi Danny! Danny Milosavljevic skribis: > On Wed, 31 Aug 2016 22:40:57 +0200 > l...@gnu.org (Ludovic Courtès) wrote: > >> > + (lambda* (#:key outputs make-flags #:allow-other-keys) >> > + (let ((configname (string-append ,board "_defconfig"))) >> >> Should be ‘config-name

Re: [PATCH 4/4] gnu: node: Use compression: prefix.

2016-09-01 Thread Ludovic Courtès
Howdy! Jelle Licht skribis: > --- a/gnu/packages/node.scm > +++ b/gnu/packages/node.scm > @@ -27,7 +27,8 @@ >#:use-module (guix build-system gnu) >#:use-module (gnu packages adns) >#:use-module (gnu packages base) > - #:use-module (gnu packages compression) > + #:use-module ((gnu p

Re: [PATCH] gnu: Add ola

2016-09-01 Thread Ludovic Courtès
John J Foerch skribis: > l...@gnu.org (Ludovic Courtès) writes: > >> Hi, >> >> Marius Bakke skribis: >> 2 files changed, 4 insertions(+), 6 deletions(-) gnu/local.mk | 1 + gnu/packages/ola.scm | 9 +++-- >>> >>> Perhaps this could be added to something like automation.s

Re: GHM debriefing

2016-09-01 Thread Ludovic Courtès
Hi, Clément Lassieur skribis: > Ludovic Courtès writes: > >> On that topic, I had an interesting discussion with Nicolas Petton of >> Emacs about patch tracking. Nicolas explained that Gitlab (free >> software) doesn’t have some of the technical defects that GitHub has; in >> particular it can

Re: gexps

2016-09-01 Thread Ludovic Courtès
David Craven skribis: >> If we force use of the host system type (say x86_64-linux), independent >> of (%current-system) (say mips64el-linux), we approach what you want. >> However, that would give us different derivations depending on the host >> system type. That is, ‘guix system build -s mips

Re: new package build error: archiver requires 'AM_PROG_AR' in 'configure.ac'

2016-09-01 Thread Hartmut Goebel
Am 01.09.2016 um 13:44 schrieb Ludovic Courtès: > The beauty of autotools is that users do not need to install them: > tarballs contain everything one needs to configure, build, and install > the thing. I did not know. I thought it's always a good idea to run autoconf. Removing the autotools-stuf

Re: [PATCH] gnu: slim: Move to display-managers.scm.

2016-09-01 Thread David Craven
Pushed as 5fd66a37d58aa13091134d5e6e5f8c62f404ebfe I thought I forgot something. I didn't add a signed-of-by line, but it's signed with my gpg key, so that will have to do for this one...

Re: Building for Android and F-Droid

2016-09-01 Thread Thompson, David
On Thu, Sep 1, 2016 at 7:33 AM, Hartmut Goebel wrote: > Hello, > > I just want to share an idea I had: > > Recently I was involved in packaging a app for f-droid. The f-droid build > system consists of 1) a virtual machine which get cleaned up after each > build. and 2) meta-data descriptions of e

Re: HELP needed with CA certificates! [PATCH] gnu: Add tup, Add pbpst.

2016-09-01 Thread ng0
Ludovic Courtès writes: > Hi, > > ng0 skribis: > >>> The ‘nss-certs’ package provides X.509 certificates: >>> >>> >>> https://www.gnu.org/software/guix/manual/html_node/X_002e509-Certificates.html >> >> I commented nss-certs, enabled or disabled it made no difference to the >> resulting binar

Re: Building for Android and F-Droid

2016-09-01 Thread Ricardo Wurmus
Thompson, David writes: > Does anyone know what we are missing to be able to package android > tools? Given the current state of our support for Java I’d say we mostly need more Java packages in Guix. A first big step would be to package enough to be able to build Maven from source (no cheatin

Re: HELP needed with CA certificates! [PATCH] gnu: Add tup, Add pbpst.

2016-09-01 Thread Ricardo Wurmus
ng0 writes: > Ludovic Courtès writes: > >> Hi, >> >> ng0 skribis: >> The ‘nss-certs’ package provides X.509 certificates: https://www.gnu.org/software/guix/manual/html_node/X_002e509-Certificates.html >>> >>> I commented nss-certs, enabled or disabled it made no differen

Re: [PATCH v6 2/2] gnu: Add arduino-makefile.

2016-09-01 Thread Ricardo Wurmus
Danny Milosavljevic writes: > Hi Ricardo, > > On Wed, 31 Aug 2016 22:02:55 +0200 > Ricardo Wurmus wrote: >> > + (let ((avr-gcc (assoc-ref inputs "avr-gcc-5")) >> > + (avr-binutils (assoc-ref inputs "avr-binutils"))) >> > + (substitute* "bin/ard-reset-a

[PATCH] Add asn1c

2016-09-01 Thread Hartmut Goebel
This patch adds asn1c, an ASN.1 compiler. Notes: 1. Even if ASN.1 is not specific to TLS, I added it into tls.scm, since libtasn1 is already there. 2. The source includes quite a lot of examples. Should these be remved? 3. guix lint reports a suspicious URL, which is a ridirect. I prefer to

[PATCH] gnu: add asn1c

2016-09-01 Thread Hartmut Goebel
* gnu/packages/tsl.scm (asn1c): New variable. --- gnu/packages/tls.scm | 29 + 1 file changed, 29 insertions(+) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 4b87150..52136f6 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -7,6 +7,7 @@

Re: [PATCH] gnu: add asn1c

2016-09-01 Thread Ricardo Wurmus
Hi Hartmut, > * gnu/packages/tsl.scm (asn1c): New variable. Thanks for the patch! Below are some comments about style and customs :) > gnu/packages/tls.scm | 29 + > 1 file changed, 29 insertions(+) > > diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm > ind

[PATCH] updated: gnu: add asn1c

2016-09-01 Thread Hartmut Goebel
* gnu/packages/tsl.scm (asn1c): New variable. --- gnu/packages/tls.scm | 28 1 file changed, 28 insertions(+) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 4b87150..213385d 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -7,6 +7,7 @@

Re: [PATCH v2 1/2] gnu: Add dtc.

2016-09-01 Thread David Craven
So I'm ready to push dtc and u-boot. I'm still not sure about the patches. If you want me to add them I think you should send a new patch. I see you dropped the uboot prefix from the patch names. The patch names also need to be updated in local.mk. I think that the 01 23 and 24 should be dropped,

Re: [PATCH] gnu: add asn1c

2016-09-01 Thread Hartmut Goebel
Am 01.09.2016 um 17:09 schrieb Ricardo Wurmus: > What does “(example)” mean? I don't know. I removed it. The other points I've just fixed ans send an updated patch. -- Regards Hartmut Goebel | Hartmut Goebel | h.goe...@crazy-compilers.com | | www.crazy-compilers.com | c

Re: [PATCH] gnu: Add telepathy-mission-control.

2016-09-01 Thread Kei Kebreau
Leo Famulari writes: > On Tue, Aug 30, 2016 at 05:43:40PM -0400, Kei Kebreau wrote: >> Next package in the quest for Polari. > >> From de2bb9e63d26ec539f8425c7d1b39ba91f987dfa Mon Sep 17 00:00:00 2001 >> From: Kei Kebreau >> Date: Tue, 30 Aug 2016 17:40:17 -0400 >> Subject: [PATCH] gnu: Add tele

[PATCH v2] gnu: Add python-odfpy.

2016-09-01 Thread Marius Bakke
>From f1bccf9bf26088107b6fec31eece30676d5a362f Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 17 Aug 2016 17:45:24 +0100 Subject: [PATCH] gnu: Add python-odfpy. * gnu/packages/python.scm (python-odfpy, python2-odfpy): New variables. --- gnu/packages/python.scm | 34 ++

[PATCH 2/9] activation: Allow /var/lib to be a home directory.

2016-09-01 Thread David Craven
* gnu/build/activation.scm (activate-user): Make sure /var/lib exists. --- gnu/build/activation.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/build/activation.scm b/gnu/build/activation.scm index 10aa58d..3abfdd6 100644 --- a/gnu/build/activation.scm +++ b/gnu/build/activation.scm

[PATCH 9/9] gnu: Add weston.

2016-09-01 Thread David Craven
* gnu/packages/wayland.scm (weston): New file. * gnu/local.mk (GNU_PACKAGE_MODULES): Add it. --- gnu/local.mk | 1 + gnu/packages/wayland.scm | 130 +++ 2 files changed, 131 insertions(+) create mode 100644 gnu/packages/wayland.scm diff -

[PATCH 7/9] gnu: Add sddm.

2016-09-01 Thread David Craven
* gnu/packages/display-managers.scm (sddm): New variable. --- gnu/packages/display-managers.scm | 65 +++ 1 file changed, 65 insertions(+) diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm index d84dbc3..335a7b5 100644 --- a/gn

[PATCH 5/9] gnu: Add prefix to license imports in (gnu packages display-managers).

2016-09-01 Thread David Craven
* gnu/packages/display-managers.scm: Import (guix licenses) with prefix "license:". --- gnu/packages/display-managers.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm index 579b149..3f3c6db 100644 -

[PATCH 8/9] services: Add sddm service.

2016-09-01 Thread David Craven
* gnu/services/sddm.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. --- gnu/local.mk | 1 + gnu/services/sddm.scm | 316 ++ 2 files changed, 317 insertions(+) create mode 100644 gnu/services/sddm.scm diff --git a/gnu/local.mk

[PATCH 3/9] services: Export initrc.

2016-09-01 Thread David Craven
* gnu/services/xorg.scm (define-module): Export initrc. --- gnu/services/xorg.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 4e311de..87c4487 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -42,6 +42,8 @@ #:export

[PATCH 1/9] system: vm: Remove -net user flag.

2016-09-01 Thread David Craven
* gnu/system/vm.scm (common-qemu-options): Remove -net user flag. --- gnu/system/vm.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index c31e3a8..551c3ca 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -462,7 +462,6 @@ with '-virtfs' options

[PATCH 6/9] gnu: Add greenisland.

2016-09-01 Thread David Craven
* gnu/packages/display-managers.scm (greenisland): New variable. --- gnu/packages/display-managers.scm | 91 +-- 1 file changed, 88 insertions(+), 3 deletions(-) diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm index 3f3c6db..

[PATCH 4/9] services: syslog: Use syslog-configuration.

2016-09-01 Thread David Craven
* gnu/services/base.scm (): New variable. (syslog-service-type): Use . (syslog-service): Use . --- gnu/services/base.scm | 28 gnu/tests/base.scm| 9 ++--- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/gnu/services/base.scm b/gnu/services/ba

Re: [PATCH 9/9] gnu: Add weston.

2016-09-01 Thread David Craven
Should maybe go in a different file, created wayland.scm for now

Re: [PATCH] gnu: Add p7zip.

2016-09-01 Thread Kei Kebreau
Ricardo Wurmus writes: > Kei Kebreau writes: > >> Whoops, last patch was a bit messy and stacked on the previous one. This >> patch should be better! > > I just wanted to push a slightly modified version of this (attached) but > I cannot actually build the package. The patch to remove unused co

Re: State of maven build system, gradle and Apache commens

2016-09-01 Thread Hartmut Goebel
Hallo, > apache-commons > > These might have unpackaged dependencies of their own. If you took over > “apache-commons” that would be very helpful. You should be able to use > the “ant-build-system” to get started, even if it doesn’t result in the > prettiest packages. Curiously maven requir

Re: [PATCH] gnu: Add praat

2016-09-01 Thread Brendan Tildesley
Please discard the first patch and consider this updated version. I was able to identify a timestamp and remove it, make the build reproducible. Also, I have added all the licenses to the best of my ability, by which I mean I ripped off the debian package. Praat looks messy but it's fun software. F

[PATCH] gnu: dtc: Add missing exports

2016-09-01 Thread Danny Milosavljevic
gnu: dtc: Add missing exports: - fdt_first_subnode - fdt_next_subnode - fdt_address_cells - fdt_size_cells - fdt_stringlist_contains - fdt_resize --- gnu/local.mk | 1 + .../patches/dtc-add-missing-symbols-to-lds.patch | 59

Re: [PATCH] gnu: Add p7zip.

2016-09-01 Thread Ricardo Wurmus
Kei Kebreau writes: > Ricardo Wurmus writes: > >> Kei Kebreau writes: >> >>> Whoops, last patch was a bit messy and stacked on the previous one. This >>> patch should be better! >> >> I just wanted to push a slightly modified version of this (attached) but >> I cannot actually build the packag

Re: [PATCH v2 1/2] gnu: Add dtc.

2016-09-01 Thread Danny Milosavljevic
Hi David, I've posted just the one patch that is adding the exports now. Leaving those exports out was certainly an oversight by the dtc developers. Not adding them would mean that libfdt.h contained prototypes for functions which don't exist. This is something that is really annoying to have as

Re: [PATCH v6 2/2] gnu: Add arduino-makefile.

2016-09-01 Thread Danny Milosavljevic
Hi Ricardo, On Thu, 01 Sep 2016 16:57:32 +0200 Ricardo Wurmus wrote: >> > + (substitute* "bin/ard-reset-arduino" >> > +(("#!/usr/bin/env python") "#!/usr/bin/python3")) >> > >> This looks unnecessary. When “python-wrapper” is among the inputs the > >> shebang w

Re: [PATCH v6 2/2] gnu: Add arduino-makefile.

2016-09-01 Thread Danny Milosavljevic
On Thu, 1 Sep 2016 20:44:20 +0200 Danny Milosavljevic wrote: > I don't know about this. I thought propagated meant that if I installed > arduino-makefile into the profile it would also install avrdude into the > profile. That is not what I wanted. The Makefile refers to the > /gnu/store/av

Re: [PATCH] updated: gnu: add asn1c

2016-09-01 Thread Danny Milosavljevic
* gnu/packages/tsl.scm (asn1c): New variable. ^^ typo Otherwise LGTM! Someone can probably fix that up when pushing.

Re: [PATCH] gnu: Add p7zip.

2016-09-01 Thread Kei Kebreau
Ricardo Wurmus writes: > Kei Kebreau writes: > >> Ricardo Wurmus writes: >> >>> Kei Kebreau writes: >>> Whoops, last patch was a bit messy and stacked on the previous one. This patch should be better! >>> >>> I just wanted to push a slightly modified version of this (attached) but >>

Re: [PATCH] gnu: sqlite: Enable DBSTAT_VTAB.

2016-09-01 Thread Mark H Weaver
Leo Famulari writes: > On Wed, Aug 31, 2016 at 01:34:30AM +0200, David Craven wrote: >> * gnu/packages/databases.scm (sqlite)[arguments]: Enable configure-flag >> -DSQLITE_ENABLE_DBSTAT_VTAB. >> --- >> gnu/packages/databases.scm | 10 ++ >> 1 file changed, 6 insertions(+), 4 deletions(

[PATCH] gnu: awesome: Update to 3.5.9.

2016-09-01 Thread doncatnip
Hey Guix ! Let's try this again.>From 99ac37565b7a4826c9ca3c9f0545825924effc3d Mon Sep 17 00:00:00 2001 From: doncatnip Date: Thu, 1 Sep 2016 23:08:28 +0200 Subject: [PATCH 1/3] gnu: lua: Remove conflicting flag, pass MYCFLAGS * gnu/packages/lua.scm (lua)[arguments]: Use MYCFLAGS instead of CFLA

Re: [PATCH] gnu: sqlite: Enable DBSTAT_VTAB.

2016-09-01 Thread David Craven
Pushed as 73dc727ec8d2994aed2f011f89dbd89591ff35a8.

Re: [PATCH v2 1/2] gnu: Add dtc.

2016-09-01 Thread David Craven
Pushed as f63e5eaaeb2671ec550b0c21f4afe5b277de6a5d. Thanks!

Info Typo

2016-09-01 Thread Kete Foy
I found a typo in the info documentation. In the Garbage collection section (chp 3), it says /computse/. -- https://emailselfdefense.fsf.org gpg --recv-key 'D7E9 5431 9C95 097F C314 C2A2 DD8C 15BD 0168 5E3A'

Re: Feedback, ideas, discussion: tracking patches, discussions, bugs.

2016-09-01 Thread John Darrington
On Thu, Sep 01, 2016 at 11:19:00AM +, ng0 wrote: I begin to suspect that what I want has not been written, like in several other cases I ran into in the last years. I suspect it is more a case of not being able to agree on one. I have found, in the past, that aegis is a great

Re: Feedback, ideas, discussion: tracking patches, discussions, bugs.

2016-09-01 Thread ng0
John Darrington writes: > [ Unknown signature status ] > On Thu, Sep 01, 2016 at 11:19:00AM +, ng0 wrote: > > I begin to suspect that what I want has not been written, like in > several other cases I ran into in the last years. What I meant here, and before that, will get too offt

Re: [PATCH 1/2] daemon: Fix '--version'.

2016-09-01 Thread Alex Vong
l...@gnu.org (Ludovic Courtès) writes: > Alex Vong skribis: > [...] >> >> I think you have isolated the problem! This test case does not work for >> me. >> >> >> I get the following output after building with >> (g++ -O2 -flto version.cxx): > > What if you compile with ‘gcc’ (and rename to foo.c)

Re: [PATCH] Clean all .go in clean-go

2016-09-01 Thread Eric Bavier
On Thu, 01 Sep 2016 14:37:58 +0200 l...@gnu.org (Ludovic Courtès) wrote: > Mathieu Lirzin skribis: > > > Eric Bavier writes: > > > >> From: Eric Bavier > >> > >> I encountered a runtime error recently while running `guix system > >> reconfigure`. Thinking this might be because of an ABI bre

[PATCH 1/1] gnu: openssl: Update to 1.1.0.

2016-09-01 Thread Leo Famulari
* gnu/packages/tls.scm (openssl): Update to 1.1.0. [source]: Remove deleted patches. [arguments]: Add 'patch-runpath' phase. Remove 'patch-Makefile.org' and 'patch-tests' phases. * gnu/packages/patches/openssl-c-rehash-in.patch: Adjust patch. * gnu/packages/patches/openssl-CVE-2016-2177.patch, gnu/

[PATCH 0/1] OpenSSL 1.1.0

2016-09-01 Thread Leo Famulari
This patch updates to OpenSSL to 1.1.0. I don't think we should update now; basically nothing works yet with the new interface. But, I could adapt the patch to add this version as openssl-next. Your thoughts? PS — Python's journey to support OpenSSL 1.1.0: https://bugs.python.org/issue26470 Le

Re: Info Typo

2016-09-01 Thread Leo Famulari
On Thu, Sep 01, 2016 at 10:19:00PM +, Kete Foy wrote: > I found a typo in the info documentation. In the Garbage collection > section (chp 3), it says /computse/. Fixed in commit 7414de0a84bfc37c30f4f789a6d4b61477a1e352. Thanks for the report!

[PATCH] gnu: vlc: Add inputs.

2016-09-01 Thread Alex Vong
Hi guix, While test-driving vlc on my laptop, I notice our vlc isn't build with subtitle support. So, I go ahead and add as many inputs as possible. There are 3 points to pay attention: 1. Add liba52 as input and remove the old FIXME 2. Add a new FIXME since gnome-vfs is not detected by the vlc b

Re: Feedback, ideas, discussion: tracking patches, discussions, bugs.

2016-09-01 Thread Alex Vong
Hi, I think I share the same concern as you do, currently the mailing list is too crowded and it is difficult to find the relevant bit. Below are my opinions on it: While it may not be as user-friendly as web-based bug tracker these days, I think the Debian bug tracking system is still better t

Re: 02/02: gnu: gsl: Update to 2.2.

2016-09-01 Thread Mark H Weaver
efr...@flashner.co.il (Efraim Flashner) writes: > efraim pushed a commit to branch master > in repository guix. > > commit b16b16e6c2ba9780ebdf936c325e06ebcc0a950b > Author: Efraim Flashner > Date: Tue Aug 30 00:33:17 2016 +0300 > > gnu: gsl: Update to 2.2. > > * gnu/packages/maths

libidn security update patch

2016-09-01 Thread Leo Famulari
... and the patch. From 217f444aa56ec292ddfaacfabcbb6ddea8d1f262 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 2 Sep 2016 02:11:49 -0400 Subject: [PATCH] gnu: libidn: Replace with 1.33 [fixes CVE-2015-8948 and CVE-2016-{6261,6263}]. * gnu/packages/libidn.scm (libidn)[replacement]: New f

libidn security update

2016-09-01 Thread Leo Famulari
The last release of libidn, 1.33, fixed this bugs: https://security-tracker.debian.org/tracker/CVE-2015-8948 https://security-tracker.debian.org/tracker/CVE-2016-6261 https://security-tracker.debian.org/tracker/CVE-2016-6263 We already have libidn 1.33 on core-updates. Quoted from the release an