mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
guix system: Simplify closure copy.
* guix/scripts/system.scm (copy-item): Add 'references' argument and remove 'references*' call. Turn into a non-monadic procedure. (copy-closure): Remove initial call to 'references*'. Only pass ITEM to 'topologically-sorted*' since that's equivalent. Compute the list of references corresponding to TO-COPY and pass it to 'copy-item'.
This commit is contained in:
parent
1fafa2f587
commit
e4ecd51e23
1 changed files with 29 additions and 32 deletions
|
@ -107,10 +107,10 @@ (define topologically-sorted*
|
||||||
(store-lift topologically-sorted))
|
(store-lift topologically-sorted))
|
||||||
|
|
||||||
|
|
||||||
(define* (copy-item item target
|
(define* (copy-item item references target
|
||||||
#:key (log-port (current-error-port)))
|
#:key (log-port (current-error-port)))
|
||||||
"Copy ITEM to the store under root directory TARGET and register it."
|
"Copy ITEM to the store under root directory TARGET and register it with
|
||||||
(mlet* %store-monad ((refs (references* item)))
|
REFERENCES as its set of references."
|
||||||
(let ((dest (string-append target item))
|
(let ((dest (string-append target item))
|
||||||
(state (string-append target "/var/guix")))
|
(state (string-append target "/var/guix")))
|
||||||
(format log-port "copying '~a'...~%" item)
|
(format log-port "copying '~a'...~%" item)
|
||||||
|
@ -131,23 +131,20 @@ (define* (copy-item item target
|
||||||
(unless (register-path item
|
(unless (register-path item
|
||||||
#:prefix target
|
#:prefix target
|
||||||
#:state-directory state
|
#:state-directory state
|
||||||
#:references refs)
|
#:references references)
|
||||||
(leave (G_ "failed to register '~a' under '~a'~%")
|
(leave (G_ "failed to register '~a' under '~a'~%")
|
||||||
item target))
|
item target))))
|
||||||
|
|
||||||
(return #t))))
|
|
||||||
|
|
||||||
(define* (copy-closure item target
|
(define* (copy-closure item target
|
||||||
#:key (log-port (current-error-port)))
|
#:key (log-port (current-error-port)))
|
||||||
"Copy ITEM and all its dependencies to the store under root directory
|
"Copy ITEM and all its dependencies to the store under root directory
|
||||||
TARGET, and register them."
|
TARGET, and register them."
|
||||||
(mlet* %store-monad ((refs (references* item))
|
(mlet* %store-monad ((to-copy (topologically-sorted* (list item)))
|
||||||
(to-copy (topologically-sorted*
|
(refs (mapm %store-monad references* to-copy)))
|
||||||
(delete-duplicates (cons item refs)
|
(for-each (cut copy-item <> <> target #:log-port log-port)
|
||||||
string=?))))
|
to-copy refs)
|
||||||
(sequence %store-monad
|
|
||||||
(map (cut copy-item <> target #:log-port log-port)
|
(return *unspecified*)))
|
||||||
to-copy))))
|
|
||||||
|
|
||||||
(define* (install-bootloader installer-drv
|
(define* (install-bootloader installer-drv
|
||||||
#:key
|
#:key
|
||||||
|
|
Loading…
Reference in a new issue