GNU bug report logs -
#47336
Disarchive as a fallback for downloads
Previous Next
Reported by: Timothy Sample <samplet <at> ngyro.com>
Date: Tue, 23 Mar 2021 04:43:01 UTC
Severity: normal
Done: Timothy Sample <samplet <at> ngyro.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Hi!
Timothy Sample <samplet <at> ngyro.com> skribis:
> And broke “guix pull”!! (I somehow fooled myself into thinking that I
> had already tested with “guix pull --url=...” locally.) I reverted the
> offending commit.
You can test with ‘guix pull’ (you need to make sure to specify the
right file:// URL *and* branch), or you can run “make as-derivation”.
> It turns out that adding a reference from “(guix build download)” to
> “(guix swh)” breaks “compute-guix-derivation” in
> “build-aux/build-self.scm”. This is because “(guix swh)” references
> “(json)”, which is not available in the “compute-guix-derivation”
> environment. I tried mimicking the “fake-git” trick, but it didn’t work
> (I guess it needs the “define-json-mapping” macro at compile time).
>
> Everything works if I remove the #:autoload for “(guix swh)” and put
>
> ;; If we import (guix swh) directly, we introduce a compile-time
> ;; dependency on Guile-JSON. This breaks the "build-self" code, which
> ;; needs to build this module without Guile-JSON. Hence, we track
> ;; down the following procedure at runtime.
> (define swh-download-directory
> (module-ref (resolve-module '(guix swh)) 'swh-download-directory))
>
> inside of “disarchive-fetch/any” (just before it’s needed). Does this
> approach look okay?
That’s one possibility.
The patch below takes another approach. I think it aesthetically
slightly more pleasant because we don’t have to play ‘resolve-module’
tricks for obscure reasons. WDYT?
(It also fixes a format string argument mismatch.)
Thanks!
Ludo’.
[Message part 2 (text/x-patch, inline)]
diff --git a/build-aux/build-self.scm b/build-aux/build-self.scm
index 853a2f328f..f100ff4aae 100644
--- a/build-aux/build-self.scm
+++ b/build-aux/build-self.scm
@@ -250,6 +250,7 @@ interface (FFI) of Guile.")
(match-lambda
(('guix 'config) #f)
(('guix 'channels) #f)
+ (('guix 'build 'download) #f) ;autoloaded by (guix download)
(('guix _ ...) #t)
(('gnu _ ...) #t)
(_ #f)))
diff --git a/guix/build/download.scm b/guix/build/download.scm
index 5431d7c682..ce31038b05 100644
--- a/guix/build/download.scm
+++ b/guix/build/download.scm
@@ -650,7 +650,7 @@ and write the output to FILE."
(('swhid swhid)
(match (string-split swhid #\:)
(("swh" "1" "dir" id)
- (format #t "Downloading from Software Heritage...~%" file)
+ (format #t "Downloading ~a from Software Heritage...~%" file)
(false-if-exception*
(swh-download-directory id output)))
(_ #f)))
diff --git a/guix/self.scm b/guix/self.scm
index 3154d180ac..7181205610 100644
--- a/guix/self.scm
+++ b/guix/self.scm
@@ -878,7 +878,8 @@ itself."
("guix/store/schema.sql"
,(local-file "../guix/store/schema.sql")))
- #:extensions (list guile-gcrypt)
+ #:extensions (list guile-gcrypt
+ guile-json) ;for (guix swh)
#:guile-for-build guile-for-build))
(define *extra-modules*
This bug report was last modified 4 years and 10 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.