[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
30/47: gnu: commencement: mig-boot0: Update to 1.8+git20230520.
From: |
guix-commits |
Subject: |
30/47: gnu: commencement: mig-boot0: Update to 1.8+git20230520. |
Date: |
Sat, 3 Jun 2023 07:23:41 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit a7d9fa1c6a54a881f7dadc3edbddad99a9a16e0b
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 809b370ddf..0421bbe2dd 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
- 03/47: gnu: gnumach-headers: Cross-build without relying on x86., (continued)
- 03/47: gnu: gnumach-headers: Cross-build without relying on x86., guix-commits, 2023/06/03
- 06/47: gnu: gnumach: Update to 1.8+git20221224., guix-commits, 2023/06/03
- 11/47: gnu: Add libpciaccess-0.17., guix-commits, 2023/06/03
- 16/47: gnu: hurd: Add rumpkernel., guix-commits, 2023/06/03
- 21/47: gnu: gnumach: Support "noide" argument., guix-commits, 2023/06/03
- 05/47: gnu: Add libc-for-target and glibc/hurd., guix-commits, 2023/06/03
- 10/47: squash! gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3., guix-commits, 2023/06/03
- 13/47: gnu: Add rumpkernel., guix-commits, 2023/06/03
- 25/47: services: static-networking: Support netdde for the Hurd., guix-commits, 2023/06/03
- 23/47: hurd-boot: Cater for netdde., guix-commits, 2023/06/03
- 30/47: gnu: commencement: mig-boot0: Update to 1.8+git20230520.,
guix-commits <=
- 02/47: gnu: glibc/hurd-headers: Properly cross-build., guix-commits, 2023/06/03
- 15/47: gnu: parted: Support building for the Hurd., guix-commits, 2023/06/03
- 17/47: hurd-boot: Setup pci-arbiter and rumpdisk translators., guix-commits, 2023/06/03
- 27/47: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/06/03
- 26/47: gnu: gnumach: Disable builtin networking., guix-commits, 2023/06/03
- 28/47: gnu: commencement: Add automake-boot0., guix-commits, 2023/06/03
- 34/47: gnu: commencement: glibc-final: Use libc-for-target for source too., guix-commits, 2023/06/03
- 33/47: gnu: commencement: glibc-final-with-bootstrap-bash: Use libc-for-target., guix-commits, 2023/06/03
- 42/47: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/06/03
- 01/47: hurd-boot: Add urandom and default-pager translators., guix-commits, 2023/06/03