[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: commencement: mig-boot0: Update to 1.8+git20230520.
From: |
guix-commits |
Subject: |
05/08: gnu: commencement: mig-boot0: Update to 1.8+git20230520. |
Date: |
Wed, 19 Jul 2023 01:52:12 -0400 (EDT) |
janneke pushed a commit to branch master
in repository guix.
commit c1840e9442f7e69fa864553346e3af1c4c4f5ada
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 | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index b4d02ac9cd..f2d3b96c1a 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2695,17 +2695,21 @@ 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 (inherit (package-source mig))))
+ (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 master updated (13cb9b3028 -> 8831d3ba9f), guix-commits, 2023/07/19
- 05/08: gnu: commencement: mig-boot0: Update to 1.8+git20230520.,
guix-commits <=
- 03/08: gnu: commencement: Add git-fetch-from-tarball utility., guix-commits, 2023/07/19
- 01/08: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/07/19
- 08/08: gnu: commencement: hurd-minimal-boot0: Update to 0.9.git20230216., guix-commits, 2023/07/19
- 04/08: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224., guix-commits, 2023/07/19
- 02/08: gnu: commencement: Add automake-boot0., guix-commits, 2023/07/19
- 07/08: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216., guix-commits, 2023/07/19
- 06/08: gnu: mig: Use git-fetch., guix-commits, 2023/07/19