guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: fdisk: Update to 2.0.0a1.


From: Tobias Geerinckx-Rice
Subject: 02/03: gnu: fdisk: Update to 2.0.0a1.
Date: Tue, 25 Jul 2017 17:58:04 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit ae03ee4274670e516b630ae12f8f4350289e8008
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Jul 23 18:12:52 2017 +0200

    gnu: fdisk: Update to 2.0.0a1.
    
    * gnu/packages/disk.scm (fdisk): Update to 2.0.0a1.
    [arguments]: Make sure the build finds its own headers.
---
 gnu/packages/disk.scm | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index b65a7a8..0a6e2c9 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -90,7 +90,7 @@ tables.  It includes a library and command-line utility.")
 (define-public fdisk
   (package
     (name "fdisk")
-    (version "2.0.0a")
+    (version "2.0.0a1")
     (source
      (origin
       (method url-fetch)
@@ -98,13 +98,27 @@ tables.  It includes a library and command-line utility.")
                           version ".tar.gz"))
       (sha256
        (base32
-        "04nd7civ561x2lwcmxhsqbprml3178jfc58fy1v7hzqg5k4nbhy3"))))
+        "1d8za79kw8ihnp2br084rgyjv9whkwp7957rzw815i0izx6xhqy9"))))
     (build-system gnu-build-system)
     (inputs
      `(("gettext" ,gettext-minimal)
        ("guile" ,guile-1.8)
        ("util-linux" ,util-linux)
        ("parted" ,parted)))
+    ;; The build neglects to look for its own headers in its own tree.  A next
+    ;; release should fix this, but may never come: GNU fdisk looks abandoned.
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'skip-broken-header-probes
+           (lambda _
+             (substitute* "backend/configure"
+               (("gnufdisk-common.h .*") "\n"))
+             #t)))
+       #:make-flags (list (string-append "CPPFLAGS="
+                                         " -I../common/include "
+                                         " -I../debug/include "
+                                         " -I../exception/include"))))
     (home-page "https://www.gnu.org/software/fdisk/";)
     (synopsis "Low-level disk partitioning and formatting")
     (description



reply via email to

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