all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73565] [PATCH] gnu: ecl-ciel: Remove build phase "build-image" and output "image"
@ 2024-09-30 12:25 Konrad Hinsen
  2024-09-30 13:00 ` bug#73565: " Guillaume Le Vaillant
  0 siblings, 1 reply; 2+ messages in thread
From: Konrad Hinsen @ 2024-09-30 12:25 UTC (permalink / raw)
  To: 73565

* gnu/packages/lisp-xyz.scm (ecl-ciel)[outputs]: Remove "image".
  (ecl-ciel)[arguments]: Remove 'build-image' phase.

Change-Id: I6640add7f28ac655180fc9b419684dc9d51f5130
---
 gnu/packages/lisp-xyz.scm | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 0f8023505e..498e4c0bf3 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -3632,7 +3632,17 @@ (define-public cl-ciel
   (sbcl-package->cl-source-package sbcl-ciel))
 
 (define-public ecl-ciel
-  (sbcl-package->ecl-package sbcl-ciel))
+  ;; Remove the "image" output and the build phase "build-image"
+  ;; (which fails because ECL has no support for images).
+  (let ((pkg (sbcl-package->ecl-package sbcl-ciel)))
+    (package
+      (inherit pkg)
+      (outputs '("out"))
+      (arguments
+       (substitute-keyword-arguments (package-arguments pkg)
+         ((#:phases phases)
+          `(modify-phases ,phases
+             (delete 'build-image))))))))
 
 (define-public sbcl-ciel-repl
   (let ((commit "0b26d64dcd91a3a2aa962842629a853261dd30fe")

base-commit: 41e408eb1f93d96b549d345e2de74143220b7b76
-- 
2.46.0




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

* bug#73565: [PATCH] gnu: ecl-ciel: Remove build phase "build-image" and output "image"
  2024-09-30 12:25 [bug#73565] [PATCH] gnu: ecl-ciel: Remove build phase "build-image" and output "image" Konrad Hinsen
@ 2024-09-30 13:00 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2024-09-30 13:00 UTC (permalink / raw)
  To: Konrad Hinsen; +Cc: 73565-done

[-- Attachment #1: Type: text/plain, Size: 67 bytes --]

Patch applied as 7e63a35ff265f5cb6efa8bbe0bbf62bb9c102cf0.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

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

end of thread, other threads:[~2024-09-30 13:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-30 12:25 [bug#73565] [PATCH] gnu: ecl-ciel: Remove build phase "build-image" and output "image" Konrad Hinsen
2024-09-30 13:00 ` bug#73565: " Guillaume Le Vaillant

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.