[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53878] [PATCH v7 24/24] gnu: racket-vm-cs: Build with "--enable-sch
From: |
Philip McGrath |
Subject: |
[bug#53878] [PATCH v7 24/24] gnu: racket-vm-cs: Build with "--enable-scheme". |
Date: |
Sun, 27 Feb 2022 16:29:20 -0500 |
* gnu/packages/racket.scm (racket-vm-cs)[native-inputs]: Remove
'chez-scheme-for-racket-bootstrap-bootfiles'. Add
'chez-scheme-for-racket'.
[arguments]<#:phases>: Delete 'unpack-bootfiles'.
<#:configure-flags>: Add "--enable-scheme".
---
gnu/packages/racket.scm | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/racket.scm b/gnu/packages/racket.scm
index 50ef8c1f5e..8d44241414 100644
--- a/gnu/packages/racket.scm
+++ b/gnu/packages/racket.scm
@@ -399,7 +399,7 @@ (define-public racket-vm-cs
(native-inputs
(modify-inputs (package-native-inputs racket-vm-cgc)
(delete "libtool")
- (prepend chez-scheme-for-racket-bootstrap-bootfiles
+ (prepend chez-scheme-for-racket
chez-nanopass-bootstrap
racket-vm-bc)))
(arguments
@@ -409,18 +409,15 @@ (define-public racket-vm-cs
(add-after 'unpack 'unpack-nanopass+stex
(lambda args
(with-directory-excursion "racket/src/ChezScheme"
- #$unpack-nanopass+stex)))
- (add-after 'unpack-nanopass+stex 'unpack-bootfiles
- (lambda* (#:key native-inputs inputs #:allow-other-keys)
- (with-directory-excursion "racket/src/ChezScheme"
- (copy-recursively
- (search-input-directory (or native-inputs inputs)
- "lib/chez-scheme-bootfiles")
- "boot"))))))
+ #$unpack-nanopass+stex)))))
((#:configure-flags _ '())
#~(cons* "--enable-csonly"
"--enable-libz"
"--enable-lz4"
+ (string-append "--enable-scheme="
+ #$(this-package-native-input
+ "chez-scheme-for-racket")
+ "/bin/scheme")
#$(racket-vm-common-configure-flags)))))
(synopsis "Racket CS implementation")
(description "The Racket CS implementation, which uses ``Chez Scheme'' as
--
2.32.0
- [bug#53878] [PATCH v7 14/24] gnu: chez-scheme: Use new style for Chez packages., (continued)
- [bug#53878] [PATCH v7 14/24] gnu: chez-scheme: Use new style for Chez packages., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 15/24] gnu: chez-scheme: Use "lib/chez-scheme" for search path., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 17/24] gnu: chez-scheme: Use new package style., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 16/24] gnu: chez-scheme: Use shared zlib and lz4., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 18/24] gnu: Add stex., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 19/24] gnu: Add chez-nanopass., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 20/24] gnu: chez-scheme: Explicitly package bootstrap bootfiles., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 21/24] gnu: chez-mit: Support chez-scheme-for-racket., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 22/24] gnu: Add chez-scheme-for-racket., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 23/24] gnu: chez: Add 'chez-scheme-for-system'., Philip McGrath, 2022/02/27
- [bug#53878] [PATCH v7 24/24] gnu: racket-vm-cs: Build with "--enable-scheme".,
Philip McGrath <=