pull: Add '--url' option.
* guix/scripts/pull.scm (%default-options): Add 'tarball-url' pair. (%options, show-help): Add '--url'. (guix-pull): Honor it.
This commit is contained in:
parent
d8907ac43f
commit
0ad7da1e90
@ -137,13 +137,15 @@ (define builder
|
||||
|
||||
(define %default-options
|
||||
;; Alist of default option values.
|
||||
'())
|
||||
`((tarball-url . ,%snapshot-url)))
|
||||
|
||||
(define (show-help)
|
||||
(display (_ "Usage: guix pull [OPTION]...
|
||||
Download and deploy the latest version of Guix.\n"))
|
||||
(display (_ "
|
||||
--verbose produce verbose output"))
|
||||
(display (_ "
|
||||
--url=URL download the Guix tarball from URL"))
|
||||
(display (_ "
|
||||
--bootstrap use the bootstrap Guile to build the new Guix"))
|
||||
(newline)
|
||||
@ -159,6 +161,10 @@ (define %options
|
||||
(list (option '("verbose") #f #f
|
||||
(lambda (opt name arg result)
|
||||
(alist-cons 'verbose? #t result)))
|
||||
(option '("url") #t #f
|
||||
(lambda (opt name arg result)
|
||||
(alist-cons 'tarball-url arg
|
||||
(alist-delete 'tarball-url result))))
|
||||
(option '("bootstrap") #f #f
|
||||
(lambda (opt name arg result)
|
||||
(alist-cons 'bootstrap? #t result)))
|
||||
@ -182,10 +188,10 @@ (define (parse-options)
|
||||
%default-options))
|
||||
|
||||
(with-error-handling
|
||||
(let ((opts (parse-options))
|
||||
(store (open-connection)))
|
||||
(let ((tarball (download-to-store store %snapshot-url
|
||||
"guix-latest.tar.gz")))
|
||||
(let* ((opts (parse-options))
|
||||
(store (open-connection))
|
||||
(url (assoc-ref opts 'tarball-url)))
|
||||
(let ((tarball (download-to-store store url "guix-latest.tar.gz")))
|
||||
(unless tarball
|
||||
(leave (_ "failed to download up-to-date source, exiting\n")))
|
||||
(parameterize ((%guile-for-build
|
||||
|
Loading…
Reference in New Issue
Block a user