From 97f6cc4389694ee945fcc4bf7a66bdd2ae6460d2 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Tue, 8 Jul 2025 02:57:20 +0200 Subject: [PATCH] build-system: rakudo: Clarify private-keywords. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some arguments used for lower but not for the builder were passed as arguments to the builders. Remove this ambiguity. * guix/build-system/rakudo.scm (lower)[private-keywords]: Add keywords with-prove6? and with-zed?,... (rakudo-build): ... removed from here. Signed-off-by: Ludovic Courtès --- guix/build-system/rakudo.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/guix/build-system/rakudo.scm b/guix/build-system/rakudo.scm index ee13c507913..0850d858dea 100644 --- a/guix/build-system/rakudo.scm +++ b/guix/build-system/rakudo.scm @@ -72,7 +72,8 @@ #:rest arguments) "Return a bag for NAME." (define private-keywords - '(#:target #:rakudo #:prove6 #:zef #:inputs #:native-inputs)) + '(#:target #:inputs #:native-inputs + #:rakudo #:prove6 #:zef #:with-prove6? #:with-zef?)) (and (not target) ;XXX: no cross-compilation (bag @@ -106,8 +107,6 @@ (outputs '("out")) (system (%current-system)) (guile #f) - (with-zef? #t) - (with-prove6? #t) (imported-modules %rakudo-build-system-modules) (modules '((guix build rakudo-build-system) (guix build utils))))