Re: [Patch 10/10] Add ring-client-gnome.

2016-09-25 Thread Lukas Gradl
Lukas Gradl writes: > To come back to your question: I am not fully convinced that other > packages using evolution-data-server are able to properly use it as an > input. I am pretty sure that propagating evolution-data-server does not > make it a lot better. Should I

GNOME Settings Schemas - How are they searched for?

2016-09-25 Thread Danny Milosavljevic
Hi, > I was not sure how to handle this properly. The package libring > provides a program 'dring', which is a daemon that, as far as I > understand, does all the communication with peers on the internet. So > in order to place a call, one first needs to run 'dring &' and then > start the

Re: Call for volunteer(s) for Guix "security" web page

2016-09-25 Thread Leo Famulari
On Fri, Sep 16, 2016 at 12:14:58PM -0400, Leo Famulari wrote: > Hello! > > GNU Guix should make it easier for bug reporters to contact us to report > issues in Guix and Guix packages. > > So, we'd like to add a short "Security" page to our web site [0]. This > page should: > > 1) Explain how to

Re: [PATCH] gnu: Add epic5.

2016-09-25 Thread ng0
Leo Famulari writes: > [ Unknown signature status ] > On Sat, Sep 24, 2016 at 01:04:47PM +, ng0 wrote: >> I tried to get ssl working via: >> - patching include/config.h >> - just export the variable which was in include/config.h without >> patching it. >> >> but it

[PATCH 3/4] gnu: Add python-sphinx-argparse.

2016-09-25 Thread Marius Bakke
* gnu/packages/python.scm (python-sphinx-argparse, python2-sphinx-argparse): New variables. --- gnu/packages/python.scm | 45 + 1 file changed, 45 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4b8caea..bb28363

[PATCH 4/4] gnu: Add python2-pbcommand.

2016-09-25 Thread Marius Bakke
* gnu/packages/bioinformatics.scm (python2-pbcommand): New variable. --- gnu/packages/bioinformatics.scm | 50 + 1 file changed, 50 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 1bf91a9..9343cc6 100644

[PATCH 1/4] gnu: Add python-avro.

2016-09-25 Thread Marius Bakke
* gnu/packages/serialization.scm (avro-version): New variable (private). (avro-source): New variable (private). (python-avro, python2-avro): New variables. --- gnu/packages/serialization.scm | 50 ++ 1 file changed, 50 insertions(+) diff --git

Re: [PATCH v2 0/5] Add FPGA Tools

2016-09-25 Thread Theodoros Foradis
> + #:phases > +(modify-phases %standard-phases > + (add-after 'unpack 'remove-usr-local > +(lambda _ > + (substitute* "iceprog/Makefile" > +(("-L/usr/local/lib") "" > + (delete 'configure I made an omission in in my

Re: [PATCH v2 0/5] Add FPGA Tools

2016-09-25 Thread Theodoros Foradis
> This patch adds FPGA tools. > Danny Milosavljevic (5): > gnu: Add abc. > gnu: Add iverilog. > gnu: Add yosys. > gnu: Add icestorm. > gnu: Add arachne-pnr. > gnu/local.mk | 1 + > gnu/packages/fpga.scm | 273 = > ++ > 2 files

Zipped Python .egg-files

2016-09-25 Thread Hartmut Goebel
Hi, I just packaged a Python package and found was generating a zipped .egg-file - which is not that bad, since this saved space. But: This zip-file does include recent time-stamps. I assume this is wrong, isn't it? Can somebody more skilled than me please implement something like

[PATCH 1/2] gnu: Add python-setproctitle and python2-setproctitle.

2016-09-25 Thread Hartmut Goebel
* gnu/packages/python.scm (python-setproctitle, python2-setproctitle): New variables. --- gnu/packages/python.scm | 58 + 1 file changed, 58 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 688a5d4..95a2027

[PATCH 2/2] gnu: Add python-validictory and python2-validictory.

2016-09-25 Thread Hartmut Goebel
* gnu/packages/python.scm (python-validictory, python2-validictory): New variables. --- gnu/packages/python.scm | 44 1 file changed, 44 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 95a2027..3172bb5 100644 ---

Re: Zipped Python .egg-files

2016-09-25 Thread Marius Bakke
Hartmut Goebel writes: > Hi, > > I just packaged a Python package and found was generating a zipped > .egg-file - which is not that bad, since this saved space. > > But: This zip-file does include recent time-stamps. > > I assume this is wrong, isn't it? Can

locales gone, gnome-terminal doesn't start up anymore

2016-09-25 Thread Danny Milosavljevic
Hi, so I've updated to 947a5d47a50252cb0b87b78a8f83f274dec593e2 git guix and now I don't have any useful locales. $ locale -a C POSIX Also, gnome-terminal doesn't start anymore: $ gnome-terminal Error constructing proxy for org.gnome.Terminal:/org/gnome/Terminal/Factory0: Error calling

Re: [Patch 5/10] opendht: Propagate argon2.

2016-09-25 Thread Lukas Gradl
Hello, I noticed that some linker flags are set incorrectly. The result was that the output of "objdump -p /gnu/store/...-opendht-0.6.1/lib/libopendht.so" was missing a 'NEEDED' line for 'libargon2.so.0'. The attached patch fixes that. Thank you! Best, Lukas From

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-25 Thread Lukas Gradl
Hi, Danny Milosavljevic writes: > Yes. I think that is a good approach. > > Could you send an updated patchset? The attached patch implements everything as discussed. Thank you for your explanation and your help! I am a lot happier with this package now than before.

Re: [PATCH 1/2] gnu: Add python-setproctitle and python2-setproctitle.

2016-09-25 Thread Danny Milosavljevic
On Sun, 25 Sep 2016 22:24:36 +0200 Hartmut Goebel wrote: ... > + (substitute* "Makefile" > + (("\\$\\(PYTHON\\) [^ ]which nosetests[^ ] ") > +(string-append nose "/bin/nosetests " > +#t)))

[PATCH 2/4] gnu: Add python-sphinx-bootstrap-theme.

2016-09-25 Thread Marius Bakke
* gnu/packages/python.scm (python-sphinx-bootstrap-theme, python2-sphinx-bootstrap-theme): New variables. --- gnu/packages/python.scm | 28 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 688a5d4..4b8caea 100644

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-25 Thread Danny Milosavljevic
Hi Lukas, On Sun, 25 Sep 2016 17:45:06 -0500 Lukas Gradl wrote: > Since the return value of "(symlink ...)" is > unspecified, then we don't need the "(and ...)" at all, right? Right. > My understanding is now that if this 'dring' binary were to get > executed, it

Re: [PATCH] tor: Update.

2016-09-25 Thread Efraim Flashner
On Fri, Sep 23, 2016 at 08:49:09PM +, ng0 wrote: > From ff56f2a1c3384acffd4f12edbaa9cdc36d928477 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Fri, 23 Sep 2016 20:46:54 + > Subject: [PATCH] gnu: tor: Update to 0.2.8.8. > > * gnu/packages/tor.scm (tor): Update to

Re: Expat regression fix for master branch

2016-09-25 Thread Leo Famulari
On Mon, Sep 12, 2016 at 05:35:15PM -0400, Leo Famulari wrote: > This patch applies an upstream patch for a regression caused by the fix > for CVE-2016-0718. > > Apparently, the bug only manifests when building with -DXML_UNICODE, > which I don't think our package does. Sebastian Pipping (the

Re: [PATCH] gnu: Add optipng.

2016-09-25 Thread Arun Isaac
`guix lint` reports no issues on my side. Somebody should probably check it on their machine anyway. I am sending an updated patch with the copyright header included.

Re: [PATCH] gnu: Add optipng.

2016-09-25 Thread Kei Kebreau
Arun Isaac writes: > * gnu/packages/image.scm (optipng): New variable. > --- > gnu/packages/image.scm | 33 + > 1 file changed, 33 insertions(+) > > diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm > index 931cad1..4039c1a

Re: Zipped Python .egg-files

2016-09-25 Thread Leo Famulari
On Sun, Sep 25, 2016 at 10:12:18PM +0100, Marius Bakke wrote: > Hartmut Goebel writes: > > > Hi, > > > > I just packaged a Python package and found was generating a zipped > > .egg-file - which is not that bad, since this saved space. > > > > But: This zip-file does

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-25 Thread Lukas Gradl
Hi Danny, Sorry for the delay! Danny Milosavljevic writes: > Hi Lukas, > > I thought about it some more. > > On Sun, 18 Sep 2016 16:43:03 -0500 > Lukas Gradl wrote: >> + (and >> +(install-file "argon2"

Re: [Patch 5/10] opendht: Propagate argon2.

2016-09-25 Thread Danny Milosavljevic
Hi Lukas, On Sun, 25 Sep 2016 17:54:36 -0500 Lukas Gradl wrote: > I noticed that some linker flags are set incorrectly. The result was > that the output of > "objdump -p /gnu/store/...-opendht-0.6.1/lib/libopendht.so" > was missing a 'NEEDED' line for 'libargon2.so.0'.

Re: [PATCH] gnu: Add qscintilla.

2016-09-25 Thread Kei Kebreau
Leo Famulari writes: > On Sat, Sep 24, 2016 at 01:13:33AM -0400, Kei Kebreau wrote: >> Leo Famulari writes: >> > I was getting failures reminiscent of an ABI break. But, I can't >> > reproduce it now. >> > >> > Kei, maybe you should try applying the

Re: [PATCH] gnu: openldap: Use gnutls.

2016-09-25 Thread Efraim Flashner
On Sat, Sep 24, 2016 at 11:11:02AM +0900, Ludovic Courtès wrote: > Efraim Flashner skribis: > > > On Sat, Sep 17, 2016 at 12:21:10AM +0800, Alex Vong wrote: > >> Hello, > >> > >> The following patch does what the title says. The link of the bug > >>

Re: [Patch 5/10] opendht: Propagate argon2.

2016-09-25 Thread Lukas Gradl
Danny Milosavljevic writes: > Hi Lukas, > > On Sun, 25 Sep 2016 17:54:36 -0500 > Lukas Gradl wrote: > >> I noticed that some linker flags are set incorrectly. The result was >> that the output of >> "objdump -p

Re: [PATCH 2/2] utils: Support defaults in substitute-keyword-arguments.

2016-09-25 Thread Eric Bavier
On Sat, 24 Sep 2016 11:21:40 +0900 l...@gnu.org (Ludovic Courtès) wrote: > > > +replaced by EXP. EXP is evaluated in a context where VAR is bound to the > > +previous value of the keyword argument, or DFLT if given." > > +(syntax-case x () > > + ((_ original-args ((kw var dflt ...) exp)

Re: [PATCH 01/25] gnu: Add r-hwriter.

2016-09-25 Thread Ricardo Wurmus
Ludovic Courtès writes: > If you don’t get more feedback, not even from ‘guix lint’, then I guess > you can safely push the 25 patches. :-) Okay, will push them soon! “guix lint” didn’t complain and the packages have all been in use at the MDC for a while now. ~~ Ricardo

Re: [PATCH 2/2] profiles: Build GTK+ input module cache.

2016-09-25 Thread Ricardo Wurmus
宋文武 writes: > Ricardo Wurmus writes: > >> * guix/profiles.scm (gtk-im-modules): New procedure. >> (%default-profile-hooks): Add it. >> --- >> guix/profiles.scm | 63 >> +++ >> 1 file changed, 63

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread Alex Kost
ng0 (2016-09-24 20:00 +) wrote: > We should either be consistent with this in all files or remove this > altogether in my opinion. > >> ng0@shadowwalker ~/src/guix/guix-no-changes$ egrep -nr "ends here" >> gnu/build/vm.scm:323:;;; vm.scm ends here ... > What do you think? I don't know what

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread ng0
Alex Kost writes: > ng0 (2016-09-24 20:00 +) wrote: > >> We should either be consistent with this in all files or remove this >> altogether in my opinion. >> >>> ng0@shadowwalker ~/src/guix/guix-no-changes$ egrep -nr "ends here" >>> gnu/build/vm.scm:323:;;; vm.scm ends

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread John Darrington
On Sun, Sep 25, 2016 at 11:30:41AM +0300, Alex Kost wrote: ng0 (2016-09-24 20:00 +) wrote: > We should either be consistent with this in all files or remove this > altogether in my opinion. > >> ng0@shadowwalker ~/src/guix/guix-no-changes$ egrep -nr "ends here"

[PATCH] gnu: Add NFS related services.

2016-09-25 Thread John Darrington
Another draft for review ... * gnu/services/nfs.scm (pipefs-service-type): New Variable, (gss-service-type): New Variable, (idmap-service-type) New Variable. --- doc/guix.texi| 98 ++-- gnu/services/nfs.scm | 138

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread Danny Milosavljevic
Hi, On Sun, 25 Sep 2016 11:30:41 +0300 Alex Kost wrote: > I don't know what the original purpose of this convention is, That's probably enough reason to remove them. > it was > probably invented in those ancient times when dinosaurs walked by > streets, but I kinda like

remove patchworks.

2016-09-25 Thread ng0
We have 22 pages of "open" patches. But they are not really open. I believe almost no one uses patchworks. I did for some time, and so did Ludovic and probably 3 more people but that's it. When I reported some bug to patchworks upstream I was told this is known and someone worked on it about 9

Re: [PATCH] gnu: Add optipng.

2016-09-25 Thread Arun Isaac
I just noticed that I forgot to add the copyright header. If someone reviews the patch and everything else is fine, I'll send an updated patch with the copyright header. Thanks. signature.asc Description: PGP signature

[PATCH 0/2] gnu: Add and use gettext-minimal.

2016-09-25 Thread Alex Kost
As discussed at , the first patch adds 'gettext-minimal' and uses it instead of 'gnu-gettext' in inputs of other packages. The second patch is for adding *.el files as reported in the bug. These patches were made for 'core-updates' branch. [PATCH 1/2] gnu: Add and use

emacs m17n support

2016-09-25 Thread Arun Isaac
The emacs package is currently missing m17n (multilingualization) support, and is therefore not able to render Indic scripts properly. I have rebuilt emacs with m17n support in my GUIX_PACKAGE_PATH. Shall I send patches? Thanks, Arun Isaac. signature.asc Description: PGP signature

[PATCH 1/2] gnu: Add and use gettext-minimal.

2016-09-25 Thread Alex Kost
* gnu/packages/gettext.scm (gnu-gettext): Rename to... (gettext-minimal): ... this. Adjust synopsis and description. (gnu-gettext): Inherit from it. (po4a): Use 'gettext-minimal' instead of 'gnu-gettext'. * gnu/packages/acl.scm: Likewise. * gnu/packages/admin.scm: Likewise. *

[PATCH 2/2] gnu: gettext: Install Emacs tools.

2016-09-25 Thread Alex Kost
Fixes . Reported by Ivan Vilata i Balaguer . * gnu/packages/gettext.scm (gnu-gettext)[native-inputs]: Add 'emacs'. [arguments]: Add 'add-emacs-autoloads' phase. --- gnu/packages/gettext.scm | 18 +- 1 file changed, 17 insertions(+), 1

Re: [PATCH] gnu: Add optipng.

2016-09-25 Thread Kei Kebreau
Arun Isaac writes: > I just noticed that I forgot to add the copyright header. If someone > reviews the patch and everything else is fine, I'll send an updated > patch with the copyright header. > > Thanks. Everything looks and works fine for me. signature.asc

Re: Superseded packages

2016-09-25 Thread Leo Famulari
On Sat, Sep 24, 2016 at 11:14:41AM +0900, Ludovic Courtès wrote: > Leo Famulari skribis: > > +(define-public attic > > + (package (inherit borg) > > +(name "attic") > > +(properties `((superseded . ,borg) > > I was thinking that we could keep the ‘attic’ recipe

Re: [PATCH] gnu: Add optipng.

2016-09-25 Thread Leo Famulari
On Sun, Sep 25, 2016 at 12:20:40PM -0400, Kei Kebreau wrote: > Arun Isaac writes: > > > I just noticed that I forgot to add the copyright header. If someone > > reviews the patch and everything else is fine, I'll send an updated > > patch with the copyright header. >

Re: [PATCH] python-lzo + python-lz4

2016-09-25 Thread Leo Famulari
On Sat, Sep 24, 2016 at 03:27:45PM +, ng0 wrote: > From 2fb504abdf78e63de0d538fd2cebef43b9fc38f6 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Wed, 21 Sep 2016 23:21:39 + > Subject: [PATCH 1/2] gnu: Add python-lz4. > > * gnu/packages/compression.scm (python-lz4): New

Re: [PATCH] gnu: Add qscintilla.

2016-09-25 Thread Leo Famulari
On Sat, Sep 24, 2016 at 01:13:33AM -0400, Kei Kebreau wrote: > Leo Famulari writes: > > I was getting failures reminiscent of an ABI break. But, I can't > > reproduce it now. > > > > Kei, maybe you should try applying the patches to a fresh Git checkout? > > If they work like

Re: [PATCH] gnu: Add epic5.

2016-09-25 Thread Leo Famulari
On Sat, Sep 24, 2016 at 01:04:47PM +, ng0 wrote: > I tried to get ssl working via: > - patching include/config.h > - just export the variable which was in include/config.h without > patching it. > > but it seems like epic5 does something different which 'justworks™' in > ircii. epic5 is

Re: [PATCH] kakasi + perl-kakasi -- dependencies for namazu

2016-09-25 Thread Leo Famulari
On Sat, Sep 24, 2016 at 02:45:16PM +, ng0 wrote: > Subject: [PATCH 1/2] gnu: Add kakasi. > > * gnu/packages/namazu.scm: New file. > * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Could it go in (gnu packages textutils)? > +(define-public kakasi > + (arguments > +`(;; kakasi-4 /bin/echo

[PATCH 1/2] gnu: utf8proc: Update to 2.0.2.

2016-09-25 Thread Ricardo Wurmus
* gnu/packages/textutils.scm (utf8proc): Update to 2.0.2. --- gnu/packages/textutils.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index c4479fb..a9725b4 100644 --- a/gnu/packages/textutils.scm +++

[PATCH 2/2] gnu: julia: Update to 0.5.0.

2016-09-25 Thread Ricardo Wurmus
* gnu/packages/julia.scm (libuv-julia): Update to commit 8d5131b6c1595920dd30644cd1435b4f344b46c8. (libunwind-for-julia): New variable. (julia): Update to 0.5.0. [arguments]: Disable stripping of binaries; modify "prepare-deps" phase; add "fix-llvm-flag" phase; add "set-home" phase; adjust

Re: [PATCH] kakasi + perl-kakasi -- dependencies for namazu

2016-09-25 Thread Danny Milosavljevic
> > + `(#:tests? #f)) ; Requires kakasi in -lkakasi , fixme. If you like the easy way, just set the environment variable LIBRARY_PATH (or LD_LIBRARY_PATH) before running the tests so it finds the library "kakasi". Something like (arguments ... #phases (modify-phases %standard-phases

Re: [PATCH] Add tinycm.

2016-09-25 Thread Leo Famulari
On Wed, Sep 21, 2016 at 12:07:22PM +, ng0 wrote: > This adds tinycm. But now that I am finished, I think this is not what I > wanted, I wanted http://tinycm.slitaz.org/ . I assumed without looking > at the source that this is just a fork. > Well, no damage in more packages I'd say. Thanks for

Re: Addition to tinycm patch-series (corrects patch 8)

2016-09-25 Thread Leo Famulari
On Wed, Sep 21, 2016 at 12:13:51PM +, ng0 wrote: > Subject: [PATCH] gnu: Add tinycm. > > * gnu/packages/web.scm (tinycm): New variable. LGTM. I will probably make some minor edits to the description. signature.asc Description: PGP signature

Re: [PATCH] kakasi + perl-kakasi -- dependencies for namazu

2016-09-25 Thread Danny Milosavljevic
Oops, I meant (arguments ... #phases (modify-phases %standard-phases (add-before 'check 'check-set-library-path (lambda _ (setenv "LIBRARY_PATH" (getcwd)) ; or wherever the library is; maybe extend the existing LIBRARY_PATH instead if needed. Since setenv's environment

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread Hartmut Goebel
Am 25.09.2016 um 11:38 schrieb Danny Milosavljevic: > That's probably enough reason to remove them. +1 -- Regards Hartmut Goebel | Hartmut Goebel | h.goe...@crazy-compilers.com | | www.crazy-compilers.com | compilers which you thought are impossible |

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread Vincent Legoll
On Sun, Sep 25, 2016 at 7:45 PM, Hartmut Goebel wrote: > Am 25.09.2016 um 11:38 schrieb Danny Milosavljevic: >> That's probably enough reason to remove them. > > +1 +1, but please do not post a patchbomb^Wseries for review on the ML, just script it and merge at the

Re: Cosmetical change: remove inconsistent "$file ends here"?

2016-09-25 Thread John Darrington
On Sun, Sep 25, 2016 at 07:55:48PM +0200, Vincent Legoll wrote: On Sun, Sep 25, 2016 at 7:45 PM, Hartmut Goebel wrote: > Am 25.09.2016 um 11:38 schrieb Danny Milosavljevic: >> That's probably enough reason to remove them. > > +1

Re: [PATCH 06/11] gnu: python-pygments: Update to 2.1.3.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:22AM +, ng0 wrote: > * gnu/packages/python.scm (python-pygments): Update to 2.1.3. LGTM > --- > gnu/packages/python.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index

Re: [PATCH 01/11] gnu: python-certifi: Update to 2016.8.31.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:17AM +, ng0 wrote: > * gnu/packages/python.scm (python-certifi): Update to 2016.8.31. LGTM > --- > gnu/packages/python.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index

Re: [PATCH 10/11] gnu: Add python-pysocks.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:26AM +, ng0 wrote: > * gnu/packages/python.scm (python-pysocks): New variable. Please fix the use of the python2-variant system with a (properties) field in python-pysocks.

Re: [PATCH 04/11] gnu: python-ndg-httpsclient: Update to 0.4.2.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:20AM +, ng0 wrote: > * gnu/packages/python.scm (python-ndg-httpsclient): Update to 0.4.2. > [source]: Use 'pypi-uri' format. LGTM. I will make sure that certbot still build before committing. > --- > gnu/packages/python.scm | 8 +++- > 1 file changed, 3

Re: [PATCH 03/11] gnu: Add python-flask-babel.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:19AM +, ng0 wrote: > * gnu/packages/python.scm (python-flask-babel): New variable. > +(define-public python2-flask-babel > + (package > +(inherit (package-with-python2 > + (strip-python2-variant python-flask-babel))) > +(native-inputs > +

Re: [PATCH 05/11] gnu: python-pyasn1: Update to 0.1.9.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:21AM +, ng0 wrote: > * gnu/packages/python.scm (python-pyasn1): Update to 0.1.9. > [source]: Use 'pypi-uri' format. LGTM > --- > gnu/packages/python.scm | 7 +++ > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/gnu/packages/python.scm

Re: [PATCH 11/11] gnu: Add python-pytest-httpbin-0.0.7.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:27AM +, ng0 wrote: > * gnu/packages/python.scm (python-pytest-httpbin-0.0.7): New variable. Please add a comment to this package definition explaining why we need to use this version. Also, the python2-variant stuff needs to be fixed.

Re: [PATCH 08/11] gnu: Add python-httpbin.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:24AM +, ng0 wrote: > * gnu/packages/python.scm (python-httpbin): New variable. Python2-variant fixes required.

Re: [PATCH 09/11] gnu: Add python-pytest-httpbin.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:25AM +, ng0 wrote: > * gnu/packages/python.scm (python-pytest-httpbin): New variable. python2-variant fixes required.

Re: [PATCH 02/11] gnu: python-dateutil-2: Update to 2.5.3.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:38:18AM +, ng0 wrote: > * gnu/packages/python.scm (python-dateutil-2): Update to 2.5.3. LGTM > --- > gnu/packages/python.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index

Re: [PATCH 11/11] gnu: Add python-pytest-httpbin-0.0.7.

2016-09-25 Thread Leo Famulari
On Tue, Sep 13, 2016 at 01:43:59AM +, ng0 wrote: > I forgot to comment this when I reworked the patch: > This is needed for python-requests 2.10.0 and later (current: 2.11.1), > however I had to stop at this point for now because pytest needed an > update which leads to further problems. The

Re: [PATCH 07/11] gnu: Add python-gunicorn.

2016-09-25 Thread Hartmut Goebel
Am 25.09.2016 um 00:23 schrieb ng0: > Okay. Is there anything more python related you are about to add, so I > can avoid further duplicate work? No, I have no more plans for python related stuff on my list (well, I don't have a list, though). -- Regards Hartmut Goebel | Hartmut Goebel

Re: [PATCH 07/11] gnu: Add python-gunicorn.

2016-09-25 Thread Hartmut Goebel
Am 25.09.2016 um 20:18 schrieb Hartmut Goebel: > Am 25.09.2016 um 00:23 schrieb ng0: >> Okay. Is there anything more python related you are about to add, so I >> can avoid further duplicate work? > No, I have no more plans for python related stuff on my list (well, I > don't have a list, though).