[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/65: gnu: commencement: mig-boot0: Update to 1.8+git20230520.
From: |
guix-commits |
Subject: |
04/65: gnu: commencement: mig-boot0: Update to 1.8+git20230520. |
Date: |
Fri, 14 Jul 2023 10:05:58 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 694280497e13cd11f48860afc820fe5e9c2a5d78
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon May 29 20:10:38 2023 +0200
gnu: commencement: mig-boot0: Update to 1.8+git20230520.
* gnu/packages/commencement.scm (mig-boot0): Remove redundant
outer let.
[name]: New field, give proper name.
[version]: New field
[source]: Update to 1.8+git20230520.
[native-inputs]: Add autoconf-boot0, automake-boot0.
[inputs]: Add gnumach-headers-boot0.
---
gnu/packages/commencement.scm | 34 +++++++++++++++++++++++-----------
1 file changed, 23 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 10b5bb407d..475ecf18a8 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2657,17 +2657,29 @@ memoized as a function of '%current-system'."
(("long_natural_t") "unsigned long")))))))))))
(define mig-boot0
- (let* ((mig (package
- (inherit (package-with-bootstrap-guile mig))
- (native-inputs `(("bison" ,bison-boot0)
- ("flex" ,flex-boot0)))
- (inputs `(("flex" ,flex-boot0)))
- (arguments
- ;; TODO: On next rebuild cycle, reuse phases from 'mig'.
- `(#:configure-flags
- `(,(string-append "LDFLAGS=-Wl,-rpath="
- (assoc-ref %build-inputs "flex")
"/lib/")))))))
- (with-boot0 mig)))
+ (with-boot0
+ (package
+ (inherit mig)
+ (name "mig-boot0")
+ (version "1.8+git20230520")
+ (source (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://git.savannah.gnu.org/cgit/hurd/mig.git/snapshot/mig-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1l1vfm4wap5yxylv91wssgpy7fnq22wp3akgd5nv995kychfa9jy"))))
+ (native-inputs (list autoconf-boot0 automake-boot0 bison-boot0 flex-boot0
+ gnumach-headers-boot0))
+ (inputs (list flex-boot0 gnumach-headers-boot0))
+ (arguments
+ (list
+ #:configure-flags
+ #~(list (string-append "LDFLAGS=-Wl,-rpath="
+ #$(this-package-native-input "flex")
+ "/lib/")))))))
(define hurd-version-boot0 "0.9-229-ga1efcee8")
(define hurd-source-boot0
- 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, 2023/07/14
- 04/65: gnu: commencement: mig-boot0: Update to 1.8+git20230520.,
guix-commits <=
- 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
- 18/65: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/07/14