all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Konrad Hinsen <konrad.hinsen@fastmail.net>
To: 73565@debbugs.gnu.org
Subject: [bug#73565] [PATCH] gnu: ecl-ciel: Remove build phase "build-image" and output "image"
Date: Mon, 30 Sep 2024 14:25:13 +0200	[thread overview]
Message-ID: <m1cykl49cm.fsf@fastmail.net> (raw)

* 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




             reply	other threads:[~2024-09-30 12:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-30 12:25 Konrad Hinsen [this message]
2024-09-30 13:00 ` bug#73565: [PATCH] gnu: ecl-ciel: Remove build phase "build-image" and output "image" Guillaume Le Vaillant

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m1cykl49cm.fsf@fastmail.net \
    --to=konrad.hinsen@fastmail.net \
    --cc=73565@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.