all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#60079] [PATCH] guix: gexp: Clarify what output can be in gexp module commentary.
@ 2022-12-15  0:26 jgart via Guix-patches via
  2022-12-21 13:31 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-12-15  0:26 UTC (permalink / raw)
  To: 60079; +Cc: Ludovic Courtès, jgart

* guix/gexp.scm (Commentary): Clarify comment.

Hi Ludo et al,

WDYT

all best,

jgart
---
 guix/gexp.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/guix/gexp.scm b/guix/gexp.scm
index 5f92174a2c..33d0d8487d 100644
--- a/guix/gexp.scm
+++ b/guix/gexp.scm
@@ -139,10 +139,11 @@ (define-module (guix gexp)
 ;;; This module implements "G-expressions", or "gexps".  Gexps are like
 ;;; S-expressions (sexps), with two differences:
 ;;;
-;;;   1. References (un-quotations) to derivations or packages in a gexp are
-;;;      replaced by the corresponding output file name; in addition, the
-;;;      'ungexp-native' unquote-like form allows code to explicitly refer to
-;;;      the native code of a given package, in case of cross-compilation;
+;;;   1. References (un-quotations) to derivations or packages in a gexp
+;;;   are replaced by the corresponding output store path or file name;
+;;;   in addition, the 'ungexp-native' unquote-like form allows code to
+;;;   explicitly refer to the native code of a given package, in case
+;;;   of cross-compilation;
 ;;;
 ;;;   2. Gexps embed information about the derivations they refer to.
 ;;;
-- 
2.38.1





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

* [bug#60079] [PATCH] guix: gexp: Clarify what output can be in gexp module commentary.
  2022-12-15  0:26 [bug#60079] [PATCH] guix: gexp: Clarify what output can be in gexp module commentary jgart via Guix-patches via
@ 2022-12-21 13:31 ` Ludovic Courtès
  2023-01-06 17:31   ` zimoun
  2023-01-06 22:58   ` jgart via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-12-21 13:31 UTC (permalink / raw)
  To: jgart; +Cc: 60079

Hi jgart,

jgart <jgart@dismail.de> skribis:

> --- a/guix/gexp.scm
> +++ b/guix/gexp.scm
> @@ -139,10 +139,11 @@ (define-module (guix gexp)
>  ;;; This module implements "G-expressions", or "gexps".  Gexps are like
>  ;;; S-expressions (sexps), with two differences:
>  ;;;
> -;;;   1. References (un-quotations) to derivations or packages in a gexp are
> -;;;      replaced by the corresponding output file name; in addition, the
> -;;;      'ungexp-native' unquote-like form allows code to explicitly refer to
> -;;;      the native code of a given package, in case of cross-compilation;
> +;;;   1. References (un-quotations) to derivations or packages in a gexp
> +;;;   are replaced by the corresponding output store path or file name;
> +;;;   in addition, the 'ungexp-native' unquote-like form allows code to
> +;;;   explicitly refer to the native code of a given package, in case
> +;;;   of cross-compilation;

I prefer not to apply this patch: it worsens indentation and adds the
words “store path”, which AFAICS bring nothing.

Thanks anyway for taking a look,
Ludo’.




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

* [bug#60079] [PATCH] guix: gexp: Clarify what output can be in gexp module commentary.
  2022-12-21 13:31 ` Ludovic Courtès
@ 2023-01-06 17:31   ` zimoun
  2023-01-06 22:58   ` jgart via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: zimoun @ 2023-01-06 17:31 UTC (permalink / raw)
  To: Ludovic Courtès, jgart; +Cc: 60079

Hi,

On Wed, 21 Dec 2022 at 14:31, Ludovic Courtès <ludo@gnu.org> wrote:

>> --- a/guix/gexp.scm
>> +++ b/guix/gexp.scm
>> @@ -139,10 +139,11 @@ (define-module (guix gexp)
>>  ;;; This module implements "G-expressions", or "gexps".  Gexps are like
>>  ;;; S-expressions (sexps), with two differences:
>>  ;;;
>> -;;;   1. References (un-quotations) to derivations or packages in a gexp are
>> -;;;      replaced by the corresponding output file name; in addition, the
>> -;;;      'ungexp-native' unquote-like form allows code to explicitly refer to
>> -;;;      the native code of a given package, in case of cross-compilation;
>> +;;;   1. References (un-quotations) to derivations or packages in a gexp
>> +;;;   are replaced by the corresponding output store path or file name;
>> +;;;   in addition, the 'ungexp-native' unquote-like form allows code to
>> +;;;   explicitly refer to the native code of a given package, in case
>> +;;;   of cross-compilation;
>
> I prefer not to apply this patch: it worsens indentation and adds the
> words “store path”, which AFAICS bring nothing.

I agree.  Closing?

> Thanks anyway for taking a look,

Thanks.

Cheers,
simon




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

* [bug#60079] [PATCH] guix: gexp: Clarify what output can be in gexp module commentary.
  2022-12-21 13:31 ` Ludovic Courtès
  2023-01-06 17:31   ` zimoun
@ 2023-01-06 22:58   ` jgart via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2023-01-06 22:58 UTC (permalink / raw)
  To: zimoun, Ludovic Courtès; +Cc: 60079

Sure, feel free to close this one. Thanks for the review.

all best,

jgart




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

end of thread, other threads:[~2023-01-06 22:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-15  0:26 [bug#60079] [PATCH] guix: gexp: Clarify what output can be in gexp module commentary jgart via Guix-patches via
2022-12-21 13:31 ` Ludovic Courtès
2023-01-06 17:31   ` zimoun
2023-01-06 22:58   ` jgart via Guix-patches via

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.