emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#67283: closed ([PATCH] guix: guile: Add #:substitutable? argument to


From: GNU bug Tracking System
Subject: bug#67283: closed ([PATCH] guix: guile: Add #:substitutable? argument to build system.)
Date: Sat, 25 Nov 2023 15:28:01 +0000

Your message dated Sat, 25 Nov 2023 16:26:48 +0100
with message-id <87h6l94zwn.fsf@gnu.org>
and subject line Re: [bug#67283] [PATCH] guix: guile: Add #:substitutable? 
argument to build system.
has caused the debbugs.gnu.org bug report #67283,
regarding [PATCH] guix: guile: Add #:substitutable? argument to build system.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
67283: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67283
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] guix: guile: Add #:substitutable? argument to build system. Date: Sun, 19 Nov 2023 09:10:36 -0800
This is implemented the same as in gnu-build-system.

* guix/build-system/guile.scm (guile-build, guile-cross-build): Add
  #:substitutable? argument

Change-Id: I04babb81ff1f322833f7ff22cd7580c048b26102
---
 guix/build-system/guile.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm
index 1bd292e267..bd3bb1c870 100644
--- a/guix/build-system/guile.scm
+++ b/guix/build-system/guile.scm
@@ -88,7 +88,8 @@ (define* (guile-build name inputs
                       (compile-flags %compile-flags)
                       (imported-modules %guile-build-system-modules)
                       (modules '((guix build guile-build-system)
-                                 (guix build utils))))
+                                 (guix build utils)))
+                      (substitutable? #t))
   "Build SOURCE using Guile taken from the native inputs, and with INPUTS."
   (define builder
     (with-imported-modules imported-modules
@@ -114,6 +115,7 @@ (define* (guile-build name inputs
                       #:system system
                       #:target #f
                       #:graft? #f
+                      #:substitutable? substitutable?
                       #:guile-for-build guile)))
 
 (define* (guile-cross-build name
@@ -133,7 +135,8 @@ (define* (guile-cross-build name
                             (compile-flags %compile-flags)
                             (imported-modules %guile-build-system-modules)
                             (modules '((guix build guile-build-system)
-                                       (guix build utils))))
+                                       (guix build utils)))
+                            (substitutable? #t))
   (define builder
     (with-imported-modules imported-modules
       #~(begin
@@ -173,6 +176,7 @@ (define* (guile-cross-build name
                       #:system system
                       #:target target
                       #:graft? #f
+                      #:substitutable? substitutable?
                       #:guile-for-build guile)))
 
 (define guile-build-system

base-commit: cd82ddd15c28b4f4690255b11a1ce6dcac7c166d
prerequisite-patch-id: d25067ea4ec0e23744f2dca853c7e9f7b9ab4a9d
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#67283] [PATCH] guix: guile: Add #:substitutable? argument to build system. Date: Sat, 25 Nov 2023 16:26:48 +0100 User-agent: Gnus/5.13 (Gnus v5.13)
Skyler Ferris <skyvine@protonmail.com> skribis:

> This is implemented the same as in gnu-build-system.
>
> * guix/build-system/guile.scm (guile-build, guile-cross-build): Add
>   #:substitutable? argument
>
> Change-Id: I04babb81ff1f322833f7ff22cd7580c048b26102

Tweaked the commit log and applied it, thanks!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]