GNU bug report logs - #41330
Patch to expose #:scheme-file-regexp in guile build system

Previous Next

Package: guix-patches;

Reported by: alex <at> komputilo.eu

Date: Sat, 16 May 2020 16:36:01 UTC

Severity: normal

Tags: fixed

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 41330 in the body.
You can then email your comments to 41330 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#41330; Package guix-patches. (Sat, 16 May 2020 16:36:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to alex <at> komputilo.eu:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 16 May 2020 16:36:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Alex Sassmannshausen <alex <at> komputilo.eu>
To: "guix-patches\@gnu.org" <guix-patches <at> gnu.org>
Subject: Patch to expose #:scheme-file-regexp in guile build system
Date: Sat, 16 May 2020 15:37:47 +0200
[Message part 1 (text/plain, inline)]
Hello,

Please see proposition below.  Exposing this argument makes it possible
to only install specific scheme files in a project using the
guile-build-system.

WDYT?

Alex

[0001-build-system-guile-Expose-scheme-file-regexp.patch (text/x-diff, inline)]
From b798fef327c86b82f336e3fec0e96b791032f470 Mon Sep 17 00:00:00 2001
From: Alex Sassmannshausen <alex <at> komputilo.eu>
Date: Sat, 16 May 2020 15:32:45 +0200
Subject: [PATCH] build-system/guile: Expose #:scheme-file-regexp.

* guix/build-system/guile.scm (%scheme-file-regexp): New variable.
  (guile-build): Accept #:scheme-file-regexp and pass it on to builder.
---
 guix/build-system/guile.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm
index 3693014694..45e735b987 100644
--- a/guix/build-system/guile.scm
+++ b/guix/build-system/guile.scm
@@ -29,6 +29,10 @@
   #:export (%guile-build-system-modules
             guile-build-system))
 
+(define %scheme-file-regexp
+  ;; Regexp to match Scheme files.
+  "\\.(scm|sls)$")
+
 (define %guile-build-system-modules
   ;; Build-side modules imported by default.
   `((guix build guile-build-system)
@@ -80,6 +84,7 @@
                       (system (%current-system))
                       (source-directory ".")
                       not-compiled-file-regexp
+                      (scheme-file-regexp %scheme-file-regexp)
                       (compile-flags %compile-flags)
                       (imported-modules %guile-build-system-modules)
                       (modules '((guix build guile-build-system)
@@ -97,6 +102,7 @@
                                 (source
                                  source))
                     #:source-directory ,source-directory
+                    #:scheme-file-regexp ,scheme-file-regexp
                     #:not-compiled-file-regexp ,not-compiled-file-regexp
                     #:compile-flags ,compile-flags
                     #:phases ,phases
-- 
2.23.0


Information forwarded to guix-patches <at> gnu.org:
bug#41330; Package guix-patches. (Mon, 18 May 2020 12:32:01 GMT) Full text and rfc822 format available.

Message #8 received at 41330 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Alex Sassmannshausen <alex <at> komputilo.eu>
Cc: 41330 <at> debbugs.gnu.org
Subject: Re: [bug#41330] Patch to expose #:scheme-file-regexp in guile build
 system
Date: Mon, 18 May 2020 14:30:57 +0200
Hi Alex,

Alex Sassmannshausen <alex <at> komputilo.eu> skribis:

>>From b798fef327c86b82f336e3fec0e96b791032f470 Mon Sep 17 00:00:00 2001
> From: Alex Sassmannshausen <alex <at> komputilo.eu>
> Date: Sat, 16 May 2020 15:32:45 +0200
> Subject: [PATCH] build-system/guile: Expose #:scheme-file-regexp.
>
> * guix/build-system/guile.scm (%scheme-file-regexp): New variable.
>   (guile-build): Accept #:scheme-file-regexp and pass it on to builder.

LGTM, dankon!  :-)

Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#41330; Package guix-patches. (Mon, 18 May 2020 14:06:02 GMT) Full text and rfc822 format available.

Message #11 received at 41330 <at> debbugs.gnu.org (full text, mbox):

From: Alex Sassmannshausen <alex <at> komputilo.eu>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 41330 <at> debbugs.gnu.org
Subject: Re: [bug#41330] Patch to expose #:scheme-file-regexp in guile build
 system
Date: Mon, 18 May 2020 15:38:47 +0200
Saluton,

Ludovic Courtès <ludo <at> gnu.org> writes:

> Hi Alex,
>
> Alex Sassmannshausen <alex <at> komputilo.eu> skribis:
>
>>>From b798fef327c86b82f336e3fec0e96b791032f470 Mon Sep 17 00:00:00 2001
>> From: Alex Sassmannshausen <alex <at> komputilo.eu>
>> Date: Sat, 16 May 2020 15:32:45 +0200
>> Subject: [PATCH] build-system/guile: Expose #:scheme-file-regexp.
>>
>> * guix/build-system/guile.scm (%scheme-file-regexp): New variable.
>>   (guile-build): Accept #:scheme-file-regexp and pass it on to builder.
>
> LGTM, dankon!  :-)
>
> Ludo’.

Pushed now.

Thanks for the review!

Alex




Added tag(s) fixed. Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Sat, 23 May 2020 13:55:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 41330 <at> debbugs.gnu.org and alex <at> komputilo.eu Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Sat, 23 May 2020 13:55:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 21 Jun 2020 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.