From: Ricardo Wurmus <rekado@elephly.net>
To: 56441@debbugs.gnu.org
Subject: bug#56441: Time travel doesn't resist profile format changes
Date: Fri, 08 Jul 2022 12:46:47 +0200 [thread overview]
Message-ID: <87fsjbzxo5.fsf@elephly.net> (raw)
In-Reply-To: <867d4oq3gr.fsf@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 420 bytes --]
Attached is a patch that attempts to build the manifest in an inferior.
This fails because manifest->gexp returns a gexp that we can’t get out
of the inferior to pass to build-profile.
So even more of the surrounding code would have to be evaluated in the
inferior.
@Ludo: your patch looks good to me. It’s a pragmatic, minimally
invasive fix, so thumbs up emoji from me! Thank you!
--
Ricardo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-channel-stuff.patch --]
[-- Type: text/x-patch, Size: 7845 bytes --]
From da3eaeea0d0082138284720dce60f6bdfc796f2b Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Fri, 8 Jul 2022 08:40:27 +0200
Subject: [PATCH] channel stuff
---
guix/channels.scm | 17 ++++++++--
guix/profiles.scm | 81 +++++++++++++++++++++++++++++++++++------------
2 files changed, 75 insertions(+), 23 deletions(-)
diff --git a/guix/channels.scm b/guix/channels.scm
index ce1a60436f..45fba89685 100644
--- a/guix/channels.scm
+++ b/guix/channels.scm
@@ -896,6 +896,7 @@ (define (instance->entry instance drv)
(define (package-cache-file manifest)
"Build a package cache file for the instance in MANIFEST. This is meant to
be used as a profile hook."
+ (pk 'package-cache-file manifest)
(let ((profile (profile (content manifest) (hooks '()))))
(define build
#~(begin
@@ -918,7 +919,12 @@ (define build
(mkdir #$output))))
(gexp->derivation-in-inferior "guix-package-cache" build
- profile
+ (pk 'guixx (manifest-entry-item
+ (manifest-lookup
+ manifest
+ (manifest-pattern
+ (name "guix")))))
+ ;profile
;; If the Guix in PROFILE is too old and
;; lacks 'guix repl', don't build the cache
@@ -936,8 +942,15 @@ (define %channel-profile-hooks
(define (channel-instances->derivation instances)
"Return the derivation of the profile containing INSTANCES, a list of
channel instances."
- (mlet %store-monad ((manifest (channel-instances->manifest instances)))
+ (mlet* %store-monad ((manifest (channel-instances->manifest instances))
+ (drv -> (manifest-entry-item
+ (manifest-lookup
+ manifest
+ (manifest-pattern
+ (name "guix")))))
+ (built (built-derivations (list drv))))
(profile-derivation manifest
+ #:inferior-guix (derivation->output-path drv)
#:hooks %channel-profile-hooks)))
(define latest-channel-instances*
diff --git a/guix/profiles.scm b/guix/profiles.scm
index 701852ae98..2d482cf91a 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -38,6 +38,10 @@ (define-module (guix profiles)
#:use-module (guix records)
#:use-module (guix packages)
#:use-module (guix derivations)
+ #:autoload (guix inferior) (gexp->derivation-in-inferior
+ open-inferior
+ close-inferior
+ inferior-eval)
#:use-module (guix search-paths)
#:use-module (guix gexp)
#:use-module (guix modules)
@@ -1946,6 +1950,7 @@ (define* (profile-derivation manifest
(allow-unsupported-packages? #f)
(allow-collisions? #f)
(relative-symlinks? #f)
+ (inferior-guix #f)
system target)
"Return a derivation that builds a profile (aka. 'user environment') with
the given MANIFEST. The profile includes additional derivations returned by
@@ -2013,6 +2018,33 @@ (define set-utf8-locale
(package-version glibc-utf8-locales))))
(setlocale LC_ALL "en_US.utf8")))
+ (define (manifest-gexp)
+ (pk 'man-gexp
+ (if inferior-guix
+ (let* ((inferior (open-inferior inferior-guix))
+ (result
+ ;; TODO: this doesn't work because we can't lift the
+ ;; gexp out of the inferior.
+ (inferior-eval `(begin
+ (use-modules (guix profiles)
+ (guix derivations))
+ ((@@ (guix profiles) manifest->gexp)
+ (manifest
+ (list
+ ,@(map (lambda (entry)
+ `(manifest-entry
+ (name ,(manifest-entry-name entry))
+ (version ,(manifest-entry-version entry))
+ (output ,(manifest-entry-output entry))
+ (item (read-derivation-from-file
+ ,(derivation-file-name
+ (manifest-entry-item entry))))))
+ (manifest-entries manifest))))))
+ inferior)))
+ (close-inferior inferior)
+ result)
+ (manifest->gexp manifest))))
+
(define builder
(with-imported-modules '((guix build profiles)
(guix build union)
@@ -2031,32 +2063,39 @@ (define builder
#+(if locales? set-utf8-locale #t)
- (build-profile #$output '#$(manifest->gexp manifest)
+ (build-profile #$output '#$(manifest-gexp)
#:extra-inputs '#$extra-inputs
#:symlink #$(if relative-symlinks?
#~symlink-relative
#~symlink)))))
- (gexp->derivation name builder
- #:system system
- #:target target
-
- ;; Don't complain about _IO* on Guile 2.2.
- #:env-vars '(("GUILE_WARN_DEPRECATED" . "no"))
-
- ;; Not worth offloading.
- #:local-build? #t
-
- ;; Disable substitution because it would trigger a
- ;; connection to the substitute server, which is likely
- ;; to have no substitute to offer.
- #:substitutable? #f
-
- #:properties `((type . profile)
- (profile
- (count
- . ,(length
- (manifest-entries manifest))))))))
+ (let ((proc (if inferior-guix
+ (lambda args
+ (apply gexp->derivation-in-inferior
+ name builder (pk 'inf inferior-guix)
+ args))
+ (lambda args
+ (apply gexp->derivation
+ name builder args)))))
+ (proc #:system system
+ #:target target
+
+ ;; Don't complain about _IO* on Guile 2.2.
+ #:env-vars '(("GUILE_WARN_DEPRECATED" . "no"))
+
+ ;; Not worth offloading.
+ #:local-build? #t
+
+ ;; Disable substitution because it would trigger a
+ ;; connection to the substitute server, which is likely
+ ;; to have no substitute to offer.
+ #:substitutable? #f
+
+ #:properties `((type . profile)
+ (profile
+ (count
+ . ,(length
+ (manifest-entries manifest)))))))))
;; Declarative profile.
(define-record-type* <profile> profile make-profile
--
2.36.1
next prev parent reply other threads:[~2022-07-08 10:50 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-07 16:42 bug#56441: guix time-machine broken by profiles speed-up zimoun
2022-07-07 17:29 ` Ricardo Wurmus
2022-07-07 17:52 ` Ricardo Wurmus
2022-07-08 8:52 ` Ludovic Courtès
2022-07-08 10:36 ` Ludovic Courtès
2022-07-08 14:34 ` bug#56441: Time travel doesn't resist profile format changes zimoun
2022-07-08 16:13 ` Ludovic Courtès
2022-07-08 22:01 ` bug#56441: guix time-machine broken by profiles speed-up Ludovic Courtès
2022-07-08 10:46 ` Ricardo Wurmus [this message]
2022-07-08 20:42 ` Ludovic Courtès
[not found] ` <handler.56441.D56441.165731768325904.notifdone@debbugs.gnu.org>
2022-07-11 8:27 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87fsjbzxo5.fsf@elephly.net \
--to=rekado@elephly.net \
--cc=56441@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).