all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73562] [PATCH] committer: Fix for inputs that are lists by using object->string.
@ 2024-09-30  8:00 attila.lendvai
  2024-10-15 16:22 ` bug#73562: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: attila.lendvai @ 2024-09-30  8:00 UTC (permalink / raw)
  To: 73562; +Cc: Attila Lendvai

From: Attila Lendvai <attila@lendvai.name>

* etc/committer.scm.in (change-commit-message): Use object->string to deal
with more complex dependency specifications.

Change-Id: Ieee39709fd3eb26368df400a9228d77aa97a9d9d
---
 etc/committer.scm.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/etc/committer.scm.in b/etc/committer.scm.in
index c49935da600..9b128c8f1e7 100755
--- a/etc/committer.scm.in
+++ b/etc/committer.scm.in
@@ -301,8 +301,9 @@ (define* (change-commit-message file-name old new #:optional (port (current-outp
                       (format port
                               "[~a]: ~a~%" field
                               (break-string
-                               (match (list (map symbol->string removed)
-                                            (map symbol->string added))
+                               ;; A dependency can be a list of (pkg output).
+                               (match (list (map object->string removed)
+                                            (map object->string added))
                                  ((() added)
                                   (format #f "Add ~a."
                                           (listify added)))

base-commit: d74fc6c8e6428c37a5bfad85b08999ff47000208
prerequisite-patch-id: 69604c6ecc6bc38af1f4d570957913136e47a744
prerequisite-patch-id: 0191b92812f5c7df75e6aa67ea7dddfcf69ba5ad
prerequisite-patch-id: 246a683ad6063f26d3164b70a25946d0ff195493
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#73562: [PATCH] committer: Fix for inputs that are lists by using object->string.
  2024-09-30  8:00 [bug#73562] [PATCH] committer: Fix for inputs that are lists by using object->string attila.lendvai
@ 2024-10-15 16:22 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2024-10-15 16:22 UTC (permalink / raw)
  To: attila.lendvai; +Cc: Attila Lendvai, 73562-done

attila.lendvai@gmail.com skribis:

> From: Attila Lendvai <attila@lendvai.name>
>
> * etc/committer.scm.in (change-commit-message): Use object->string to deal
> with more complex dependency specifications.
>
> Change-Id: Ieee39709fd3eb26368df400a9228d77aa97a9d9d

Applied, thanks!




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-10-15 16:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-30  8:00 [bug#73562] [PATCH] committer: Fix for inputs that are lists by using object->string attila.lendvai
2024-10-15 16:22 ` bug#73562: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.