[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
46/60: gnu: Add mawk-mesboot.
From: |
guix-commits |
Subject: |
46/60: gnu: Add mawk-mesboot. |
Date: |
Sun, 24 Nov 2024 02:50:16 -0500 (EST) |
efraim pushed a commit to branch wip-riscv-bootstrap
in repository guix.
commit eb237a542d283f3fe461ad0fb6b0b52159c109a2
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 21 14:53:03 2024 +0300
gnu: Add mawk-mesboot.
* gnu/packages/commencement.scm (mawk-mesboot): New variable.
Change-Id: Ia04d70557682aef705eebe8caccb59ce68406ffc
---
gnu/packages/commencement.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 12b454c8da..0f354531b7 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2156,6 +2156,40 @@ ac_cv_c_float_format='IEEE (little-endian)'
(install-file "gawk" bin)
(symlink "gawk" (string-append bin "/awk"))))))))))
+(define mawk-mesboot
+ (package
+ (inherit mawk)
+ (name "mawk-mesboot")
+ (version "1.3.4-20240905")
+ (source (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append
"https://invisible-mirror.net/archives/mawk"
+ "/mawk-" version ".tgz"))
+ ;; Our gzip and tar don't know how to unpack a '.tgz' file.
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1q4rfcv7ppfw4fra8hp8z0s4qnsv1x598ny4xwb026zsgn96g6d3"))
+ (snippet
+ #~(begin (delete-file "parse.c"))))))
+ (native-inputs
+ (modify-inputs (if (target-x86?)
+ (%boot-mesboot2-inputs)
+ (%boot-muslboot2-inputs))
+ (append byacc-mesboot)))
+ (inputs '())
+ (propagated-inputs '())
+ (arguments
+ `(#:implicit-inputs? #f
+ #:parallel-build? #f ; Prevent race condition
+ #:guile ,%bootstrap-guile
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "./mawk" "--version"))))))))
+
(define (%boot-mesboot3-inputs)
`(("binutils" ,binutils-mesboot)
("gawk" ,gawk-mesboot)
- 12/60: gnu: gcc-core-mesboot0: Use commencement-build-target., (continued)
- 12/60: gnu: gcc-core-mesboot0: Use commencement-build-target., guix-commits, 2024/11/24
- 14/60: gnu: gcc-mesboot0: Use commencement-build-target., guix-commits, 2024/11/24
- 15/60: gnu: binutils-mesboot1: Use commencement-build-target., guix-commits, 2024/11/24
- 18/60: gnu: gcc-mesboot: Use commencement-build-target., guix-commits, 2024/11/24
- 22/60: gnu: tcc-boot: Support more architectures., guix-commits, 2024/11/24
- 25/60: gnu: Add tcc-boot-musl., guix-commits, 2024/11/24
- 34/60: gnu: gcc-core-mesboot1: Adjust for dependency changes., guix-commits, 2024/11/24
- 38/60: gnu: Add gcc-muslboot0., guix-commits, 2024/11/24
- 42/60: gnu: hello-mesboot: Add support for riscv64-linux., guix-commits, 2024/11/24
- 43/60: gnu: Add byacc-mesboot., guix-commits, 2024/11/24
- 46/60: gnu: Add mawk-mesboot.,
guix-commits <=
- 49/60: gnu: %boot-mesboot6-inputs: Adjust for riscv64-linux., guix-commits, 2024/11/24
- 48/60: gnu: mesboot-package: Adjust for riscv64-linux builds., guix-commits, 2024/11/24
- 53/60: gnu: file-boot0: Fix building on riscv64-linux., guix-commits, 2024/11/24
- 52/60: gnu: findutils-boot0: Adjust the skipped tests on riscv64-linux., guix-commits, 2024/11/24
- 21/60: gnu: tcc-boot0: Specify the build target., guix-commits, 2024/11/24
- 31/60: gnu: gmp-boot: Update and build package., guix-commits, 2024/11/24
- 32/60: gnu: mpfr-boot: Update and build package., guix-commits, 2024/11/24
- 37/60: gnu: gcc-mesboot: Adjust for changes in gcc-mesboot1., guix-commits, 2024/11/24
- 39/60: gnu: Add musl-boot., guix-commits, 2024/11/24
- 56/60: gnu: Add byacc-boot0., guix-commits, 2024/11/24