guix-commits
[Top][All Lists]
Advanced

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

04/67: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git202212


From: guix-commits
Subject: 04/67: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224.
Date: Tue, 18 Jul 2023 10:16:00 -0400 (EDT)

janneke pushed a commit to branch hurd-team
in repository guix.

commit 0d6b3e695340f343aa03eb279846eb3e4e6ecee3
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon May 29 21:25:05 2023 +0200

    gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224.
    
    * gnu/packages/commencement.scm (gnumach-headers-boot0)[name]: New field; 
give
    proper name.
    [source]: Update to 1.8+git20221224, using git-fetch-from-tarball.
    [native-inputs]: Add autoconf-boot0, automake-boot0, texinfo-boot0.
    [arguments]: Add 'patch-compat' phase to allow building hurd-minimal etc, 
with
    our out-of-date bootstsrap binaries.
---
 gnu/packages/commencement.scm | 46 ++++++++++++++++++++++++++++++++-----------
 1 file changed, 34 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 1d69c2a80f..b15a71feb3 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2660,18 +2660,40 @@ memoized as a function of '%current-system'."
   (with-boot0
    (package
      (inherit gnumach-headers)
-     (version "1.8-116-g28b53508")
-     (source (bootstrap-origin
-              (origin
-                (method url-fetch)
-                (uri (list (string-append "mirror://gnu/guix/mirror/gnumach-"
-                                          version ".tar.gz")
-                           (string-append "https://lilypond.org/janneke/hurd/";
-                                          "gnumach-" version ".tar.gz")))
-                (sha256
-                 (base32
-                  "006i0zgwy81vxarpfm12vip4q6i5mgmi5mmy5ldvxp5hx9h3l0zg")))))
-     (native-inputs '()))))
+     (name "gnumach-headers-boot0")
+     (version "1.8+git20221224")
+     (source
+      (origin
+        (method
+         (git-fetch-from-tarball
+          (origin
+            (method url-fetch)
+            (uri (string-append
+                  
"https://git.savannah.gnu.org/cgit/hurd/gnumach.git/snapshot/";
+                  "gnumach-" version ".tar.gz"))
+            (sha256
+             (base32 
"0vb19ynvrxz302snqxkd0wgizwa5fw2x06a4zjsllqb9ijbq9mc8")))))
+        (uri (git-reference
+              (url "https://git.savannah.gnu.org/git/hurd/gnumach.git";)
+              (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0f49zqxf64ds75rmskizpybl2mw7sxs05k59gjp3pgspvr87w7gs"))))
+     (native-inputs (list autoconf-boot0 automake-boot0 texinfo-boot0))
+     (arguments
+      (substitute-keyword-arguments (package-arguments gnumach-headers)
+        ((#:phases phases)
+         #~(modify-phases #$phases
+             (add-after 'unpack 'patch-compat
+               (lambda _
+                 (substitute* '("include/device/device_types.h"
+                                "include/mach_debug/slab_info.h"
+                                "include/mach_debug/vm_info.h")
+                   (("rpc_vm_size_t") "unsigned int")
+                   (("rpc_vm_offset_t") "unsigned int")
+                   (("rpc_long_natural_t") "unsigned long")
+                   (("long_natural_t") "unsigned long")))))))))))
 
 (define mig-boot0
   (let* ((mig (package



reply via email to

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