Re: [PATCH] gnu: Add matplotlib.

2014-11-30 Thread Ludovic Courtès
Federico Beffa  skribis:

> On Sat, Nov 29, 2014 at 10:05 PM, Ludovic Courtès  wrote:
>> What happens is that ‘package-with-python2’ automatically generates
>> python2 variants of the dependencies of the package you give it.  So
>> (package-with-python2 python-matplotlib) generates a package with an
>> input that is exactly (package-with-python2 python-numpydoc), hence with
>> #:tests? #t.
>
> Oh, I see.  Wouldn't it be better if, for each input,
> 'pyckage-with-python2' would check if in (gnu packages python) a
> variable with prefix 'python2-' is defined and, in case it is, use
> that variable instead of constructing new package?

No, I think this is not desirable.  Variable names are for us humans,
and programs shouldn’t try to guess what’s meant by browsing module name
spaces.

Thanks,
Ludo’.



Re: [PATCH] gnu: Add matplotlib.

2014-11-30 Thread Federico Beffa
On Sat, Nov 29, 2014 at 10:05 PM, Ludovic Courtès  wrote:
> What happens is that ‘package-with-python2’ automatically generates
> python2 variants of the dependencies of the package you give it.  So
> (package-with-python2 python-matplotlib) generates a package with an
> input that is exactly (package-with-python2 python-numpydoc), hence with
> #:tests? #t.

Oh, I see.  Wouldn't it be better if, for each input,
'pyckage-with-python2' would check if in (gnu packages python) a
variable with prefix 'python2-' is defined and, in case it is, use
that variable instead of constructing new package?

>
> The fix is to explicitly use the right python2-numpydoc, along the lines
> of:
>
>   (define-public python2-matplotlib
> (let ((matplotlib (package-with-python2 python-matplotlib)))
>   (package (inherit matplotlib)
> ;; Make sure we use exactly PYTHON2-NUMPYDOC, which is
> ;; customized for Python 2.
> (inputs `(("numpydoc" ,python2-numpydoc)
>   ,@(alist-delete "numpydoc" (package-inputs matplotlib)))
>
>
>> +   ;; FIX-ME: Add backends when available.
>
> Please write “FIXME” for easier grepping and highlighting.
>
> Otherwise the patch looks good to me, thanks for working on it!

I've corrected these two items and pushed the patch.

Thanks for the clarification!
Fede



Re: [PATCH] gnu: Add matplotlib.

2014-11-29 Thread Ludovic Courtès
Federico Beffa  skribis:

> For python2-matplotlib I've noticed a behavior that I do not
> understand: matplotlib depends on numpydoc which I pushed yesterday
> and appears not to be ready yet on hydra. If I build
> python2-matplotlib with
>
> ./pre-inst-env guix build python2-matplotlib
>
> guix tells me that it will build among other packages
>
> /gnu/store/gjfrir5iykxwxicp9dxjv3adk5vpifb4-python2-numpydoc-0.5.drv
>
> However, the build process for this package fails, because a test
> fails. Since I prepared the numpydoc package I know about this test
> and know that the package includes the parameter #:tests? #f.
>
> In fact, if I explicitly build python2-numpydoc with
>
> ./pre-inst-env guix build python2-numpydoc
>
> it finished successfully (skipping the tests).
>
> The two ways of causing numpydoc to be built (direct and indirect)
> generate two independent
>
> /gnu/store/...-python2-numpydoc-0.5-guile-builder
>
> The one generated by an explicit build command includes the #:tests?
> #f flag as expected. However, the indirect one includes a #:tests? #t
> flag! I'm confused. Am I missing something?

What happens is that ‘package-with-python2’ automatically generates
python2 variants of the dependencies of the package you give it.  So
(package-with-python2 python-matplotlib) generates a package with an
input that is exactly (package-with-python2 python-numpydoc), hence with
#:tests? #t.

The fix is to explicitly use the right python2-numpydoc, along the lines
of:

  (define-public python2-matplotlib
(let ((matplotlib (package-with-python2 python-matplotlib)))
  (package (inherit matplotlib)
;; Make sure we use exactly PYTHON2-NUMPYDOC, which is
;; customized for Python 2.
(inputs `(("numpydoc" ,python2-numpydoc)
  ,@(alist-delete "numpydoc" (package-inputs matplotlib)))


> +   ;; FIX-ME: Add backends when available.

Please write “FIXME” for easier grepping and highlighting.

Otherwise the patch looks good to me, thanks for working on it!

Ludo’.



[PATCH] gnu: Add matplotlib.

2014-11-27 Thread Federico Beffa
Hi,

attached you find a patch for matplotlib.

For python2-matplotlib I've noticed a behavior that I do not
understand: matplotlib depends on numpydoc which I pushed yesterday
and appears not to be ready yet on hydra. If I build
python2-matplotlib with

./pre-inst-env guix build python2-matplotlib

guix tells me that it will build among other packages

/gnu/store/gjfrir5iykxwxicp9dxjv3adk5vpifb4-python2-numpydoc-0.5.drv

However, the build process for this package fails, because a test
fails. Since I prepared the numpydoc package I know about this test
and know that the package includes the parameter #:tests? #f.

In fact, if I explicitly build python2-numpydoc with

./pre-inst-env guix build python2-numpydoc

it finished successfully (skipping the tests).

The two ways of causing numpydoc to be built (direct and indirect)
generate two independent

/gnu/store/...-python2-numpydoc-0.5-guile-builder

The one generated by an explicit build command includes the #:tests?
#f flag as expected. However, the indirect one includes a #:tests? #t
flag! I'm confused. Am I missing something?

Here the definition of python2-numpydoc:

(define-public python2-numpydoc
  (package
(inherit (package-with-python2 python-numpydoc))
;; With python-2 1 test (out of 30) fails because it doesn't find
;; matplotlib.  With python-3 it seems to detect at run-time the absence
;; of matplotlib.
(arguments `(#:tests? #f
 #:python ,python-2

Thanks for your advice.
Regards,
Fede
From d9d7c9aedb1f0d970280d32bc0a9f3cf7019784c Mon Sep 17 00:00:00 2001
From: Federico Beffa 
Date: Thu, 27 Nov 2014 20:11:53 +0100
Subject: [PATCH] gnu: Add matplotlib.

* gnu/packages/python.scm (python-matplotlib, python2-matplotlib): New
  variables.
---
 gnu/packages/python.scm | 92 +
 1 file changed, 92 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 68dc67f..150f4a1 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -41,6 +41,11 @@
   #:use-module (gnu packages databases)
   #:use-module (gnu packages zip)
   #:use-module (gnu packages multiprecision)
+  #:use-module (gnu packages texlive)
+  #:use-module (gnu packages texinfo)
+  #:use-module (gnu packages image)
+  #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages fontutils)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix utils)
@@ -2015,3 +2020,90 @@ that client code uses to construct the grammar directly in Python code.")
 ;; of matplotlib.
 (arguments `(#:tests? #f
  #:python ,python-2
+
+(define-public python-matplotlib
+  (package
+(name "python-matplotlib")
+(version "1.4.2")
+(source
+ (origin
+   (method url-fetch)
+   (uri (string-append "mirror://sourceforge/matplotlib"
+   "/matplotlib-" version ".tar.gz"))
+   (sha256
+(base32
+ "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp"
+(build-system python-build-system)
+(outputs '("out" "doc"))
+(inputs
+ `(("python-setuptools" ,python-setuptools)
+   ("python-dateutil" ,python-dateutil-2)
+   ("python-pyparsing" ,python-pyparsing)
+   ("python-six" ,python-six)
+   ("python-pytz" ,python-pytz)
+   ("python-numpy" ,python-numpy-bootstrap)
+   ("python-sphinx" ,python-sphinx)
+   ("python-numpydoc" ,python-numpydoc)
+   ("python-nose" ,python-nose)
+   ("libpng" ,libpng)
+   ("imagemagick" ,imagemagick)
+   ("freetype" ,freetype)
+   ;; FIX-ME: Add backends when available.
+   ;("python-pygtk" ,python-pygtk)
+   ;("python-pycairo" ,python-pycairo)
+   ;("python-pygobject" ,python-pygobject)
+   ;("python-wxpython" ,python-wxpython)
+   ;("python-pyqt" ,python-pyqt)
+   ))
+(native-inputs
+ `(("pkg-config" ,pkg-config)
+   ("texlive" ,texlive)
+   ("texinfo" ,texinfo)))
+(arguments
+ `(#:phases
+   (alist-cons-after
+'install 'install-doc
+(lambda* (#:key outputs #:allow-other-keys)
+  (let* ((data (string-append (assoc-ref outputs "doc") "/share"))
+ (doc (string-append data "/doc/" ,name "-" ,version))
+ (info (string-append data "/info"))
+ (html (string-append doc "/html")))
+(with-directory-excursion "doc"
+  ;; Without setting this variable we get an encoding error.
+  (setenv "LANG" "en_US.UTF-8")
+  ;; Prod