guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: ndctl: Update to 63.


From: Tobias Geerinckx-Rice
Subject: 03/05: gnu: ndctl: Update to 63.
Date: Wed, 10 Oct 2018 16:14:48 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 1f033795e25f177bb52efe8e98aee7001ba8ccd0
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Oct 10 21:10:23 2018 +0200

    gnu: ndctl: Update to 63.
    
    * gnu/packages/disk.scm (ndctl): Update to 63.
    [source]: Use GIT-FILE-NAME.
    [native-inputs]: Add bash-completion.
    [arguments]: Add '--disable-asciidoctor' and '--without-systemd'
     #:configure-flags.  Don't bother patching unused ./autogen.sh in
    'patch-FHS-file-names' phase.
---
 gnu/packages/disk.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index 338678b..04fe3de 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -600,27 +600,28 @@ passphrases.")
 (define-public ndctl
   (package
     (name "ndctl")
-    (version "61.2")
+    (version "63")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/pmem/ndctl";)
+                    (url "https://github.com/pmem/ndctl.git";)
                     (commit (string-append "v" version))))
-              (file-name (string-append name "-" version "-checkout"))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0vid78jzhmzh505bpwn8mvlamfhcvl6rlfjc29y4yn7zslpydxl7"))))
+                "060nsza8xic769bxj3pvl70a9885bwrc0myw16l095i3z6w7yzwq"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("asciidoc" ,asciidoc)
        ("automake" ,automake)
        ("autoconf" ,autoconf)
+       ("bash-completion" ,bash-completion)
        ("docbook-xsl" ,docbook-xsl)
        ("libtool" ,libtool)
        ("libxml2" ,libxml2)
        ("pkg-config" ,pkg-config)
        ("xmlto" ,xmlto)
-       ;; Required for offline docbook generation:
+       ;; Required for offline docbook generation.
        ("which" ,which)))
     (inputs
      `(("eudev" ,eudev)
@@ -628,12 +629,13 @@ passphrases.")
        ("kmod" ,kmod)
        ("util-linux" ,util-linux)))
     (arguments
-     `(#:phases
+     `(#:configure-flags
+       (list "--disable-asciidoctor"    ; use docbook-xsl instead
+             "--without-systemd")
+       #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'patch-FHS-file-names
            (lambda _
-             (substitute* "autogen.sh"
-               (("/bin/sh") (which "sh")))
              (substitute* "git-version-gen"
                (("/bin/sh") (which "sh")))
              (substitute* "git-version"



reply via email to

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