guix-commits
[Top][All Lists]
Advanced

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

04/04: gnu: librep: Update to 0.92.6.


From: Ludovic Courtès
Subject: 04/04: gnu: librep: Update to 0.92.6.
Date: Sun, 19 Mar 2017 18:43:32 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit b99eec83b861f6bee7afb7bd6ffcbdddd8f62b65
Author: Ludovic Courtès <address@hidden>
Date:   Sun Mar 19 23:40:51 2017 +0100

    gnu: librep: Update to 0.92.6.
    
    * gnu/packages/sawfish.scm (librep): Update to 0.92.6.
    [arguments]: New field.
    [native-inputs]: Add AUTOCONF-WRAPPER, AUTOMAKE, and LIBTOOL.
---
 gnu/packages/sawfish.scm | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/sawfish.scm b/gnu/packages/sawfish.scm
index 54b72ff..535dd8e 100644
--- a/gnu/packages/sawfish.scm
+++ b/gnu/packages/sawfish.scm
@@ -22,6 +22,7 @@
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages gtk)
@@ -36,18 +37,29 @@
 (define-public librep
   (package
     (name "librep")
-    (version "0.92.5")
+    (version "0.92.6")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://download.tuxfamily.org/"; name "/"
                                   name "_" version ".tar.xz"))
               (sha256
                (base32
-                "0zsy5gi8kvz5vq41y5rzm6lfi3dpiwbg4diwb6d30qfi72mrpni2"))))
+                "1k6c0hmyzxh8459r790slh9vv9vwy9d7w3nlmrqypbx9mk855hgy"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'bootstrap
+                    (lambda _
+                      ;; The 0.92.6 tarball was not produced by 'make dist'
+                      ;; and lacks generated files.  Sadness.
+                      (zero? (system* "autoreconf" "-vfi")))))))
     (native-inputs
      `(("makeinfo"   ,texinfo)
-       ("pkg-config" ,pkg-config)))
+       ("pkg-config" ,pkg-config)
+
+       ("autoconf" ,(autoconf-wrapper))
+       ("automake" ,automake)
+       ("libtool"  ,libtool)))
     (inputs
      `(("gdbm"     ,gdbm)
        ("gmp"      ,gmp)



reply via email to

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