[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
56/60: gnu: Add byacc-boot0.
From: |
guix-commits |
Subject: |
56/60: gnu: Add byacc-boot0. |
Date: |
Sun, 24 Nov 2024 02:50:18 -0500 (EST) |
efraim pushed a commit to branch wip-riscv-bootstrap
in repository guix.
commit c8d0fd3fdfaa387765d99fcefb240f83ff22fbab
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 21 16:50:14 2024 +0300
gnu: Add byacc-boot0.
* gnu/packages/commencement.scm (byacc-boot0): New variable.
Change-Id: I8b7e778af6b1e07bbac416dad2b2efb789dacd51
---
gnu/packages/commencement.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index deca529dcf..57c09b1b65 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2816,6 +2816,31 @@ exec " gcc "/bin/" program
#:validate-runpath? #f
,@(package-arguments file)))))
+(define byacc-boot0
+ (package
+ (inherit byacc)
+ (name "byacc-boot0")
+ (source (bootstrap-origin (package-source byacc)))
+ (native-inputs '())
+ (inputs
+ `(("make" ,gnu-make-boot0)
+ ,@(%bootstrap-inputs+toolchain)))
+ (propagated-inputs '())
+ (arguments
+ `(#:tests? #f
+ #:implicit-inputs? #f
+ #:guile ,%bootstrap-guile
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin"))
+ (man1 (string-append out "/share/man/man1")))
+ (install-file "yacc" bin)
+ (symlink "yacc" (string-append bin "/byacc"))
+ (install-file "yacc.1" man1)))))))))
+
(define gawk-boot0
(package
(inherit gawk)
- 46/60: gnu: Add mawk-mesboot., (continued)
- 46/60: gnu: Add mawk-mesboot., guix-commits, 2024/11/24
- 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 <=
- 36/60: gnu: gcc-mesboot1: Adjust setting include paths., guix-commits, 2024/11/24
- 41/60: gnu: Add %boot-muslboot2-inputs., guix-commits, 2024/11/24
- 54/60: gnu: %boot0-inputs: Use newly built *-boot0 packages on riscv64-linux., guix-commits, 2024/11/24
- 55/60: gnu: %boot0-inputs: Remove duplicate packages., guix-commits, 2024/11/24
- 58/60: gnu: ed: Update to 1.20.2., guix-commits, 2024/11/24
- 30/60: gnu: Add m4-boot., guix-commits, 2024/11/24
- 33/60: gnu: mpc-boot: Update and build package., guix-commits, 2024/11/24
- 35/60: gnu: gcc-mesboot1: Fix native-search-paths., guix-commits, 2024/11/24
- 40/60: gnu: Add gcc-muslboot., guix-commits, 2024/11/24
- 45/60: gnu: gawk-mesboot: Remove pre-generated source file., guix-commits, 2024/11/24