emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27657: closed ([PATCH] gnu: graphviz: Update to 2.


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27657: closed ([PATCH] gnu: graphviz: Update to 2.40.1.)
Date: Thu, 20 Jul 2017 14:14:02 +0000

Your message dated Thu, 20 Jul 2017 19:43:41 +0530
with message-id <address@hidden>
and subject line Re: [bug#27657] [PATCH] gnu: wayland: Improve fix-graphviz 
phase.
has caused the debbugs.gnu.org bug report #27657,
regarding [PATCH] gnu: graphviz: Update to 2.40.1.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27657: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27657
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: graphviz: Update to 2.40.1. Date: Wed, 12 Jul 2017 02:51:28 +0530
* gnu/packages/graphviz.scm (graphviz): Update to 2.40.1.
[arguments]: Remove pre-build phase.
---
 gnu/packages/graphviz.scm | 54 +++++++++++++++++++----------------------------
 1 file changed, 22 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index d47d45e52..99ba4e887 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -44,7 +44,7 @@
 (define-public graphviz
   (package
     (name "graphviz")
-    (version "2.38.0")
+    (version "2.40.1")
     (source (origin
              (method url-fetch)
              (uri (string-append
@@ -52,43 +52,33 @@
                    version ".tar.gz"))
              (sha256
               (base32
-               "17l5czpvv5ilmg17frg0w4qwf89jzh2aglm9fgx0l0aakn6j7al1"))))
+               "08d4ygkxz2f553bxj6087da56a23kx1khv0j8ycxa102vvx1hlna"))))
     (build-system gnu-build-system)
     (arguments
      ;; FIXME: rtest/rtest.sh is a ksh script (!).  Add ksh as an input.
      '(#:tests? #f
-
-       #:phases (alist-cons-before
-                 'build 'pre-build
-                 (lambda _
-                   ;; Work around bogus makefile when using an external
-                   ;; libltdl.  Failing to do so, one hits this error:
-                   ;; "No rule to make target `-lltdl', needed by `libgvc.la'."
-                   (substitute* "lib/gvc/Makefile"
-                     (("am__append_5 *=.*")
-                      "am_append_5 =\n")))
+       #:phases (alist-cons-after
+                 'install 'move-docs
+                 (lambda* (#:key outputs #:allow-other-keys)
+                   (let ((out (assoc-ref outputs "out"))
+                         (doc (assoc-ref outputs "doc")))
+                     (mkdir-p (string-append doc "/share/graphviz"))
+                     (rename-file (string-append out "/share/graphviz/doc")
+                                  (string-append doc "/share/graphviz/doc"))
+                     #t))
                  (alist-cons-after
-                  'install 'move-docs
+                  'move-docs 'move-guile-bindings
                   (lambda* (#:key outputs #:allow-other-keys)
-                           (let ((out (assoc-ref outputs "out"))
-                                 (doc (assoc-ref outputs "doc")))
-                             (mkdir-p (string-append doc "/share/graphviz"))
-                             (rename-file (string-append out 
"/share/graphviz/doc")
-                                          (string-append doc 
"/share/graphviz/doc"))
-                             #t))
-                  (alist-cons-after
-                   'move-docs 'move-guile-bindings
-                   (lambda* (#:key outputs #:allow-other-keys)
-                     (let* ((out (assoc-ref outputs "out"))
-                            (lib (string-append out "/lib"))
-                            (extdir (string-append lib
-                                                   "/guile/2.0/extensions")))
-                       (mkdir-p extdir)
-                       (rename-file (string-append
-                                     lib "/graphviz/guile/libgv_guile.so")
-                                    (string-append extdir
-                                                   "/libgv_guile.so"))))
-                   %standard-phases)))))
+                    (let* ((out (assoc-ref outputs "out"))
+                           (lib (string-append out "/lib"))
+                           (extdir (string-append lib
+                                                  "/guile/2.0/extensions")))
+                      (mkdir-p extdir)
+                      (rename-file (string-append
+                                    lib "/graphviz/guile/libgv_guile.so")
+                                   (string-append extdir
+                                                  "/libgv_guile.so"))))
+                  %standard-phases))))
     (inputs
      `(("libXrender" ,libxrender)
        ("libX11" ,libx11)
-- 
2.12.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#27657] [PATCH] gnu: wayland: Improve fix-graphviz phase. Date: Thu, 20 Jul 2017 19:43:41 +0530
Ludovic Courtès writes:

> Arun Isaac <address@hidden> skribis:
>
>> * gnu/packages/freedesktop.scm (wayland)[arguments]: Return #t from
>> fix-graphviz phase. Add punctuation and upstream bug report link to comments.
>
> OK for ‘staging’, thank you!

Pushed!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]