[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
51/63: bootstrap: Add coreutils-mesboot.
From: |
guix-commits |
Subject: |
51/63: bootstrap: Add coreutils-mesboot. |
Date: |
Sun, 24 Nov 2019 06:07:40 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 2b24f3273c8c660de573a57a3e3a99c564ea04f3
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 22:36:22 2019 +0100
bootstrap: Add coreutils-mesboot.
* gnu/packages/commencement.scm (coreutils-mesboot): New variable.
---
gnu/packages/commencement.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index f1762a4..0d58e85 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2599,6 +2599,33 @@ exec " gcc "/bin/" program
("libc" ,glibc-mesboot)
("gcc" ,gcc-mesboot)))))
+(define-public coreutils-mesboot
+ (package
+ (inherit coreutils)
+ (name "coreutils-mesboot")
+ (source (bootstrap-origin (package-source coreutils)))
+ (native-inputs `(("bash" ,bash-mesboot)
+ ("binutils" ,binutils-mesboot)
+ ("coreutils" ,coreutils-mesboot0)
+ ("diffutils" ,diffutils-mesboot)
+ ("gawk" ,gawk-mesboot)
+ ("grep" ,grep-mesboot)
+ ("gcc-wrapper" ,gcc-mesboot-wrapper)
+ ("gcc" ,gcc-mesboot)
+ ("gzip" ,gzip-mesboot0)
+ ("libc" ,glibc-mesboot)
+ ("make" ,make-mesboot)
+ ("sed" ,sed-mesboot)
+ ("tar" ,tar-mesboot)
+ ("xz" ,xz-mesboot)))
+ (supported-systems '("i686-linux" "x86_64-linux"))
+ (inputs '())
+ (propagated-inputs '())
+ (arguments
+ `(#:implicit-inputs? #f
+ #:guile ,%bootstrap-guile
+ #:tests? #f))))
+
(define m4-mesboot
(package
(inherit m4)
- 42/63: bootstrap: Add gcc-mesboot1: Scheme-only bootstrap., (continued)
- 42/63: bootstrap: Add gcc-mesboot1: Scheme-only bootstrap., guix-commits, 2019/11/24
- 43/63: bootstrap: Add xz-mesboot., guix-commits, 2019/11/24
- 44/63: bootstrap: Add hello-mesboot., guix-commits, 2019/11/24
- 45/63: bootstrap: binutils-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 46/63: bootstrap: glibc-headers-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 47/63: bootstrap: glibc-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 48/63: bootstrap: gcc-mesboot1-wrapper: Scheme-only bootstrap., guix-commits, 2019/11/24
- 49/63: bootstrap: gcc-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 50/63: bootstrap: gcc-mesboot-wrapper: Scheme-only bootstrap., guix-commits, 2019/11/24
- 52/63: bootstrap: Remove m4-bootstrap., guix-commits, 2019/11/24
- 51/63: bootstrap: Add coreutils-mesboot.,
guix-commits <=
- 53/63: bootstrap: %bootstrap-inputs+toolchain: Scheme-only bootstrap., guix-commits, 2019/11/24
- 54/63: bootstrap: Add sed-boot0., guix-commits, 2019/11/24
- 55/63: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/11/24
- 56/63: gnu: Add ed-1.4., guix-commits, 2019/11/24
- 57/63: bootstrap: Add ed-boot0., guix-commits, 2019/11/24
- 58/63: bootstrap: Add patch-boot0., guix-commits, 2019/11/24
- 59/63: bootstrap: Add bzip2-boot0., guix-commits, 2019/11/24
- 60/63: bootstrap: Add tar-boot0., guix-commits, 2019/11/24
- 61/63: bootstrap: Typo., guix-commits, 2019/11/24
- 62/63: bootstrap: Add coreutils-boot0., guix-commits, 2019/11/24