all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix
@ 2024-05-15 21:26 Rodion Goritskov
  2024-05-15 21:26 ` [PATCH 1/1] remote-server: Fix guix modules selects Rodion Goritskov
  2024-05-17 15:14 ` [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Rodion Goritskov @ 2024-05-15 21:26 UTC (permalink / raw)
  To: guix-devel; +Cc: Rodion Goritskov

Got some problems due to the change re-exports in (guix utils).
Also, should I send patches for Cuirass here or to the guix-patches?

Rodion Goritskov (1):
  remote-server: Fix guix modules selects

 src/cuirass/scripts/remote-server.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


base-commit: 9a1452ee021c9f773424961cfeef47ca0b7c5c5a
-- 
2.41.0



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

* [PATCH 1/1] remote-server: Fix guix modules selects
  2024-05-15 21:26 [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Rodion Goritskov
@ 2024-05-15 21:26 ` Rodion Goritskov
  2024-05-17 15:14 ` [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Rodion Goritskov @ 2024-05-15 21:26 UTC (permalink / raw)
  To: guix-devel; +Cc: Rodion Goritskov

Fixes use of previously re-exported functions from (guix utils).

* src/cuirass/scripts/remote-server.scm (define-module): Change select of
call-with-temporary-output-file to (guix build utils) module.
---
 src/cuirass/scripts/remote-server.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/cuirass/scripts/remote-server.scm b/src/cuirass/scripts/remote-server.scm
index 49b1869..bd63eff 100644
--- a/src/cuirass/scripts/remote-server.scm
+++ b/src/cuirass/scripts/remote-server.scm
@@ -39,9 +39,9 @@
                           store-protocol-error?
                           store-protocol-error-message))
   #:use-module (guix ui)
-  #:use-module ((guix utils)
-                #:select (cache-directory call-with-temporary-output-file))
-  #:use-module ((guix build utils) #:select (mkdir-p))
+  #:use-module ((guix utils) #:select (cache-directory))
+  #:use-module ((guix build utils)
+                #:select (call-with-temporary-output-file mkdir-p))
   #:autoload   (guix build download) (url-fetch)
   #:autoload   (gcrypt pk-crypto) (read-file-sexp)
   #:use-module (simple-zmq)
-- 
2.41.0



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

* Re: [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix
  2024-05-15 21:26 [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Rodion Goritskov
  2024-05-15 21:26 ` [PATCH 1/1] remote-server: Fix guix modules selects Rodion Goritskov
@ 2024-05-17 15:14 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2024-05-17 15:14 UTC (permalink / raw)
  To: Rodion Goritskov; +Cc: guix-devel, Maxim Cournoyer

Hi,

Rodion Goritskov <rodion.goritskov@gmail.com> skribis:

> Got some problems due to the change re-exports in (guix utils).
> Also, should I send patches for Cuirass here or to the guix-patches?

Good catch!  I see that Maxim fixed these issues just recently; it
should be fine now.

Thanks,
Ludo’.


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

end of thread, other threads:[~2024-05-17 15:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-15 21:26 [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Rodion Goritskov
2024-05-15 21:26 ` [PATCH 1/1] remote-server: Fix guix modules selects Rodion Goritskov
2024-05-17 15:14 ` [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Ludovic Courtès

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.