[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: style: Fix conversion of ‘unquote-splicing’ by ‘-S arguments’.
From: |
guix-commits |
Subject: |
01/06: style: Fix conversion of ‘unquote-splicing’ by ‘-S arguments’. |
Date: |
Mon, 3 Jun 2024 17:29:59 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit e8ab4ccaa7def9838a7fc240609028078a0988b0
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Jun 3 22:26:28 2024 +0200
style: Fix conversion of ‘unquote-splicing’ by ‘-S arguments’.
* guix/scripts/style.scm (unquote->ungexp): Add missing comma for
‘ungexp-splicing’.
* tests/style.scm ("gexpify arguments, substitute-keyword-arguments +
unquote-splicing"): New test.
Change-Id: I17dcdd9b4812d54ddba1137e369360706b137bb4
---
guix/scripts/style.scm | 4 ++--
tests/style.scm | 25 ++++++++++++++++++++++++-
2 files changed, 26 insertions(+), 3 deletions(-)
diff --git a/guix/scripts/style.scm b/guix/scripts/style.scm
index 211980dc1c..0727ac1480 100644
--- a/guix/scripts/style.scm
+++ b/guix/scripts/style.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2021-2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2021-2024 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -304,7 +304,7 @@ counterpart."
value))
(('unquote-splicing x)
(if (= quotation 1)
- `(ungexp-splicing x)
+ `(ungexp-splicing ,x)
value))
(('quasiquote x)
(list 'quasiquote (loop x (+ quotation 1))))
diff --git a/tests/style.scm b/tests/style.scm
index 5e38549606..3125f4cb1b 100644
--- a/tests/style.scm
+++ b/tests/style.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2021-2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2021-2024 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -500,6 +500,29 @@
(load file)
(read-package-field (@ (my-packages) my-coreutils) 'arguments 7))))
+(test-equal "gexpify arguments, substitute-keyword-arguments +
unquote-splicing"
+ "\
+ (substitute-keyword-arguments (package-arguments coreutils)
+ ((#:make-flags flags
+ #~'())
+ #~(cons \"-DXYZ=yes\"
+ #$@(if #t flags
+ '())))))\n"
+ (call-with-test-package '((arguments
+ (substitute-keyword-arguments
+ (package-arguments coreutils)
+ ((#:make-flags flags ''())
+ `(cons "-DXYZ=yes" ,@(if #t flags '()))))))
+ (lambda (directory)
+ (define file
+ (string-append directory "/my-packages.scm"))
+
+ (system* "guix" "style" "-L" directory "my-coreutils"
+ "-S" "arguments")
+
+ (load file)
+ (read-package-field (@ (my-packages) my-coreutils) 'arguments 6))))
+
(test-equal "gexpify arguments, append substitute-keyword-arguments"
"\
(append (list #:tests? #f)
- branch master updated (2f56845b33 -> 85ac164c41), guix-commits, 2024/06/03
- 03/06: import: crate: Include a main verb in crate importer descriptions., guix-commits, 2024/06/03
- 02/06: import: crate: Beautify crate importer synopses., guix-commits, 2024/06/03
- 05/06: gnu: guile-gsl: Update to 0.0.1-2.d33de92., guix-commits, 2024/06/03
- 06/06: services: nscd: Enable ‘passwd’ and ‘group’ caches by default., guix-commits, 2024/06/03
- 04/06: import: utils: End package descriptions with period., guix-commits, 2024/06/03
- 01/06: style: Fix conversion of ‘unquote-splicing’ by ‘-S arguments’.,
guix-commits <=