Re: [PATCH 7/8] gnu: python-oslosphinx: Add python-reno.

2017-01-17 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/openstack.scm (python-oslosphinx)[native-inputs]: > Add python-reno. The commit title is weird (not the above quote). I think this commit can be squashed into the oslosphinx update, since it's a recent dependency.

Re: [PATCH 5/8] gnu: Add python-geventhttpclient.

2017-01-17 Thread Marius Bakke
> +(license license:expat))) > + > +(define-public python2-geventhttpclient > + (package-with-python2 python-geventhttpclient)) 'python setup.py test' doesn't actually do anything on this package. In addition, the tarball comes with .pyc files for the tests and breaks. Here is a patch with

Re: [PATCH 4/8] gnu: Add python-dulwich.

2017-01-17 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/python.scm (python-dulwich, python2-dulwich): New variables. > --- > gnu/packages/python.scm | 25 + > 1 file changed, 25 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm

Re: [PATCH 3/8] gnu: python-requests: Update to 2.10.0.

2017-01-17 Thread Marius Bakke
ure >From b4198062f279db27b186930a54ffaacef2042761 Mon Sep 17 00:00:00 2001 From: Marius Bakke <mba...@fastmail.com> Date: Tue, 17 Jan 2017 21:56:31 +0100 Subject: [PATCH] gnu: python-requests: Update to 2.12.4. * gnu/packages/python.scm (python-requests, python2-requests): Update t

Re: [PATCH 2/8] gnu: Add python-reno.

2017-01-17 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/openstack.scm (python-reno, python2-reno): New variables. > --- > gnu/packages/openstack.scm | 25 + > 1 file changed, 25 insertions(+) > > diff --git a/gnu/packages/openstack.scm

Re: [PATCH 0/8] Make python-oslosphinx work in python-tests branch.

2017-01-17 Thread Marius Bakke
Danny Milosavljevic writes: > Danny Milosavljevic (8): > gnu: python-oslosphinx: Update to 4.9.0. > gnu: Add python-reno. > gnu: python-requests: Update to 2.10.0. > gnu: Add python-dulwich. > gnu: Add python-geventhttpclient. > gnu: Add python-fastimport. >

Re: [PATCH] gnu: python-click: Fix test failure.

2017-01-17 Thread Marius Bakke
Danny Milosavljevic writes: > Hi Ludo, > >> If you know more details, you’re welcome to add them in the comment, but >> otherwise feel free to push! > > Does that mean push to master or to python-tests or to both? > > Also, I don't really know more details other than that

Re: [PATCH] gnu: add proj4.

2017-01-17 Thread Marius Bakke
Björn Höfling writes: > Hi list, > > this im my first patch to Guix, so please tell me what you think. Hello Björn! Welcome to the list! Pretty impressive for a first patch :-) I've committed it with a few cosmetic improvements, described below. > *

Re: Help: a pypi source changed from targz into wheel

2017-01-17 Thread Marius Bakke
ng0 writes: > I'm rebasing my kallithea branch at the moment and with the > release of the new "Routes" on pypi, the old one (which I need > for Kallithea) moved from a tar.gz to a wheel. Do I simply > download the wheel file and calculate the hash on that one, and > fit the

Re: [PATCH] gnu: Add notmuch-vim.

2017-01-15 Thread Marius Bakke
ng0 <n...@libertad.pw> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> ng0 <n...@libertad.pw> writes: >> >>> * gnu/packages/vim.scm (notmuch-vim): New variable. >> >> Thanks for this! I tried installing this plugin, but get an err

Re: [PATCH] gnu: Add ghc-flac.

2017-01-15 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/haskell.scm (ghc-flac): New variable. Cool! [...] > +(native-inputs > + `(("ghc-hspec" ,ghc-hspec) > + ("hspec-discover" ,hspec-discover))) Are these referenced by the built product? If so, they should be in

Re: [PATCH] gnu: Add notmuch-vim.

2017-01-15 Thread Marius Bakke
ng0 writes: > * gnu/packages/vim.scm (notmuch-vim): New variable. Thanks for this! I tried installing this plugin, but get an error while loading it according to upstream instructions[0]: Error detected while processing command line: E492: Not an editor command: :NotMuch

Re: [PATCH] gnu: mupdf: Fix some security problems in bundled mujs.

2017-01-15 Thread Marius Bakke
Leo Famulari <l...@famulari.name> writes: > On Sun, Jan 15, 2017 at 08:05:48PM +0100, Marius Bakke wrote: >> Is it possible to use the 'package-input-rewriting' procedure here? See >> example at the end of section 5.1.0: >> >> https://www.gnu.org/software/guix/m

[PATCH 4/6] gnu: Add rocksdb.

2017-01-15 Thread Marius Bakke
* gnu/packages/databases.scm (rocksdb): New variable. --- gnu/packages/databases.scm | 86 ++ 1 file changed, 86 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 4bbe55bab..610749d98 100644 ---

[PATCH 6/6] gnu: fio: Enable rbd support.

2017-01-15 Thread Marius Bakke
* gnu/packages/benchmark.scm (fio)[inputs]: Add ceph:lib. --- gnu/packages/benchmark.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm index 465c81b43..6b3c28df3 100644 --- a/gnu/packages/benchmark.scm +++

[PATCH 5/6] gnu: Add ceph.

2017-01-15 Thread Marius Bakke
a/gnu/packages/distributed-filesystems.scm b/gnu/packages/distributed-filesystems.scm new file mode 100644 index 0..f215a847e --- /dev/null +++ b/gnu/packages/distributed-filesystems.scm @@ -0,0 +1,172 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2017 Marius

[PATCH 0/6] gnu: Add ceph.

2017-01-15 Thread Marius Bakke
; ended up unused in favor of "nss" since that is what upstream uses in their release builds. Marius Bakke (6): gnu: Add leveldb. gnu: Add crypto++. gnu: Add python-cram. gnu: Add rocksdb. gnu: Add ceph. gnu: fio: Enable rbd support. gnu/local.mk

[PATCH 2/6] gnu: Add crypto++.

2017-01-15 Thread Marius Bakke
/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2016 Tobias Geerinckx-Rice <m...@tobias.gr> ;;; Copyright © 2016 ng0 <n...@we.make.ritual.n0.is> ;;; Copyright © 2016 Eric Bavier <bav...@member.fsf.org> +;;; Copyright © 2017 Marius Bakke &l

[PATCH 1/6] gnu: Add leveldb.

2017-01-15 Thread Marius Bakke
/databases.scm +++ b/gnu/packages/databases.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2016 David Craven <da...@craven.ch> ;;; Copyright © 2016 Jan Nieuwenhuizen <jann...@gnu.org> ;;; Copyright © 2016 Andy Patterson <ajpat...@uwaterloo.ca> +;;; Copyright © 2017 Marius Bakke &l

[PATCH 3/6] gnu: Add python-cram.

2017-01-15 Thread Marius Bakke
100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -26,7 +26,7 @@ ;;; Copyright © 2016 ng0 <n...@we.make.ritual.n0.is> ;;; Copyright © 2016 Dylan Jeffers <sapientech@sapient...@openmailbox.org> ;;; Copyright © 2016 David Craven <da...@craven.ch> -;;; Copyright ©

Re: [PATCH 1/2] doc: Symlink daemon start-up files.

2017-01-15 Thread Marius Bakke
Leo Famulari writes: > On Fri, Nov 18, 2016 at 03:31:24PM -0500, Leo Famulari wrote: >> On Fri, Nov 18, 2016 at 12:00:33PM +0100, Hartmut Goebel wrote: >> > This patch ensures that always the current profile's daemon will be used. >> > >> > The .service file contains the

Re: [PATCH: gnu: lua-lpeg: Update to 1.0.1.

2017-01-15 Thread Marius Bakke
Jose Miguel Sánchez García writes: > * gnu/packages/lua.scm (lua-lpeg): Update to 1.0.1. Applied, thanks! signature.asc Description: PGP signature

Re: [PATCH 2/2] gnu: Add notmuch-vim.

2017-01-15 Thread Marius Bakke
ng0 <n...@libertad.pw> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> ng0 <n...@libertad.pw> writes: >> >>> Marius Bakke <mba...@fastmail.com> writes: >>> >>>> ng0 <n...@libertad.pw> writes: >>>>

Re: [PATCH 2/2] gnu: Add notmuch-vim.

2017-01-15 Thread Marius Bakke
ng0 <n...@libertad.pw> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> ng0 <n...@libertad.pw> writes: >> >>> * gnu/packages/mail.scm (notmuch-vim): New variable. >>> --- >>> gnu/packages/mail.scm | 37 +++

Re: Openbox: Add obconf.

2017-01-15 Thread Marius Bakke
ng0 <n...@libertad.pw> writes: > ng0 <n...@libertad.pw> writes: > >> Marius Bakke <mba...@fastmail.com> writes: >> >>> ng0 <n...@libertad.pw> writes: >>> >>>> [PATCH] gnu: Add obconf. >>>> >>>>

Re: [PATCH] gnu: mupdf: Fix some security problems in bundled mujs.

2017-01-15 Thread Marius Bakke
Leo Famulari writes: > On Thu, Jan 12, 2017 at 07:59:40PM -0500, Mark H Weaver wrote: >> Here's what we can do: in addition to mupdf itself, we can also add a >> graft for cups-filters (our only package that includes mupdf as an >> input). The replacement for cups-filters

Re: [PATCH 2/2] gnu: Add notmuch-vim.

2017-01-14 Thread Marius Bakke
ng0 <n...@libertad.pw> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> ng0 <n...@libertad.pw> writes: >> >>> * gnu/packages/mail.scm (notmuch-vim): New variable. >> >> I think vim plugins should go in vim.scm, even if it r

Re: [PATCH 2/2] gnu: Add notmuch-vim.

2017-01-14 Thread Marius Bakke
ng0 writes: > * gnu/packages/mail.scm (notmuch-vim): New variable. > --- > gnu/packages/mail.scm | 37 - > 1 file changed, 36 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm > index

Re: Openbox: Add obconf.

2017-01-14 Thread Marius Bakke
ng0 writes: > [PATCH] gnu: Add obconf. > > I noticed we don't have obconf, the configuration tool for openbox. > Nix creates an wrapper for this application > (https://github.com/NixOS/nixpkgs/blob/56904d7c423f2b13b37fbd29f39bbb4b52bc7824/pkgs/tools/X11/obconf/default.nix#L18)

Re: [PATCH 2/2] gnu: Add notmuch-vim.

2017-01-14 Thread Marius Bakke
ng0 writes: > * gnu/packages/mail.scm (notmuch-vim): New variable. I think vim plugins should go in vim.scm, even if it relates to a package residing elsewhere. Could you send an updated patch? TIA! signature.asc Description: PGP signature

Re: [PATCH 1/2] gnu: Add ruby-mail.

2017-01-14 Thread Marius Bakke
ng0 writes: > * gnu/packages/ruby.scm (ruby-mail): New variable. Applied, thanks! I added a note about enabling tests for the next version which only has a single dependency on a different mime gem. signature.asc Description: PGP signature

Re: [PATCH] gnu: ed: Replace with 1.14.1 [fixes security issues].

2017-01-13 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Leo Famulari <l...@famulari.name> skribis: > >> On Thu, Jan 12, 2017 at 10:56:51PM +0100, Marius Bakke wrote: >>> Leo Famulari <l...@famulari.name> writes: >>> >>> > On Thu, Jan 12, 2017 at

Re: [PATCH] gnu: Add perl-parallel-forkmanager.

2017-01-13 Thread Marius Bakke
Ra writes: > Thanks for helping me in creating a right patch. > I think I did everything, below and attached the patch. Thank *you* for contributing, that was quick! I changed the copyright header to use the "©" symbol and pushed as ce195ba1227 . signature.asc

Re: [PATCH] gnu: ed: Replace with 1.14.1 [fixes security issues].

2017-01-12 Thread Marius Bakke
Leo Famulari <l...@famulari.name> writes: > On Thu, Jan 12, 2017 at 10:56:51PM +0100, Marius Bakke wrote: >> Leo Famulari <l...@famulari.name> writes: >> >> > On Thu, Jan 12, 2017 at 09:13:53PM +0100, Marius Bakke wrote: >> >> * gnu/pack

Re: Cross-distro reproducible build patches

2017-01-12 Thread Marius Bakke
Ludovic Courtès writes: > … but I think a number things are written as snippets rather than actual > patches. I think most of the snippets are trivial messing with the gcc __DATE__ and __TIME__ macros. I dug into GCC source code the other day and found this commit:

Re: [PATCH] gnu: ed: Replace with 1.14.1 [fixes security issues].

2017-01-12 Thread Marius Bakke
Leo Famulari <l...@famulari.name> writes: > On Thu, Jan 12, 2017 at 09:13:53PM +0100, Marius Bakke wrote: >> * gnu/packages/ed.scm (ed-1.14.1): New variable. >> (ed)[replacement]: New field. > > Can you add a comment with a link to the bug report? > > https://

Re: [PATCH] gnu: ed: Replace with 1.14.1 [fixes security issues].

2017-01-12 Thread Marius Bakke
John Darrington writes: > Why bother with the replacement? Why not just upgrade it? It's always a good sign when you update a package, and Guix goes along and downloads the bootstrap binaries :-) `guix refresh` seems to have some problems with packages used in

Re: [PATCH] gnu: Add perl-parallel-forkmanager.

2017-01-12 Thread Marius Bakke
Ra writes: > * gnu/packages/perl.scm (perl-parallel-forkmanager): New variable. Thanks! This looks mostly good, see comments below. Can you send an updated patch that also includes copyright information? Thanks in advance! > --- > gnu/packages/perl.scm | 26

[PATCH] gnu: ed: Replace with 1.14.1 [fixes security issues].

2017-01-12 Thread Marius Bakke
* gnu/packages/ed.scm (ed-1.14.1): New variable. (ed)[replacement]: New field. --- gnu/packages/ed.scm | 13 + 1 file changed, 13 insertions(+) diff --git a/gnu/packages/ed.scm b/gnu/packages/ed.scm index 3668aac19..c51a4b82f 100644 --- a/gnu/packages/ed.scm +++ b/gnu/packages/ed.scm

Re: [PATCH] gnu: mupdf: Fix some security problems in bundled mujs.

2017-01-12 Thread Marius Bakke
Leo Famulari writes: > Can you include links to the upstream bug reports in the patch files? Good catch; added. > Through cups, this requires ~600 rebuilds. I wonder if we can graft it? > That is, is the ABI compatible? Good question. The null pointer dereference patch

Packaging IceCat extensions with Guix

2017-01-12 Thread Marius Bakke
PGP signature >From 3a1bc1a489c5f7cd624c661a8887bf2e89ea74b2 Mon Sep 17 00:00:00 2001 From: Marius Bakke <mba...@fastmail.com> Date: Tue, 1 Nov 2016 10:33:52 + Subject: [PATCH] gnu: Add ublock. --- gnu/packages/web-plugins.scm | 114 +++ 1 file changed, 114 insertio

Re: [PATCH] gnu: Add inox.

2017-01-12 Thread Marius Bakke
David Craven writes: >>> * no hidpi scaling: didn't there use to be an enable_hdpi flag? >>> Recompiling with enable_hdpi=true see if that works > >> Oops, let us know! > > I think that the flag was removed and is the default now. I expect > that the problem is that some

Re: [PATCH] gnu: python-iso8601: Add python-pytest.

2017-01-12 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/python.scm (python-iso8601)[native-inputs}: > Add python-pytest. This is done with 63b02364aa259e58169b0c4af7e860f7b1ceebd2 from the 'python-tests' branch. Thanks anyway! signature.asc Description: PGP signature

Re: [PATCH] gnu: Add python-pycontracts.

2017-01-12 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/python.scm (python-pycontracts, python2-pycontracts): > New variables. > --- > gnu/packages/python.scm | 32 > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/python.scm

Re: [PATCH] gnu: python-argcomplete: Add python-pexpect.

2017-01-12 Thread Marius Bakke
Hartmut Goebel writes: > Am 11.01.2017 um 21:08 schrieb Danny Milosavljevic: >> +(native-inputs >> + `(("python-pexpect" ,python-pexpect))) > > Well spotted, this is hidden deeply in the .travis.yml file. What about > adding a comment "for tests"? This is

Re: [PATCH] gnu: xonsh: Update to 0.5.2.

2017-01-12 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/shells.scm (xonsh): Update to 0.5.2. Applied, thanks! signature.asc Description: PGP signature

[PATCH] gnu: mupdf: Fix some security problems in bundled mujs.

2017-01-12 Thread Marius Bakke
* gnu/packages/patches/mupdf-mujs-heap-buffer-overflow.patch: New file. * gnu/packages/patches/mupdf-mujs-null-pointer-dereference.patch: New file. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/pdf.scm (mupdf)[source]: Use them. --- gnu/local.mk

Re: [PATCH 1/2] gnu: Add python-mpmath.

2017-01-12 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Marius Bakke <mba...@fastmail.com> skribis: > >> * gnu/packages/python.scm (python-mpmath, python2-mpmath): New variables. > > LGTM! > > BTW, as noted in ‘HACKING’, feel free to push such non-controversial > changes

Re: [PATCH] gnu: Add inox.

2017-01-12 Thread Marius Bakke
David Craven writes: >> I think if most of the "FIXMEs" are resolved upstream, it might be eligible >> for a free distro. > > Is there reason to believe that this is going to happen any time soon? > Looks like a lot of the remaining work is waiting for upstream to fix > stuff?

Re: [PATCH] gnu: Add inox.

2017-01-11 Thread Marius Bakke
David Craven writes: >> One thing that worries me about Inox is that version 53 is very old and >> likely contains known vulnerabilities. Do you know if they backport >> fixes? If not, I think we should try to stick with upstream Chromium. > > This is due to me not having worked

Re: [PATCH] gnu: moc: Update to 2.5.2.

2017-01-11 Thread Marius Bakke
Kei Kebreau writes: > Thanks for the review! The macros you mention were indeed introduced in > this version. Wow, good catch! > Does this commit message look good to you? > > * gnu/packages/music.scm (moc): Update to 2.5.2. > [source](modules, snippet): Remove timestamps

Re: [PATCH] gnu: moc: Update to 2.5.2.

2017-01-10 Thread Marius Bakke
Kei Kebreau writes: > Overdue update to moc 2.5.2. If it's reproducible for others as well, I'll > commit it to master. > From 389a7e8f02b800bc937a5f7e191d1d090c980401 Mon Sep 17 00:00:00 2001 > From: Kei Kebreau > Date: Tue, 10 Jan 2017 19:18:42

Re: [PATCH] gnu: Add inox.

2017-01-10 Thread Marius Bakke
David Craven writes: >> Don't get too excited yet... :) > > Packaging chromium is a pain in the ass... There was talk on IRC about > inox, so I submitted my progress so far. Tell me about it! I've been secretly maintaining a Chromium branch over at

Re: [PATCH] gnu: gnutls: Make perl a native-input.

2017-01-10 Thread Marius Bakke
David Craven writes: > * gnu/packages/tls.scm (gnutls)[native-inputs]: Make perl a native input. Do you know what perl is used for in gnutls? I see it contains no references, but I also tried building without perl and everything seems fine. Perhaps we can just remove it?

Re: [PATCH v3] gnu: Add ghc-markdown-unlit.

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/haskell.scm (ghc-markdown-unlit): New variable. > --- > gnu/packages/haskell.scm | 27 +++ > 1 file changed, 27 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index

Re: [PATCH 2/5] gnu: gnu-make: Don't replace 'sh' reference with 'bash'.

2017-01-05 Thread Marius Bakke
Leo Famulari writes: > * gnu/packages/base.scm (gnu-make)[arguments]: Use /bin/sh instead of > /bin/bash > in 'set-default-shell' phase. > --- > gnu/packages/base.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gnu/packages/base.scm

Re: [PATCH 0/5] Clean-up of /bin/sh patching

2017-01-05 Thread Marius Bakke
Leo Famulari writes: > This patch series changes all the instances of /bin/sh being patched to > /bin/bash that I can find. > > They are for core-updates. [...] > Leo Famulari (5): > gnu: m4: Don't replace 'sh' reference with 'bash'. > gnu: gnu-make: Don't replace 'sh'

Re: [PATCH v6] gnu: python-sphinx: Update to 1.4.8.

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/python.scm (python-sphinx)[version]: Update to 1.4.8. > [source]: Use pypi-uri. > [propagated-inputs]: Add python-imagesize, python-sphinx-alabaster-theme, > python-babel, python-snowballstemmer, python-six. >

Re: python-tests: Sphinx

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > Hi Marius, > >> This is fixed with e46a043ecd9f9ef46d1d44393362bb7016454544 from the >> 'python-tests' branch. Speaking of which, there are still some failing >> packages in that branch listed at: >>

Re: [PATCH v4 0/3] Prepare for Sphinx update

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > This adds new packages that will be required for an eventual Sphinx update. > > Danny Milosavljevic (3): > gnu: Add python-snowballstemmer. > gnu: Add python-sphinx-cloud-sptheme. > gnu: Add python-sphinx-alabaster-theme. > >

Re: [PATCH 1/1] gnu: python-matplotlib: Fix documentation reST markup error.

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/python.scm (python-matplotlib): Fix documentation reST markup > error. > --- > gnu/packages/python.scm | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index

Re: [PATCH v4 1/1] gnu: python-sphinx: Update to 1.4.8.

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/python.scm (python-sphinx)[version]: Update to 1.4.8. Please also mention changes to inputs, source and other fields in the commit message. signature.asc Description: PGP signature

Re: [PATCH] gnu: sed: Update to 4.3.

2017-01-05 Thread Marius Bakke
Leo Famulari <l...@famulari.name> writes: > On Wed, Jan 04, 2017 at 05:01:34PM +0100, Marius Bakke wrote: >> * gnu/packages/base.scm (sed): Update to 4.3. >> [source]: Use xz tarball. Remove upstreamed patch. >> [home-page]: Use https. >> [native-inputs]: Add pe

Re: GnuTLS and the “trust store”

2017-01-05 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Hello! > > Marius Bakke <mba...@fastmail.com> skribis: > >> Marius Bakke <mba...@fastmail.com> writes: >> >>> ng0 <n...@libertad.pw> writes: >>> >>>> * gnu/packages/curl.scm (c

Re: [PATCH v2] gnu: Add ghc-markdown-unlit.

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > * gnu/packages/haskell.scm (ghc-markdown-unlit): New variable. > --- > gnu/packages/haskell.scm | 29 + > 1 file changed, 29 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm >

Re: [PATCH 1/2] gnu: libtool: Use 'modify-phases'.

2017-01-05 Thread Marius Bakke
Leo Famulari writes: > On Sun, Jan 01, 2017 at 03:24:27PM +, ng0 wrote: >> * gnu/packages/autotools.scm (libtool): Use 'modify-phases'. >> [arguments]: Use 'modify-phases'. > >> + ("help2man" ,help2man) ;because we modify ltmain.sh > > This should go

Re: [PATCH] guix: python-build-system: Properly inform caller about test status.

2017-01-05 Thread Marius Bakke
Danny Milosavljevic writes: > * guix/build/python-build-system.scm (check): Properly inform caller about > test status. > --- > guix/build/python-build-system.scm | 13 +++-- > 1 file changed, 7 insertions(+), 6 deletions(-) > > diff --git

Re: Ruby 2.4.0 update

2017-01-05 Thread Marius Bakke
Ben Woodcroft <b.woodcr...@uq.edu.au> writes: > Hi Marius, > > On 26/12/16 23:18, Ben Woodcroft wrote: >> On 26/12/16 03:09, Marius Bakke wrote: >>> In good tradition, ruby made a new release today (25/12)[0]. >>> >>> I tried building some

Re: [PATCH] gnu: curl: Add ca-bundle to config.

2017-01-04 Thread Marius Bakke
Marius Bakke <mba...@fastmail.com> writes: > ng0 <n...@libertad.pw> writes: > >> * gnu/packages/curl.scm (curl)[arguments]: Add "--with-ca-bundle" configure >> flag. >> [arguments]: Disable failing test number 324. >> --- >> gnu/p

[PATCH] gnu: sed: Update to 4.3.

2017-01-04 Thread Marius Bakke
* gnu/packages/base.scm (sed): Update to 4.3. [source]: Use xz tarball. Remove upstreamed patch. [home-page]: Use https. [native-inputs]: Add perl. * gnu/packages/patches/sed-hurd-path-max.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/local.mk

Re: [PATCH] gnu: curl: Add ca-bundle to config.

2017-01-04 Thread Marius Bakke
ng0 writes: > * gnu/packages/curl.scm (curl)[arguments]: Add "--with-ca-bundle" configure > flag. > [arguments]: Disable failing test number 324. > --- > gnu/packages/curl.scm | 13 - > 1 file changed, 12 insertions(+), 1 deletion(-) > > diff --git

Re: [PATCH 1/1] gnu: unrtf: Fix CVE-2016-10091.

2017-01-04 Thread Marius Bakke
Leo Famulari <l...@famulari.name> writes: > On Wed, Jan 04, 2017 at 02:13:25AM -0500, Leo Famulari wrote: >> On Tue, Jan 03, 2017 at 05:49:29PM +0100, Marius Bakke wrote: >> > Leo Famulari <l...@famulari.name> writes: >> > > +diff --git a/debian/patches/

Re: [PATCH 1/2] gnu: libpng: Fix a null pointer dereference [fixes security issue].

2016-12-29 Thread Marius Bakke
Leo Famulari writes: > * gnu/packages/patches/libpng-fix-null-ptr-dereference.patch: New file. > * gnu/local.mk (dist_patch_DATA): Add it. > * gnu/packages/image.scm (libpng)[replacement]: New field. > (libpng/fixed): New variable. That was quick! Both patches LGTM.

Re: [PATCH 0/1] MPD: Install systemd service files

2016-12-29 Thread Marius Bakke
Leo Famulari writes: > I noticed that MPD 0.19.21 adds a systemd service file for unprivileged > users: > > http://git.musicpd.org/cgit/master/mpd.git/plain/NEWS?h=v0.19.21 > > It works for me! > > This patch installs both the privileged and unprivileged service files. > > I

Re: [PATCH] gnu: leptonica: Update to 1.73.

2016-12-27 Thread Marius Bakke
"Taylan Ulrich Bayırlı/Kammer" <taylanbayi...@gmail.com> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> "Taylan Ulrich Bayırlı/Kammer" <taylanbayi...@gmail.com> writes: >> >>> You know what, Leptonica 1.74.0 has been r

Re: [PATCH] wireshark: Update to 2.2.3.

2016-12-27 Thread Marius Bakke
Nicolas Goaziou writes: > Hello, > > Here is an update for Wireshark. Applied, thanks! signature.asc Description: PGP signature

Re: [PATCH] gnu: Add python-netcdf4.

2016-12-27 Thread Marius Bakke
Thomas Danckaert <thomas.dancka...@gmail.com> writes: > From: Marius Bakke <mba...@fastmail.com> > Subject: Re: [PATCH] gnu: Add python-netcdf4. > Date: Sat, 24 Dec 2016 14:59:35 +0100 > >> Thomas Danckaert <thomas.dancka...@gmail.com> writes: >> >>

Re: [PATCH] gnu: Add httpstat.

2016-12-27 Thread Marius Bakke
Stefan Reichör writes: > Hi Marius! > >> Stefan Reichör writes: >> >>> From 06958884c4a29f43b9ade58a950b95bf9046d9f4 Mon Sep 17 00:00:00 2001 >>> From: Stefan Reichoer >>> Date: Fri, 23 Dec 2016 22:06:15 +0100 >>> Subject: [PATCH] gnu: Add

Re: [PATCH] Update emacs-org to 20161224

2016-12-27 Thread Marius Bakke
Nicolas Goaziou writes: > Hello, > > Here is an update for the latest Org release. Thanks, applied! signature.asc Description: PGP signature

Ruby 2.4.0 update

2016-12-25 Thread Marius Bakke
2016/12/25/ruby-2-4-0-released/ signature.asc Description: PGP signature >From 6f029cbaedf273febef92e9c4197c55414b818d5 Mon Sep 17 00:00:00 2001 From: Marius Bakke <mba...@fastmail.com> Date: Sun, 25 Dec 2016 18:07:47 +0100 Subject: [PATCH] gnu: ruby: Update to 2.4.0. * gnu/packages/ruby.

Re: [PATCH] gnu: leptonica: Update to 1.73.

2016-12-25 Thread Marius Bakke
"Taylan Ulrich Bayırlı/Kammer" <taylanbayi...@gmail.com> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> "Taylan Ulrich Bayırlı/Kammer\"" <taylanbayi...@gmail.com> writes: >> >>> I struggled for days with the followin

Re: [PATCH 0/1] Libxml2 CVE-2016-4658 and CVE-2016-5131

2016-12-24 Thread Marius Bakke
Leo Famulari writes: > This patch fixes CVE-2016-4658 and CVE-2016-5131 in libxml2. > > I noticed that Debian applied several more upstream changes to their > package: > > https://anonscm.debian.org/cgit/debian-xml-sgml/libxml2.git/tree/debian/patches > > Here is the upstream

Re: [PATCH] gnu: Add httpstat.

2016-12-24 Thread Marius Bakke
Stefan Reichör writes: > From 06958884c4a29f43b9ade58a950b95bf9046d9f4 Mon Sep 17 00:00:00 2001 > From: Stefan Reichoer > Date: Fri, 23 Dec 2016 22:06:15 +0100 > Subject: [PATCH] gnu: Add httpstat. > > * gnu/packages/networking.scm (httpstat): New variable. >

Re: [PATCH] gnu: leptonica: Update to 1.73.

2016-12-24 Thread Marius Bakke
"Taylan Ulrich Bayırlı/Kammer\"" writes: > I struggled for days with the following bug and ultimately decided to > disable tests for 1.73 to sidestep it entirely; tests should be > re-enabled with the next release. > > https://github.com/DanBloomberg/leptonica/issues/224

Re: [PATCH] gnu: Add python-netcdf4.

2016-12-24 Thread Marius Bakke
Thomas Danckaert writes: > From b4b54b695e286c19332600c38d5e07fabee409f8 Mon Sep 17 00:00:00 2001 > From: Thomas Danckaert > Date: Fri, 23 Dec 2016 15:06:43 +0100 > Subject: [PATCH] gnu: Add python-netcdf4. > > * gnu/packages/python.scm

Re: [PATCH] gnu: netcdf: Enable HDF4 support.

2016-12-24 Thread Marius Bakke
Thomas Danckaert writes: > Hi Guix, > > this patch enables HDF4 support in the netCDF package. > > By the way, I noticed some error messages from doxygen during the > build: > > error: Problems running dot: exit code=127, command='dot', >

Re: 01/01: gnu: curl: Update replacement to 7.52.0 [fixes CVE-2016-{9586, 9952, 9953}].

2016-12-23 Thread Marius Bakke
ng0 <n...@libertad.pw> writes: > Marius Bakke <mba...@fastmail.com> writes: > >> Leo Famulari <l...@famulari.name> writes: >> >>> On Wed, Dec 21, 2016 at 02:03:21PM +, Marius Bakke wrote: >>>> mbakke pushed a commit to

Re: [PATCH] gnu: Add toxic.

2016-12-23 Thread Marius Bakke
Kei Kebreau writes: > ng0 writes: > >> * gnu/packages/messaging.scm (toxic): New variable. >> --- >> gnu/packages/messaging.scm | 47 >> ++ >> 1 file changed, 47 insertions(+) >> >> diff --git

Re: [PATCH] gnu: Add python-hdf4.

2016-12-23 Thread Marius Bakke
Thomas Danckaert <p...@thomasdanckaert.be> writes: > From: Marius Bakke <mba...@fastmail.com> > Subject: Re: [PATCH] gnu: Add python-hdf4. > Date: Thu, 22 Dec 2016 18:09:07 +0100 > >> Thomas Danckaert <thomas.dancka...@gmail.com> writes: >> >>>

Re: [PATCH] gnu: Add wwwoffle.

2016-12-23 Thread Marius Bakke
Bake Timmons <65pan...@gmail.com> writes: > Marius Bakke <mba...@fastmail.com> writes: > > < snip > > >> I can do these minor edits for you if you prefer, but would like to >> confirm name and email for the copyright. Thanks! >> > > Thanks fo

Re: [PATCH] gnu: Add python-hdf4.

2016-12-22 Thread Marius Bakke
Thomas Danckaert writes: > Hi Guix, > > this patch adds python-hdf4. I'm not sure if the line “Python-HDF4 > is a fork of pyhdf.” in the description is necessary. The original > and “official” pyhdf (http://hdfeos.org/software/pyhdf.php) is > somewhat outdated

Re: [PATCH] gnu: Add wwwoffle.

2016-12-22 Thread Marius Bakke
Bake Timmons <65pan...@gmail.com> writes: > * gnu/packages/web.scm (wwwoffle): New variable. > --- > gnu/packages/web.scm | 28 > 1 file changed, 28 insertions(+) Thanks for this! The patch looks good, but does not build on master because the "libgcrypt" variable

Re: 01/01: gnu: curl: Update replacement to 7.52.0 [fixes CVE-2016-{9586, 9952, 9953}].

2016-12-21 Thread Marius Bakke
Leo Famulari <l...@famulari.name> writes: > On Wed, Dec 21, 2016 at 02:03:21PM +0000, Marius Bakke wrote: >> mbakke pushed a commit to branch master >> in repository guix. >> >> commit 42366b35c3f9f8dc8b059d3369b8196a4b832c18 >> Author: Marius Bakke <mba

Re: [PATCH 6/6] gnu: Add grub-efi.

2016-12-20 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Marius Bakke <mba...@fastmail.com> skribis: > >> Ludovic Courtès <l...@gnu.org> writes: >> >>> Hello! >>> >>> Marius Bakke <mba...@fastmail.com> skribis: >>> >>>>&g

Re: [PATCH 6/6] gnu: Add grub-efi.

2016-12-20 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Hello! > > Marius Bakke <mba...@fastmail.com> skribis: > >>>> OK. I'll try to find out why tests don't work with the UEFI variant >>>> first in order to at least write a meaningful comment. Mayb

Re: [PATCH 6/6] gnu: Add grub-efi.

2016-12-19 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Marius Bakke <mba...@fastmail.com> skribis: > >> Ludovic Courtès <l...@gnu.org> writes: >> >>> Hi Marius, >>> >>> Marius Bakke <mba...@fastmail.com> skribis: >>> >>>&

Re: [PATCH 6/6] gnu: Add grub-efi.

2016-12-19 Thread Marius Bakke
Ludovic Courtès <l...@gnu.org> writes: > Hi Marius, > > Marius Bakke <mba...@fastmail.com> skribis: > >> Ludovic Courtès <l...@gnu.org> writes: >> >>>> Relatedly, I think the way to build a 'multi-grub' is to have one >>>> expressi

Re: [PATCH] gnu: maxima: Update to 5.39.0.

2016-12-18 Thread Marius Bakke
Kei Kebreau writes: >> I've found 'diffoscope' to be useful when troubleshooting >> reproducibility problems. E.g. by running it on two cancelled builds, or >> by installing to different output paths with a superficial change to the >> expression. It will show sections that

Re: [PATCH] gnu: maxima: Update to 5.39.0.

2016-12-18 Thread Marius Bakke
Kei Kebreau writes: > This was supposed to be a simple version bump for Maxima, but it has > come to my attention that Maxima hasn't built reproducibily for quite a > while now (since version 5.36.1 according to my tests, possibly > further). Is there any particular reason

Re: [PATCH 6/6] gnu: Add grub-efi.

2016-12-17 Thread Marius Bakke
> For anyone following along at home, I've attached the patches I'm using > for UEFI GuixSD. The latter two probably won't work properly on a > non-UEFI system, needs testing. Never mind the last part, 'guix system vm-image' works fine with these patches. signature.asc Description: PGP

<    2   3   4   5   6   7   8   9   10   11   >