[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/65: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git202212
From: |
guix-commits |
Subject: |
03/65: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224. |
Date: |
Fri, 14 Jul 2023 10:05:58 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 6ed27e8a977831de7312d0862b3868db8b0a13ff
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.
[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 | 38 ++++++++++++++++++++++++++------------
1 file changed, 26 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index d0603e62c8..10b5bb407d 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2629,18 +2629,32 @@ 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 url-fetch)
+ (uri
+ (string-append
+
"https://git.savannah.gnu.org/cgit/hurd/gnumach.git/snapshot/gnumach-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0vb19ynvrxz302snqxkd0wgizwa5fw2x06a4zjsllqb9ijbq9mc8"))))
+ (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
- branch hurd-team created (now 32f10e8601), guix-commits, 2023/07/14
- 03/65: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224.,
guix-commits <=
- 04/65: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/07/14
- 01/65: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/07/14
- 05/65: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216., guix-commits, 2023/07/14
- 07/65: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/07/14
- 10/65: gnu: grep: Update hanging and failing tests on the Hurd., guix-commits, 2023/07/14
- 11/65: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/07/14
- 15/65: gnu: m4: Skip gnulib stack-overflow tests for the Hurd., guix-commits, 2023/07/14
- 16/65: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/14
- 19/65: gnu: python: Support native build on the Hurd., guix-commits, 2023/07/14
- 26/65: gnu: tcl: Remove failing tests on the Hurd.., guix-commits, 2023/07/14