2013-02-20 17:46:38 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-05-30 11:50:21 -04:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2017-03-01 16:11:02 -05:00
|
|
|
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
2013-02-20 17:46:38 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix scripts pull)
|
|
|
|
|
#:use-module (guix ui)
|
2015-10-26 17:17:25 -04:00
|
|
|
|
#:use-module (guix utils)
|
2017-01-18 17:21:29 -05:00
|
|
|
|
#:use-module (guix status)
|
2015-09-10 05:37:36 -04:00
|
|
|
|
#:use-module (guix scripts)
|
2013-02-20 17:46:38 -05:00
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix config)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix derivations)
|
2018-05-30 11:50:21 -04:00
|
|
|
|
#:use-module (guix profiles)
|
2014-09-18 12:42:39 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2017-08-01 17:38:07 -04:00
|
|
|
|
#:use-module (guix grafts)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
#:use-module (guix memoization)
|
2014-09-18 12:42:39 -04:00
|
|
|
|
#:use-module (guix monads)
|
2018-08-27 12:05:49 -04:00
|
|
|
|
#:use-module (guix channels)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
#:autoload (guix inferior) (open-inferior)
|
2017-05-09 09:45:04 -04:00
|
|
|
|
#:use-module (guix scripts build)
|
2018-08-27 17:05:27 -04:00
|
|
|
|
#:use-module (guix git)
|
|
|
|
|
#:use-module (git)
|
2018-07-13 10:59:15 -04:00
|
|
|
|
#:use-module (gnu packages)
|
2018-05-30 11:50:21 -04:00
|
|
|
|
#:use-module ((guix scripts package) #:select (build-and-use-profile))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
#:use-module (gnu packages base)
|
gnu: Split (gnu packages base), adding (gnu packages commencement).
* gnu/packages/base.scm (gnu-make-boot0, diffutils-boot0,
findutils-boot0, %boot0-inputs, nix-system->gnu-triplet, boot-triplet,
binutils-boot0, gcc-boot0, perl-boot0, linux-libre-headers-boot0,
texinfo-boot0, %boot1-inputs, glibc-final-with-bootstrap-bash,
cross-gcc-wrapper, static-bash-for-glibc, glibc-final,
gcc-boot0-wrapped, %boot2-inputs, binutils-final, libstdc++,
gcc-final, ld-wrapper-boot3, %boot3-inputs, bash-final, %boot4-inputs,
guile-final, gnu-make-final, ld-wrapper, coreutils-final, grep-final,
%boot5-inputs, %final-inputs, canonical-package, gcc-toolchain,
gcc-toolchain-4.8, gcc-toolchain-4.9): Move to...
* gnu/packages/commencement.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/check-final-inputs-self-contained.scm: Adjust accordingly.
* gnu/packages/cross-base.scm: Likewise.
* gnu/packages/make-bootstrap.scm: Likewise.
* guix/build-system/cmake.scm (cmake-build): Likewise.
* guix/build-system/gnu.scm (standard-packages, gnu-build,
gnu-cross-build): Likewise.
* guix/build-system/perl.scm (perl-build): Likewise.
* guix/build-system/python.scm (python-build): Likewise.
* guix/build-system/trivial.scm (guile-for-build): Likewise.
* guix/download.scm (url-fetch): Likewise.
* guix/gexp.scm (default-guile): Likewise.
* guix/git-download.scm (git-fetch): Likewise.
* guix/monads.scm (run-with-store): Likewise.
* guix/packages.scm (default-guile): Likewise.
* guix/scripts/package.scm (guix-package): Likewise.
* guix/scripts/refresh.scm: Likewise.
* guix/svn-download.scm (svn-fetch): Likewise.
* tests/builders.scm (%bootstrap-inputs, %bootstrap-search-paths):
Likewise.
* tests/packages.scm ("GNU Make, bootstrap"): Likewise.
* tests/guix-package.sh: Likewise.
* gnu/services/base.scm: Use 'canonical-package' instead of xxx-final.
* gnu/services/xorg.scm: Likewise.
* gnu/system/vm.scm: Likewise.
* guix/scripts/pull.scm (guix-pull): Likewise.
2014-08-26 18:25:17 -04:00
|
|
|
|
#:use-module (gnu packages guile)
|
2013-02-20 17:46:38 -05:00
|
|
|
|
#:use-module ((gnu packages bootstrap)
|
|
|
|
|
#:select (%bootstrap-guile))
|
2017-03-01 16:11:02 -05:00
|
|
|
|
#:use-module ((gnu packages certs) #:select (le-certs))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2018-06-13 17:39:24 -04:00
|
|
|
|
#:use-module (srfi srfi-35)
|
2013-02-20 17:46:38 -05:00
|
|
|
|
#:use-module (srfi srfi-37)
|
2014-11-09 16:32:21 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
#:use-module (ice-9 vlist)
|
2018-09-03 09:03:33 -04:00
|
|
|
|
#:export (display-profile-content
|
|
|
|
|
guix-pull))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Command-line options.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %default-options
|
|
|
|
|
;; Alist of default option values.
|
2018-08-27 12:05:49 -04:00
|
|
|
|
`((system . ,(%current-system))
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(substitutes? . #t)
|
2017-12-07 16:49:08 -05:00
|
|
|
|
(build-hook? . #t)
|
2017-01-18 17:21:29 -05:00
|
|
|
|
(print-build-trace? . #t)
|
|
|
|
|
(print-extended-build-trace? . #t)
|
2018-10-15 17:06:55 -04:00
|
|
|
|
(multiplexed-build-output? . #t)
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(graft? . #t)
|
|
|
|
|
(verbosity . 0)))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
|
|
|
|
|
(define (show-help)
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 09:57:02 -04:00
|
|
|
|
(display (G_ "Usage: guix pull [OPTION]...
|
2013-02-20 17:46:38 -05:00
|
|
|
|
Download and deploy the latest version of Guix.\n"))
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 09:57:02 -04:00
|
|
|
|
(display (G_ "
|
2013-02-20 17:46:38 -05:00
|
|
|
|
--verbose produce verbose output"))
|
2018-08-27 12:05:49 -04:00
|
|
|
|
(display (G_ "
|
|
|
|
|
-C, --channels=FILE deploy the channels defined in FILE"))
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 09:57:02 -04:00
|
|
|
|
(display (G_ "
|
2017-07-28 11:38:19 -04:00
|
|
|
|
--url=URL download from the Git repository at URL"))
|
|
|
|
|
(display (G_ "
|
|
|
|
|
--commit=COMMIT download the specified COMMIT"))
|
|
|
|
|
(display (G_ "
|
|
|
|
|
--branch=BRANCH download the tip of the specified BRANCH"))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
(display (G_ "
|
|
|
|
|
-l, --list-generations[=PATTERN]
|
|
|
|
|
list generations matching PATTERN"))
|
2018-09-03 06:46:40 -04:00
|
|
|
|
(display (G_ "
|
|
|
|
|
-p, --profile=PROFILE use PROFILE instead of ~/.config/guix/current"))
|
2018-11-05 16:52:19 -05:00
|
|
|
|
(display (G_ "
|
|
|
|
|
-n, --dry-run show what would be pulled and built"))
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 09:57:02 -04:00
|
|
|
|
(display (G_ "
|
2013-02-20 17:46:38 -05:00
|
|
|
|
--bootstrap use the bootstrap Guile to build the new Guix"))
|
|
|
|
|
(newline)
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(show-build-options-help)
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 09:57:02 -04:00
|
|
|
|
(display (G_ "
|
2013-02-20 17:46:38 -05:00
|
|
|
|
-h, --help display this help and exit"))
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 09:57:02 -04:00
|
|
|
|
(display (G_ "
|
2013-02-20 17:46:38 -05:00
|
|
|
|
-V, --version display version information and exit"))
|
|
|
|
|
(newline)
|
|
|
|
|
(show-bug-report-information))
|
|
|
|
|
|
|
|
|
|
(define %options
|
|
|
|
|
;; Specifications of the command-line options.
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(cons* (option '("verbose") #f #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'verbose? #t result)))
|
2018-08-27 12:05:49 -04:00
|
|
|
|
(option '(#\C "channels") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'channel-file arg result)))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
(option '(#\l "list-generations") #f #t
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(cons `(query list-generations ,(or arg ""))
|
|
|
|
|
result)))
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(option '("url") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
2017-07-28 11:38:19 -04:00
|
|
|
|
(alist-cons 'repository-url arg
|
|
|
|
|
(alist-delete 'repository-url result))))
|
|
|
|
|
(option '("commit") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'ref `(commit . ,arg) result)))
|
|
|
|
|
(option '("branch") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'ref `(branch . ,(string-append "origin/" arg))
|
|
|
|
|
result)))
|
2018-09-03 06:46:40 -04:00
|
|
|
|
(option '(#\p "profile") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'profile (canonicalize-profile arg)
|
|
|
|
|
result)))
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(option '(#\n "dry-run") #f #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'dry-run? #t (alist-cons 'graft? #f result))))
|
|
|
|
|
(option '("bootstrap") #f #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'bootstrap? #t result)))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
|
2017-05-09 09:45:04 -04:00
|
|
|
|
(option '(#\h "help") #f #f
|
|
|
|
|
(lambda args
|
|
|
|
|
(show-help)
|
|
|
|
|
(exit 0)))
|
|
|
|
|
(option '(#\V "version") #f #f
|
|
|
|
|
(lambda args
|
|
|
|
|
(show-version-and-exit "guix pull")))
|
|
|
|
|
|
|
|
|
|
%standard-build-options))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
|
2014-09-18 12:42:39 -04:00
|
|
|
|
(define what-to-build
|
|
|
|
|
(store-lift show-what-to-build))
|
2017-11-21 17:51:59 -05:00
|
|
|
|
(define indirect-root-added
|
|
|
|
|
(store-lift add-indirect-root))
|
2014-09-18 12:42:39 -04:00
|
|
|
|
|
2018-07-13 10:59:15 -04:00
|
|
|
|
(define (display-profile-news profile)
|
|
|
|
|
"Display what's up in PROFILE--new packages, and all that."
|
|
|
|
|
(match (memv (generation-number profile)
|
|
|
|
|
(reverse (profile-generations profile)))
|
|
|
|
|
((current previous _ ...)
|
|
|
|
|
(newline)
|
|
|
|
|
(let ((old (fold-packages (lambda (package result)
|
|
|
|
|
(alist-cons (package-name package)
|
|
|
|
|
(package-version package)
|
|
|
|
|
result))
|
|
|
|
|
'()))
|
|
|
|
|
(new (profile-package-alist
|
|
|
|
|
(generation-file-name profile current))))
|
|
|
|
|
(display-new/upgraded-packages old new
|
|
|
|
|
#:heading (G_ "New in this revision:\n"))))
|
|
|
|
|
(_ #t)))
|
|
|
|
|
|
2018-09-03 06:46:40 -04:00
|
|
|
|
(define* (build-and-install instances profile
|
2018-11-05 16:52:19 -05:00
|
|
|
|
#:key verbose? dry-run?)
|
|
|
|
|
"Build the tool from SOURCE, and install it in PROFILE. When DRY-RUN? is
|
|
|
|
|
true, display what would be built without actually building it."
|
2018-05-30 11:50:21 -04:00
|
|
|
|
(define update-profile
|
|
|
|
|
(store-lift build-and-use-profile))
|
|
|
|
|
|
2018-08-27 12:05:49 -04:00
|
|
|
|
(mlet %store-monad ((manifest (channel-instances->manifest instances)))
|
2018-07-13 10:59:15 -04:00
|
|
|
|
(mbegin %store-monad
|
2018-11-05 16:52:19 -05:00
|
|
|
|
(update-profile profile manifest
|
|
|
|
|
#:dry-run? dry-run?)
|
|
|
|
|
(munless dry-run?
|
2018-11-07 15:53:44 -05:00
|
|
|
|
(return (display-profile-news profile))))))
|
2014-09-18 12:42:39 -04:00
|
|
|
|
|
2017-07-28 11:38:19 -04:00
|
|
|
|
(define (honor-lets-encrypt-certificates! store)
|
|
|
|
|
"Tell Guile-Git to use the Let's Encrypt certificates."
|
|
|
|
|
(let* ((drv (package-derivation store le-certs))
|
|
|
|
|
(certs (string-append (derivation->output-path drv)
|
|
|
|
|
"/etc/ssl/certs")))
|
|
|
|
|
(build-derivations store (list drv))
|
2018-09-18 17:12:30 -04:00
|
|
|
|
(set-tls-certificate-locations! certs)))
|
2017-07-28 11:38:19 -04:00
|
|
|
|
|
2018-09-18 17:19:18 -04:00
|
|
|
|
(define (honor-x509-certificates store)
|
|
|
|
|
"Use the right X.509 certificates for Git checkouts over HTTPS."
|
2018-09-25 12:44:38 -04:00
|
|
|
|
;; On distros such as CentOS 7, /etc/ssl/certs contains only a couple of
|
|
|
|
|
;; files (instead of all the certificates) among which "ca-bundle.crt". On
|
|
|
|
|
;; other distros /etc/ssl/certs usually contains the whole set of
|
|
|
|
|
;; certificates along with "ca-certificates.crt". Try to choose the right
|
|
|
|
|
;; one.
|
|
|
|
|
(let ((file (letrec-syntax ((choose
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
((_ file rest ...)
|
|
|
|
|
(let ((f file))
|
|
|
|
|
(if (and f (file-exists? f))
|
|
|
|
|
f
|
|
|
|
|
(choose rest ...))))
|
|
|
|
|
((_)
|
|
|
|
|
#f))))
|
|
|
|
|
(choose (getenv "SSL_CERT_FILE")
|
|
|
|
|
"/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
|
"/etc/ssl/certs/ca-bundle.crt")))
|
2018-09-18 17:19:18 -04:00
|
|
|
|
(directory (or (getenv "SSL_CERT_DIR") "/etc/ssl/certs")))
|
2018-09-25 12:44:38 -04:00
|
|
|
|
(if (or file
|
2018-09-18 17:19:18 -04:00
|
|
|
|
(and=> (stat directory #f)
|
|
|
|
|
(lambda (st)
|
|
|
|
|
(> (stat:nlink st) 2))))
|
|
|
|
|
(set-tls-certificate-locations! directory file)
|
|
|
|
|
(honor-lets-encrypt-certificates! store))))
|
|
|
|
|
|
2017-07-28 11:38:19 -04:00
|
|
|
|
(define (report-git-error error)
|
|
|
|
|
"Report the given Guile-Git error."
|
|
|
|
|
;; Prior to Guile-Git commit b6b2760c2fd6dfaa5c0fedb43eeaff06166b3134,
|
|
|
|
|
;; errors would be represented by integers.
|
|
|
|
|
(match error
|
|
|
|
|
((? integer? error) ;old Guile-Git
|
|
|
|
|
(leave (G_ "Git error ~a~%") error))
|
|
|
|
|
((? git-error? error) ;new Guile-Git
|
|
|
|
|
(leave (G_ "Git error: ~a~%") (git-error-message error)))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (with-git-error-handling body ...)
|
|
|
|
|
(catch 'git-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
body ...)
|
|
|
|
|
(lambda (key err)
|
|
|
|
|
(report-git-error err))))
|
|
|
|
|
|
2018-10-09 05:51:44 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Profile.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %current-profile
|
|
|
|
|
;; The "real" profile under /var/guix.
|
|
|
|
|
(string-append %profile-directory "/current-guix"))
|
|
|
|
|
|
|
|
|
|
(define %user-profile-directory
|
|
|
|
|
;; The user-friendly name of %CURRENT-PROFILE.
|
|
|
|
|
(string-append (config-directory #:ensure? #f) "/current"))
|
|
|
|
|
|
|
|
|
|
(define (migrate-generations profile directory)
|
2018-10-12 09:11:50 -04:00
|
|
|
|
"Migrate the generations of PROFILE to DIRECTORY."
|
2018-10-09 05:51:44 -04:00
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(G_ "Migrating profile generations to '~a'...~%")
|
|
|
|
|
%profile-directory)
|
2018-10-12 10:43:18 -04:00
|
|
|
|
(let ((current (generation-number profile)))
|
2018-10-11 17:53:18 -04:00
|
|
|
|
(for-each (lambda (generation)
|
|
|
|
|
(let ((source (generation-file-name profile generation))
|
|
|
|
|
(target (string-append directory "/current-guix-"
|
|
|
|
|
(number->string generation)
|
|
|
|
|
"-link")))
|
2018-10-12 09:11:50 -04:00
|
|
|
|
;; Note: Don't use 'rename-file' as SOURCE and TARGET might
|
|
|
|
|
;; live on different file systems.
|
|
|
|
|
(symlink (readlink source) target)
|
|
|
|
|
(delete-file source)))
|
2018-10-11 17:53:18 -04:00
|
|
|
|
(profile-generations profile))
|
2018-10-12 10:43:18 -04:00
|
|
|
|
(symlink (string-append "current-guix-"
|
|
|
|
|
(number->string current) "-link")
|
|
|
|
|
(string-append directory "/current-guix"))))
|
2018-10-09 05:51:44 -04:00
|
|
|
|
|
|
|
|
|
(define (ensure-default-profile)
|
|
|
|
|
(ensure-profile-directory)
|
|
|
|
|
|
|
|
|
|
;; In 0.15.0+ we'd create ~/.config/guix/current-[0-9]*-link symlinks. Move
|
|
|
|
|
;; them to %PROFILE-DIRECTORY.
|
|
|
|
|
(unless (string=? %profile-directory
|
|
|
|
|
(dirname (canonicalize-profile %user-profile-directory)))
|
|
|
|
|
(migrate-generations %user-profile-directory %profile-directory))
|
|
|
|
|
|
|
|
|
|
;; Make sure ~/.config/guix/current points to /var/guix/profiles/….
|
|
|
|
|
(let ((link %user-profile-directory))
|
|
|
|
|
(unless (equal? (false-if-exception (readlink link))
|
|
|
|
|
%current-profile)
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(false-if-exception (delete-file link))
|
|
|
|
|
(symlink %current-profile link))
|
|
|
|
|
(lambda args
|
|
|
|
|
(leave (G_ "while creating symlink '~a': ~a~%")
|
|
|
|
|
link (strerror (system-error-errno args))))))))
|
|
|
|
|
|
2018-06-13 17:39:24 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Queries.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (display-profile-content profile number)
|
|
|
|
|
"Display the packages in PROFILE, generation NUMBER, in a human-readable
|
|
|
|
|
way and displaying details about the channel's source code."
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(display-generation profile number)
|
2018-06-13 17:39:24 -04:00
|
|
|
|
(for-each (lambda (entry)
|
|
|
|
|
(format #t " ~a ~a~%"
|
|
|
|
|
(manifest-entry-name entry)
|
|
|
|
|
(manifest-entry-version entry))
|
|
|
|
|
(match (assq 'source (manifest-entry-properties entry))
|
|
|
|
|
(('source ('repository ('version 0)
|
|
|
|
|
('url url)
|
|
|
|
|
('branch branch)
|
|
|
|
|
('commit commit)
|
|
|
|
|
_ ...))
|
|
|
|
|
(format #t (G_ " repository URL: ~a~%") url)
|
|
|
|
|
(when branch
|
|
|
|
|
(format #t (G_ " branch: ~a~%") branch))
|
|
|
|
|
(format #t (G_ " commit: ~a~%") commit))
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
|
|
|
|
;; Show most recently installed packages last.
|
|
|
|
|
(reverse
|
|
|
|
|
(manifest-entries
|
2018-09-18 16:49:41 -04:00
|
|
|
|
(profile-manifest (if (zero? number)
|
|
|
|
|
profile
|
|
|
|
|
(generation-file-name profile number)))))))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(define (indented-string str indent)
|
|
|
|
|
"Return STR with each newline preceded by IDENT spaces."
|
|
|
|
|
(define indent-string
|
|
|
|
|
(make-list indent #\space))
|
|
|
|
|
|
|
|
|
|
(list->string
|
|
|
|
|
(string-fold-right (lambda (chr result)
|
|
|
|
|
(if (eqv? chr #\newline)
|
|
|
|
|
(cons chr (append indent-string result))
|
|
|
|
|
(cons chr result)))
|
|
|
|
|
'()
|
|
|
|
|
str)))
|
|
|
|
|
|
|
|
|
|
(define profile-package-alist
|
|
|
|
|
(mlambda (profile)
|
|
|
|
|
"Return a name/version alist representing the packages in PROFILE."
|
|
|
|
|
(fold (lambda (package lst)
|
|
|
|
|
(alist-cons (inferior-package-name package)
|
|
|
|
|
(inferior-package-version package)
|
|
|
|
|
lst))
|
|
|
|
|
'()
|
|
|
|
|
(let* ((inferior (open-inferior profile))
|
|
|
|
|
(packages (inferior-packages inferior)))
|
|
|
|
|
(close-inferior inferior)
|
|
|
|
|
packages))))
|
|
|
|
|
|
2018-07-13 10:59:15 -04:00
|
|
|
|
(define* (display-new/upgraded-packages alist1 alist2
|
|
|
|
|
#:key (heading ""))
|
2018-07-10 10:06:32 -04:00
|
|
|
|
"Given the two package name/version alists ALIST1 and ALIST2, display the
|
2018-07-13 10:59:15 -04:00
|
|
|
|
list of new and upgraded packages going from ALIST1 to ALIST2. When ALIST1
|
|
|
|
|
and ALIST2 differ, display HEADING upfront."
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(let* ((old (fold (match-lambda*
|
|
|
|
|
(((name . version) table)
|
|
|
|
|
(vhash-cons name version table)))
|
|
|
|
|
vlist-null
|
|
|
|
|
alist1))
|
|
|
|
|
(new (remove (match-lambda
|
|
|
|
|
((name . _)
|
|
|
|
|
(vhash-assoc name old)))
|
|
|
|
|
alist2))
|
|
|
|
|
(upgraded (filter-map (match-lambda
|
|
|
|
|
((name . new-version)
|
|
|
|
|
(match (vhash-fold* cons '() name old)
|
|
|
|
|
(() #f)
|
|
|
|
|
((= (cut sort <> version>?) old-versions)
|
|
|
|
|
(and (version>? new-version
|
|
|
|
|
(first old-versions))
|
|
|
|
|
(string-append name "@"
|
|
|
|
|
new-version))))))
|
|
|
|
|
alist2)))
|
2018-07-13 10:59:15 -04:00
|
|
|
|
(unless (and (null? new) (null? upgraded))
|
|
|
|
|
(display heading))
|
|
|
|
|
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(match (length new)
|
|
|
|
|
(0 #t)
|
|
|
|
|
(count
|
|
|
|
|
(format #t (N_ " ~h new package: ~a~%"
|
|
|
|
|
" ~h new packages: ~a~%" count)
|
|
|
|
|
count
|
|
|
|
|
(indented-string
|
|
|
|
|
(fill-paragraph (string-join (sort (map first new) string<?)
|
|
|
|
|
", ")
|
|
|
|
|
(- (%text-width) 4) 30)
|
|
|
|
|
4))))
|
|
|
|
|
(match (length upgraded)
|
|
|
|
|
(0 #t)
|
|
|
|
|
(count
|
|
|
|
|
(format #t (N_ " ~h package upgraded: ~a~%"
|
|
|
|
|
" ~h packages upgraded: ~a~%" count)
|
|
|
|
|
count
|
|
|
|
|
(indented-string
|
|
|
|
|
(fill-paragraph (string-join (sort upgraded string<?) ", ")
|
|
|
|
|
(- (%text-width) 4) 35)
|
|
|
|
|
4))))))
|
|
|
|
|
|
|
|
|
|
(define (display-profile-content-diff profile gen1 gen2)
|
|
|
|
|
"Display the changes in PROFILE GEN2 compared to generation GEN1."
|
|
|
|
|
(define (package-alist generation)
|
|
|
|
|
(profile-package-alist (generation-file-name profile generation)))
|
|
|
|
|
|
|
|
|
|
(display-profile-content profile gen2)
|
|
|
|
|
(display-new/upgraded-packages (package-alist gen1)
|
|
|
|
|
(package-alist gen2)))
|
|
|
|
|
|
2018-10-09 04:52:39 -04:00
|
|
|
|
(define (process-query opts profile)
|
|
|
|
|
"Process any query on PROFILE specified by OPTS."
|
2018-06-13 17:39:24 -04:00
|
|
|
|
(match (assoc-ref opts 'query)
|
|
|
|
|
(('list-generations pattern)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(define (list-generations profile numbers)
|
|
|
|
|
(match numbers
|
|
|
|
|
((first rest ...)
|
|
|
|
|
(display-profile-content profile first)
|
|
|
|
|
(let loop ((numbers numbers))
|
|
|
|
|
(match numbers
|
|
|
|
|
((first second rest ...)
|
|
|
|
|
(display-profile-content-diff profile
|
|
|
|
|
first second)
|
|
|
|
|
(loop (cons second rest)))
|
|
|
|
|
((_) #t)
|
|
|
|
|
(() #t))))))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
|
|
|
|
|
(leave-on-EPIPE
|
|
|
|
|
(cond ((not (file-exists? profile)) ; XXX: race condition
|
|
|
|
|
(raise (condition (&profile-not-found-error
|
|
|
|
|
(profile profile)))))
|
|
|
|
|
((string-null? pattern)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(list-generations profile (profile-generations profile)))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
((matching-generations pattern profile)
|
|
|
|
|
=>
|
|
|
|
|
(match-lambda
|
|
|
|
|
(()
|
|
|
|
|
(exit 1))
|
|
|
|
|
((numbers ...)
|
2018-07-10 10:06:32 -04:00
|
|
|
|
(list-generations profile numbers)))))))))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
|
2018-08-27 12:05:49 -04:00
|
|
|
|
(define (channel-list opts)
|
|
|
|
|
"Return the list of channels to use. If OPTS specify a channel file,
|
|
|
|
|
channels are read from there; otherwise, if ~/.config/guix/channels.scm
|
|
|
|
|
exists, read it; otherwise %DEFAULT-CHANNELS is used. Apply channel
|
|
|
|
|
transformations specified in OPTS (resulting from '--url', '--commit', or
|
|
|
|
|
'--branch'), if any."
|
|
|
|
|
(define file
|
|
|
|
|
(assoc-ref opts 'channel-file))
|
|
|
|
|
|
|
|
|
|
(define default-file
|
|
|
|
|
(string-append (config-directory) "/channels.scm"))
|
|
|
|
|
|
|
|
|
|
(define (load-channels file)
|
|
|
|
|
(let ((result (load* file (make-user-module '((guix channels))))))
|
|
|
|
|
(if (and (list? result) (every channel? result))
|
|
|
|
|
result
|
|
|
|
|
(leave (G_ "'~a' did not return a list of channels~%") file))))
|
|
|
|
|
|
|
|
|
|
(define channels
|
|
|
|
|
(cond (file
|
|
|
|
|
(load-channels file))
|
|
|
|
|
((file-exists? default-file)
|
|
|
|
|
(load-channels default-file))
|
|
|
|
|
(else
|
|
|
|
|
%default-channels)))
|
|
|
|
|
|
|
|
|
|
(define (environment-variable)
|
|
|
|
|
(match (getenv "GUIX_PULL_URL")
|
|
|
|
|
(#f #f)
|
|
|
|
|
(url
|
|
|
|
|
(warning (G_ "The 'GUIX_PULL_URL' environment variable is deprecated.
|
|
|
|
|
Use '~/.config/guix/channels.scm' instead."))
|
|
|
|
|
url)))
|
|
|
|
|
|
|
|
|
|
(let ((ref (assoc-ref opts 'ref))
|
|
|
|
|
(url (or (assoc-ref opts 'repository-url)
|
|
|
|
|
(environment-variable))))
|
|
|
|
|
(if (or ref url)
|
|
|
|
|
(match channels
|
|
|
|
|
((one)
|
|
|
|
|
;; When there's only one channel, apply '--url', '--commit', and
|
|
|
|
|
;; '--branch' to this specific channel.
|
|
|
|
|
(let ((url (or url (channel-url one))))
|
|
|
|
|
(list (match ref
|
|
|
|
|
(('commit . commit)
|
|
|
|
|
(channel (inherit one)
|
|
|
|
|
(url url) (commit commit) (branch #f)))
|
|
|
|
|
(('branch . branch)
|
|
|
|
|
(channel (inherit one)
|
|
|
|
|
(url url) (commit #f) (branch branch)))
|
|
|
|
|
(#f
|
|
|
|
|
(channel (inherit one) (url url)))))))
|
|
|
|
|
(_
|
|
|
|
|
;; Otherwise bail out.
|
|
|
|
|
(leave
|
|
|
|
|
(G_ "'--url', '--commit', and '--branch' are not applicable~%"))))
|
|
|
|
|
channels)))
|
|
|
|
|
|
2017-05-09 09:45:04 -04:00
|
|
|
|
|
2013-02-20 17:46:38 -05:00
|
|
|
|
(define (guix-pull . args)
|
2013-03-07 13:29:12 -05:00
|
|
|
|
(with-error-handling
|
2017-07-28 11:38:19 -04:00
|
|
|
|
(with-git-error-handling
|
2018-08-27 12:05:49 -04:00
|
|
|
|
(let* ((opts (parse-command-line args %options
|
|
|
|
|
(list %default-options)))
|
|
|
|
|
(cache (string-append (cache-directory) "/pull"))
|
2018-09-03 06:46:40 -04:00
|
|
|
|
(channels (channel-list opts))
|
2018-10-09 05:51:44 -04:00
|
|
|
|
(profile (or (assoc-ref opts 'profile) %current-profile)))
|
|
|
|
|
(ensure-default-profile)
|
2018-06-13 17:39:24 -04:00
|
|
|
|
(cond ((assoc-ref opts 'query)
|
2018-10-09 04:52:39 -04:00
|
|
|
|
(process-query opts profile))
|
2018-06-13 17:39:24 -04:00
|
|
|
|
(else
|
|
|
|
|
(with-store store
|
2017-01-18 17:21:29 -05:00
|
|
|
|
(with-status-report print-build-event
|
|
|
|
|
(parameterize ((%graft? (assoc-ref opts 'graft?))
|
|
|
|
|
(%repository-cache-directory cache))
|
|
|
|
|
(set-build-options-from-command-line store opts)
|
|
|
|
|
(honor-x509-certificates store)
|
|
|
|
|
|
|
|
|
|
(let ((instances (latest-channel-instances store channels)))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "Building from this channel:~%"
|
|
|
|
|
"Building from these channels:~%"
|
|
|
|
|
(length instances)))
|
|
|
|
|
(for-each (lambda (instance)
|
|
|
|
|
(let ((channel
|
|
|
|
|
(channel-instance-channel instance)))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
" ~10a~a\t~a~%"
|
|
|
|
|
(channel-name channel)
|
|
|
|
|
(channel-url channel)
|
|
|
|
|
(string-take
|
|
|
|
|
(channel-instance-commit instance)
|
|
|
|
|
7))))
|
|
|
|
|
instances)
|
|
|
|
|
(parameterize ((%guile-for-build
|
|
|
|
|
(package-derivation
|
|
|
|
|
store
|
|
|
|
|
(if (assoc-ref opts 'bootstrap?)
|
|
|
|
|
%bootstrap-guile
|
|
|
|
|
(canonical-package guile-2.2)))))
|
|
|
|
|
(run-with-store store
|
|
|
|
|
(build-and-install instances profile
|
2018-11-05 16:52:19 -05:00
|
|
|
|
#:dry-run?
|
|
|
|
|
(assoc-ref opts 'dry-run?)
|
2017-01-18 17:21:29 -05:00
|
|
|
|
#:verbose?
|
|
|
|
|
(assoc-ref opts 'verbose?))))))))))))))
|
2014-11-09 16:32:21 -05:00
|
|
|
|
|
|
|
|
|
;;; pull.scm ends here
|