guix-commits
[Top][All Lists]
Advanced

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

09/11: gnu: autogen: Update to 5.18.14.


From: Tobias Geerinckx-Rice
Subject: 09/11: gnu: autogen: Update to 5.18.14.
Date: Wed, 8 Aug 2018 20:27:04 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 11c8a6491249e63e98d902d7396b9ac0a2bca947
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Aug 8 03:54:41 2018 +0200

    gnu: autogen: Update to 5.18.14.
    
    * gnu/packages/autogen.scm (autogen): Update to 5.18.14.
    [inputs]: Move perl from native-inputs to here...
    [native-inputs]: ...and which from inputs to here.
    [arguments]: Remove unnecessary ‘/usr/bin/tr’ substitution.
---
 gnu/packages/autogen.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/autogen.scm b/gnu/packages/autogen.scm
index f3ab30b..5fc61fc 100644
--- a/gnu/packages/autogen.scm
+++ b/gnu/packages/autogen.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2014 Eric Bavier <address@hidden>
 ;;; Copyright © 2015, 2016 Efraim Flashner <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -31,7 +32,7 @@
 (define-public autogen
   (package
     (name "autogen")
-    (version "5.18.12")
+    (version "5.18.14")
     (source
      (origin
       (method url-fetch)
@@ -39,12 +40,12 @@
                           "/autogen-" version ".tar.xz"))
       (sha256
        (base32
-        "1n5zq4872sakvz9c7ncsdcfp0z8rsybsxvbmhkpbd19ii0pacfxy"))))
+        "1r06gam7sicb9ssn02mhv6r0g5vr4k0l0c67shpqa5i172cspizz"))))
     (build-system gnu-build-system)
-    (native-inputs `(("perl" ,perl)     ;for doc generator mdoc
-                     ("pkg-config" ,pkg-config)))
-    (inputs `(("which" ,which)
-              ("guile" ,guile-2.0)))
+    (native-inputs `(("pkg-config" ,pkg-config)
+                     ("which" ,which)))
+    (inputs `(("guile" ,guile-2.0)
+              ("perl" ,perl)))          ; for doc generator mdoc
     (arguments
      '(#:phases
        (modify-phases %standard-phases
@@ -54,8 +55,7 @@
                (substitute*
                  (append (find-files "agen5/test" "\\.test$")
                          (find-files "autoopts/test" "\\.(test|in)$"))
-                 (("/bin/sh") sh)
-                 (("/usr/bin/tr") "tr"))
+                 (("/bin/sh") sh))
                #t))))))
     (home-page "https://www.gnu.org/software/autogen/";)
     (synopsis "Automated program generator")



reply via email to

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