all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#51353] [PATCH website] website: Fix build.
@ 2021-10-23 15:38 Julien Lepiller
  2021-10-23 17:56 ` zimoun
  0 siblings, 1 reply; 3+ messages in thread
From: Julien Lepiller @ 2021-10-23 15:38 UTC (permalink / raw)
  To: 51353

[-- Attachment #1: Type: text/plain, Size: 2159 bytes --]

Hi Guix!

I just noticed an issue building the website: with a recent change, the
code would check explicitely for GUIX_WEB_SITE_LOCAL in the
environment, but .guix.scm doesn't set it, so it fails with:

;;; (repl-version (repl-version 0 1 1))
Running 'haunt build' for lingua de_DE...
Backtrace:
In haunt/ui.scm:
    125:6 19 (run-haunt-command _ . _)
In haunt/ui/build.scm:
     60:4 18 (haunt-build . _)
In haunt/site.scm:
   130:14 17 (build-site _)
In haunt/utils.scm:
    64:11 16 (flat-map _ . _)
In srfi/srfi-1.scm:
   586:29 15 (map1 _)
   586:29 14 (map1 _)
   586:29 13 (map1 _)
   586:29 12 (map1 _)
   586:17 11 (map1 (#<procedure 7fffed0befc0 at ice-9/boot-9.scm:…> …))
In unknown file:
          10 (_ #<procedure 7fffeb2950a0 at ice-9/boot-9.scm:798:28…> …)
In ice-9/eval.scm:
    155:9  9 (_ _)
    155:9  8 (_ _)
   173:39  7 (_ #(#(#<directory (apps packages builder) 7ffff49b…>) …))
   293:34  6 (_ #(#(#(#<directory (apps packages builder) 7ffff…>)) …))
    159:9  5 (_ #(#(#(#<directory (apps packages builder) 7ffff…>)) …))
    159:9  4 (_ _)
   196:43  3 (_ _)
In unknown file:
           2 (force #<promise #<procedure 7fffed0f3480 at ice-9/eval…>)
In ice-9/eval.scm:
   245:16  1 (_ #(#(#(#<directory (apps packages data) 7ffff49b…>)) …))
In unknown file:
           0 (string=? "yes" #f)

ERROR: In procedure string=?:
In procedure string=: Wrong type argument in position 2 (expecting
string): #f building pages in '/tmp/gnu.org/software/guix'...
Backtrace:
           3 (primitive-load "/gnu/store/8amiibdjbp3chrj8cnbg6v1162g?")
In ice-9/boot-9.scm:
   260:13  2 (for-each #<procedure 7ffff5fb1140 at ice-9/eval.scm:3?> ?)
In ice-9/eval.scm:
    619:8  1 (_ #(#(#<directory (guile-user) 7ffff5fefc80>) "de_DE"))
In guix/build/utils.scm:
    654:6  0 (invoke _ . _)

guix/build/utils.scm:654:6: In procedure invoke:
ERROR:
  1. &invoke-error:
      program:
"/gnu/store/2p1zk377cvxs1dz0iasj2l5wp2jlpcx2-haunt-0.2.5/bin/haunt"
arguments: ("build") exit-status: 1
      term-signal: #f
      stop-signal: #f

The attached patch fixes the issue.

[-- Attachment #2: 0001-website-Fix-build.patch --]
[-- Type: text/x-patch, Size: 738 bytes --]

From 6be425e7e917f93ae5a0cb7bbb047d0c4c1f4c78 Mon Sep 17 00:00:00 2001
From: Julien Lepiller <julien@lepiller.eu>
Date: Sat, 23 Oct 2021 17:30:59 +0200
Subject: [PATCH] website: Fix build.

* website/.guix.scm: Set GUIX_WEB_SITE_LOCAL explicitely.
---
 website/.guix.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/website/.guix.scm b/website/.guix.scm
index f656d47..a7a6d36 100644
--- a/website/.guix.scm
+++ b/website/.guix.scm
@@ -111,6 +111,7 @@
           (setvbuf (current-output-port) 'line)
           (setvbuf (current-error-port) 'line)
 
+          (setenv "GUIX_WEB_SITE_LOCAL" "no")
           (copy-recursively #$source ".")
 
           ;; Set 'GUILE_LOAD_PATH' so that Haunt find the Guix modules and
-- 
2.33.0


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

* [bug#51353] [PATCH website] website: Fix build.
  2021-10-23 15:38 [bug#51353] [PATCH website] website: Fix build Julien Lepiller
@ 2021-10-23 17:56 ` zimoun
  2021-10-23 21:22   ` bug#51353: " Julien Lepiller
  0 siblings, 1 reply; 3+ messages in thread
From: zimoun @ 2021-10-23 17:56 UTC (permalink / raw)
  To: Julien Lepiller, 51353

Hi Julien,

On Sat, 23 Oct 2021 at 17:38, Julien Lepiller <julien@lepiller.eu> wrote:

> I just noticed an issue building the website: with a recent change, the
> code would check explicitely for GUIX_WEB_SITE_LOCAL in the
> environment, but .guix.scm doesn't set it, so it fails with:

Oops!  My bad.

> From 6be425e7e917f93ae5a0cb7bbb047d0c4c1f4c78 Mon Sep 17 00:00:00 2001
> From: Julien Lepiller <julien@lepiller.eu>
> Date: Sat, 23 Oct 2021 17:30:59 +0200
> Subject: [PATCH] website: Fix build.
>
> * website/.guix.scm: Set GUIX_WEB_SITE_LOCAL explicitely.
> ---
>  website/.guix.scm | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/website/.guix.scm b/website/.guix.scm
> index f656d47..a7a6d36 100644
> --- a/website/.guix.scm
> +++ b/website/.guix.scm
> @@ -111,6 +111,7 @@
>            (setvbuf (current-output-port) 'line)
>            (setvbuf (current-error-port) 'line)
>  
> +          (setenv "GUIX_WEB_SITE_LOCAL" "no")
>            (copy-recursively #$source ".")

LGTM!

Cheers,
simon




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

* bug#51353: [PATCH website] website: Fix build.
  2021-10-23 17:56 ` zimoun
@ 2021-10-23 21:22   ` Julien Lepiller
  0 siblings, 0 replies; 3+ messages in thread
From: Julien Lepiller @ 2021-10-23 21:22 UTC (permalink / raw)
  To: zimoun; +Cc: 51353-done

Pushed along with a translation update, hopefully we can see the
updated website soon :)




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

end of thread, other threads:[~2021-10-23 21:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-23 15:38 [bug#51353] [PATCH website] website: Fix build Julien Lepiller
2021-10-23 17:56 ` zimoun
2021-10-23 21:22   ` bug#51353: " Julien Lepiller

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.