unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* guix build failure
@ 2014-10-06 20:01 Federico Beffa
  2014-10-06 21:34 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Federico Beffa @ 2014-10-06 20:01 UTC (permalink / raw)
  To: guix-devel

Hi,

today I pulled from the git repository and now make stops with the
following error:

Backtrace:
In ice-9/boot-9.scm:
2789: 19 [#<procedure 27fb7e0 at ice-9/boot-9.scm:2777:4 (name
#:optional autoload version #:key ensure)> # ...]
3065: 18 [try-module-autoload (gnu packages compression) #f]
2401: 17 [save-module-excursion #<procedure 361bba0 at
ice-9/boot-9.scm:3066:17 ()>]
3085: 16 [#<procedure 361bba0 at ice-9/boot-9.scm:3066:17 ()>]
In unknown file:
   ?: 15 [primitive-load-path "gnu/packages/compression" ...]
In ice-9/eval.scm:
 505: 14 [#<procedure 2748680 at ice-9/eval.scm:499:4 (exp)>
(define-module # # ...)]
In ice-9/psyntax.scm:
1106: 13 [expand-top-sequence ((define-module # # # ...)) () ((top)) ...]
 989: 12 [scan ((define-module (gnu packages compression) #:use-module
...)) () ...]
 279: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...]
In ice-9/eval.scm:
 411: 10 [eval # ()]
In ice-9/boot-9.scm:
2951: 9 [define-module* (gnu packages compression) #:filename ...]
2926: 8 [resolve-imports ((# # license:) (#) (#) (#) ...)]
2864: 7 [resolve-interface (gnu packages which) #:select ...]
2789: 6 [#<procedure 27fb7e0 at ice-9/boot-9.scm:2777:4 (name
#:optional autoload version #:key ensure)> # ...]
3065: 5 [try-module-autoload (gnu packages which) #f]
2401: 4 [save-module-excursion #<procedure 362b270 at
ice-9/boot-9.scm:3066:17 ()>]
3085: 3 [#<procedure 362b270 at ice-9/boot-9.scm:3066:17 ()>]
In unknown file:
   ?: 2 [primitive-load-path "gnu/packages/which" ...]
In gnu/packages/which.scm:
  27: 1 [#<procedure 34b03a0 ()>]
In ice-9/boot-9.scm:
 106: 0 [#<procedure 2af99c0 at ice-9/boot-9.scm:97:6 (thrown-k .
args)> unbound-variable ...]

ice-9/boot-9.scm:106:20: In procedure #<procedure 2af99c0 at
ice-9/boot-9.scm:97:6 (thrown-k . args)>:
ice-9/boot-9.scm:106:20: In procedure module-lookup: Unbound variable: name
make[2]: *** [guix/scripts/archive.go] Error 1
make[2]: Leaving directory `/home/beffa/src/guix/git/guix'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/beffa/src/guix/git/guix'
make: *** [all] Error 2

I have the following environment variables set:

export PKG_CONFIG_PATH="$HOME/.guix-profile/lib/pkgconfig"
export ACLOCAL_PATH="$HOME/.guix-profile/share/aclocal"
export CPATH="$HOME/.guix-profile/include"
export LIBRARY_PATH="$HOME/.guix-profile/lib"
export GUILE_LOAD_PATH="$HOME/.guix-profile/share/guile/site/2.0:/usr/local/share/guile/site/2.0"
export GUILE_LOAD_COMPILED_PATH="$HOME/.guix-profile/share/guile/site/2.0:/usr/local/share/guile/site/2.0"
export INFOPATH="$HOME/.guix-profile/share/info:"
export PATH="$HOME/.guix-profile/bin:$PATH"

Do you have any idea on what's wrong?

Thanks,
Fede

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

* Re: guix build failure
  2014-10-06 20:01 guix build failure Federico Beffa
@ 2014-10-06 21:34 ` Ludovic Courtès
  2014-10-07  7:44   ` Federico Beffa
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2014-10-06 21:34 UTC (permalink / raw)
  To: Federico Beffa; +Cc: guix-devel

Federico Beffa <beffa@ieee.org> skribis:

> today I pulled from the git repository and now make stops with the
> following error:

[...]

> In unknown file:
>    ?: 2 [primitive-load-path "gnu/packages/which" ...]
> In gnu/packages/which.scm:
>   27: 1 [#<procedure 34b03a0 ()>]
> In ice-9/boot-9.scm:
>  106: 0 [#<procedure 2af99c0 at ice-9/boot-9.scm:97:6 (thrown-k .
> args)> unbound-variable ...]
>
> ice-9/boot-9.scm:106:20: In procedure #<procedure 2af99c0 at
> ice-9/boot-9.scm:97:6 (thrown-k . args)>:
> ice-9/boot-9.scm:106:20: In procedure module-lookup: Unbound variable: name
> make[2]: *** [guix/scripts/archive.go] Error 1

Not sure what happened.  I just did ‘make clean-go && make’ with commit
177088a and it builds flawlessly.  Perhaps try ‘make clean-go’?

HTH,
Ludo’.

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

* Re: guix build failure
  2014-10-06 21:34 ` Ludovic Courtès
@ 2014-10-07  7:44   ` Federico Beffa
  2014-10-07 11:02     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Federico Beffa @ 2014-10-07  7:44 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

> Not sure what happened.  I just did ‘make clean-go && make’ with commit
> 177088a and it builds flawlessly.  Perhaps try ‘make clean-go’?

On top of make clean-go I had to delete the cached files in ~/.cache/...

Thanks,
Fede

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

* Re: guix build failure
  2014-10-07  7:44   ` Federico Beffa
@ 2014-10-07 11:02     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2014-10-07 11:02 UTC (permalink / raw)
  To: Federico Beffa; +Cc: guix-devel

Federico Beffa <beffa@ieee.org> skribis:

>> Not sure what happened.  I just did ‘make clean-go && make’ with commit
>> 177088a and it builds flawlessly.  Perhaps try ‘make clean-go’?
>
> On top of make clean-go I had to delete the cached files in ~/.cache/...

Oh, OK.  Normally the local .go have higher precedence than those in
~/.cache.  Let us know if that happens again, so we can investigate
better.

Ludo’.

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

end of thread, other threads:[~2014-10-07 11:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-06 20:01 guix build failure Federico Beffa
2014-10-06 21:34 ` Ludovic Courtès
2014-10-07  7:44   ` Federico Beffa
2014-10-07 11:02     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).