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

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

bug#67284: closed ([PATCH] guix: meson: Add #:substitutable? argument to


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

Your message dated Sat, 25 Nov 2023 17:31:29 +0100
with message-id <87bkbh4wwu.fsf@gnu.org>
and subject line Re: [bug#67284] [PATCH] guix: meson: Add #:substitutable? 
argument to build system.
has caused the debbugs.gnu.org bug report #67284,
regarding [PATCH] guix: meson: 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.)


-- 
67284: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67284
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] guix: meson: Add #:substitutable? argument to build system. Date: Sun, 19 Nov 2023 09:14:39 -0800
This implemented the same as in gnu-build-system. The gexp->derivation
calls did not need to be modified because they already
passed #:substitutable?, which did not cause an error due to the
procedure exported by the (guix store) module with the same name.

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

Change-Id: I2d56c8130f785a2d6af456ef9f9bfc1b10dc2a50
---
 guix/build-system/meson.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm
index 7c617bffb0..2d14016b94 100644
--- a/guix/build-system/meson.scm
+++ b/guix/build-system/meson.scm
@@ -182,6 +182,7 @@ (define* (meson-build name inputs
                       (imported-modules %meson-build-system-modules)
                       (modules '((guix build meson-build-system)
                                  (guix build utils)))
+                      (substitutable? #t)
                       allowed-references
                       disallowed-references)
   "Build SOURCE using MESON, and with INPUTS, assuming that SOURCE
@@ -266,6 +267,7 @@ (define* (meson-cross-build name
                             (imported-modules %meson-build-system-modules)
                             (modules '((guix build meson-build-system)
                                        (guix build utils)))
+                            (substitutable? #t)
                             allowed-references
                             disallowed-references)
   "Cross-build SOURCE for TARGET using MESON, and with INPUTS, assuming that

base-commit: cd82ddd15c28b4f4690255b11a1ce6dcac7c166d
-- 
2.41.0




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

> This implemented the same as in gnu-build-system. The gexp->derivation
> calls did not need to be modified because they already
> passed #:substitutable?, which did not cause an error due to the
> procedure exported by the (guix store) module with the same name.

Heh, fun.  :-)

> * guix/build-system/meson.scm (meson-build, meson-cross-build): Add
>   #:substitutable? argument
>
> Change-Id: I2d56c8130f785a2d6af456ef9f9bfc1b10dc2a50

Applied, thanks!


--- End Message ---

reply via email to

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