guix-commits
[Top][All Lists]
Advanced

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

04/09: gnu: gengetopt: Update to 2.23.


From: guix-commits
Subject: 04/09: gnu: gengetopt: Update to 2.23.
Date: Sat, 15 Jun 2019 12:38:44 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 02dad49d423146c2f86df00df2466d6616c0f6a2
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jun 15 18:28:13 2019 +0200

    gnu: gengetopt: Update to 2.23.
    
    * gnu/packages/popt.scm (gengetopt): Update to 2.23.
    [native-inputs]: New field.
---
 gnu/packages/popt.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/popt.scm b/gnu/packages/popt.scm
index e3f5fa1..7f6a2e8 100644
--- a/gnu/packages/popt.scm
+++ b/gnu/packages/popt.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014, 2016 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013, 2014, 2016, 2019 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2015, 2016 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <address@hidden>
 ;;;
@@ -24,7 +24,8 @@
   #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system cmake)
-  #:use-module (guix licenses))
+  #:use-module (guix licenses)
+  #:use-module (gnu packages texinfo))
 
 (define-public argtable
   (package
@@ -126,19 +127,21 @@ appropriately.")
 (define-public gengetopt
   (package
     (name "gengetopt")
-    (version "2.22.6")
+    (version "2.23")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://gnu/gengetopt/gengetopt-"
-                           version ".tar.gz"))
+                           version ".tar.xz"))
        (sha256
         (base32
-         "1xq1kcfs6hri101ss4dhym0jn96z4v6jdvx288mfywadc245mc1h"))))
+         "1b44fn0apsgawyqa4alx2qj5hls334mhbszxsy6rfr0q074swhdr"))))
     (build-system gnu-build-system)
     (arguments
      `(#:parallel-build? #f             ; not supported
        #:parallel-tests? #f))           ; likewise
+    (native-inputs
+     `(("texinfo" ,texinfo)))
     (synopsis "Create parsers for command line options")
     (description
      "GNU Gengetopt is a program to generate a C/C++ function for parsing



reply via email to

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