2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-01-05 00:06:04 +01:00
|
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2018-03-16 23:29:31 +01:00
|
|
|
|
;;; Copyright © 2013, 2018 Mark H Weaver <mhw@netris.org>
|
2013-04-21 10:08:40 +02:00
|
|
|
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2015-09-10 11:37:36 +02:00
|
|
|
|
;;; Copyright © 2014 Cyril Roelandt <tipecaml@gmail.com>
|
|
|
|
|
;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
|
2017-03-20 11:41:41 +01:00
|
|
|
|
;;; Copyright © 2014, 2015, 2017 Alex Kost <alezost@gmail.com>
|
2015-09-10 11:37:36 +02:00
|
|
|
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
2016-05-16 17:55:38 +02:00
|
|
|
|
;;; Copyright © 2015, 2016 Mathieu Lirzin <mthl@gnu.org>
|
2016-10-26 14:53:29 +02:00
|
|
|
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
|
|
|
|
;;; Copyright © 2016 Benz Schenk <benz.schenk@uzh.ch>
|
2018-07-07 06:41:35 +02:00
|
|
|
|
;;; Copyright © 2018 Kyle Meyer <kyle@kyleam.com>
|
2018-09-04 17:32:27 +02:00
|
|
|
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
2019-05-06 10:51:30 +02:00
|
|
|
|
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
|
|
|
|
|
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2012-11-01 00:50:01 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-01 00:50:01 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-11-01 00:50:01 +01:00
|
|
|
|
;;; 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.
|
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-11-01 00:50:01 +01:00
|
|
|
|
;;; 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
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-01 00:50:01 +01:00
|
|
|
|
|
|
|
|
|
(define-module (guix ui)
|
2017-11-08 10:13:45 +01:00
|
|
|
|
#:use-module (guix i18n)
|
2019-04-10 12:00:55 +02:00
|
|
|
|
#:use-module (guix colors)
|
2017-04-03 23:52:19 +02:00
|
|
|
|
#:use-module (guix gexp)
|
2017-11-24 18:16:43 +01:00
|
|
|
|
#:use-module (guix sets)
|
2012-11-01 00:50:01 +01:00
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (guix store)
|
2012-11-03 21:19:43 +01:00
|
|
|
|
#:use-module (guix config)
|
2012-11-01 00:50:01 +01:00
|
|
|
|
#:use-module (guix packages)
|
2014-10-08 15:15:49 +02:00
|
|
|
|
#:use-module (guix profiles)
|
2013-02-20 23:41:24 +01:00
|
|
|
|
#:use-module (guix derivations)
|
utils: Move combinators to (guix combinators).
* guix/utils.scm (compile-time-value, memoize, fold2)
(fold-tree, fold-tree-leaves): Move to...
* guix/combinators: ... here. New file.
* tests/utils.scm ("fold2, 1 list", "fold2, 2 lists")
(fold-tree tests): Move to...
* tests/combinators.scm: ... here. New file.
* Makefile.am (MODULES, SCM_TESTS): Add them.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
gnu/services/herd.scm, guix/build-system/gnu.scm,
guix/build-system/python.scm, guix/derivations.scm,
guix/gnu-maintenance.scm, guix/import/elpa.scm,
guix/scripts/archive.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/size.scm, guix/scripts/substitute.scm,
guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports
accordingly.
2016-05-04 17:35:47 +02:00
|
|
|
|
#:use-module (guix combinators)
|
2015-02-08 18:30:20 +01:00
|
|
|
|
#:use-module (guix build-system)
|
|
|
|
|
#:use-module (guix serialization)
|
2013-02-01 13:16:27 +01:00
|
|
|
|
#:use-module ((guix licenses) #:select (license? license-name))
|
2017-05-31 15:26:21 +02:00
|
|
|
|
#:use-module ((guix build syscalls)
|
|
|
|
|
#:select (free-disk-space terminal-columns))
|
2018-03-16 23:29:31 +01:00
|
|
|
|
#:use-module ((guix build utils)
|
2018-06-09 10:21:26 +02:00
|
|
|
|
;; XXX: All we need are the bindings related to
|
|
|
|
|
;; '&invoke-error'. However, to work around the bug described
|
|
|
|
|
;; in 5d669883ecc104403c5d3ba7d172e9c02234577c, #:hide
|
|
|
|
|
;; unwanted bindings instead of #:select'ing the needed
|
|
|
|
|
;; bindings.
|
|
|
|
|
#:hide (package-name->name+version))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
2013-09-19 13:07:39 +02:00
|
|
|
|
#:use-module (srfi srfi-19)
|
2012-11-01 00:50:01 +01:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2015-05-25 18:25:19 +02:00
|
|
|
|
#:use-module (srfi srfi-31)
|
2012-11-01 00:50:01 +01:00
|
|
|
|
#:use-module (srfi srfi-34)
|
2014-02-21 17:45:04 +01:00
|
|
|
|
#:use-module (srfi srfi-35)
|
2013-05-10 12:33:18 +02:00
|
|
|
|
#:autoload (ice-9 ftw) (scandir)
|
2012-11-19 23:02:59 +01:00
|
|
|
|
#:use-module (ice-9 match)
|
2013-02-20 23:41:24 +01:00
|
|
|
|
#:use-module (ice-9 format)
|
2013-09-19 13:07:39 +02:00
|
|
|
|
#:use-module (ice-9 regex)
|
2018-03-05 10:52:32 +01:00
|
|
|
|
#:autoload (system base compile) (compile-file)
|
2015-05-25 22:52:41 +02:00
|
|
|
|
#:autoload (system repl repl) (start-repl)
|
|
|
|
|
#:autoload (system repl debug) (make-debug stack->vector)
|
2015-08-07 00:10:43 +02:00
|
|
|
|
#:use-module (texinfo)
|
|
|
|
|
#:use-module (texinfo plain-text)
|
|
|
|
|
#:use-module (texinfo string-utils)
|
2017-11-08 10:13:45 +01:00
|
|
|
|
#:re-export (G_ N_ P_) ;backward compatibility
|
|
|
|
|
#:export (report-error
|
2018-04-27 15:31:37 +02:00
|
|
|
|
display-hint
|
2012-11-01 00:50:01 +01:00
|
|
|
|
leave
|
2015-05-18 13:49:44 +02:00
|
|
|
|
make-user-module
|
|
|
|
|
load*
|
2015-04-07 22:27:45 +02:00
|
|
|
|
warn-about-load-error
|
2012-11-03 21:19:43 +01:00
|
|
|
|
show-version-and-exit
|
2013-01-05 15:55:47 +01:00
|
|
|
|
show-bug-report-information
|
2015-10-28 15:53:17 +01:00
|
|
|
|
make-regexp*
|
2013-05-20 18:14:55 +02:00
|
|
|
|
string->number*
|
2014-04-08 22:01:44 +02:00
|
|
|
|
size->number
|
2015-07-23 15:08:39 +02:00
|
|
|
|
show-derivation-outputs
|
2013-02-20 23:41:24 +01:00
|
|
|
|
show-what-to-build
|
2015-05-21 00:42:35 +02:00
|
|
|
|
show-what-to-build*
|
2014-10-08 15:15:49 +02:00
|
|
|
|
show-manifest-transaction
|
2012-11-01 00:50:01 +01:00
|
|
|
|
call-with-error-handling
|
2012-11-19 23:02:59 +01:00
|
|
|
|
with-error-handling
|
2018-05-04 15:05:05 +02:00
|
|
|
|
with-unbound-variable-handling
|
2015-07-15 18:01:05 +02:00
|
|
|
|
leave-on-EPIPE
|
2013-11-18 23:08:20 +01:00
|
|
|
|
read/eval
|
2013-03-01 21:55:42 +01:00
|
|
|
|
read/eval-package-expression
|
2018-07-02 23:51:20 +02:00
|
|
|
|
check-available-space
|
2013-02-01 13:16:27 +01:00
|
|
|
|
location->string
|
|
|
|
|
fill-paragraph
|
2017-09-13 16:07:30 +02:00
|
|
|
|
%text-width
|
2015-09-20 12:27:23 +02:00
|
|
|
|
texi->plain-text
|
2015-08-07 00:10:43 +02:00
|
|
|
|
package-description-string
|
2017-03-20 11:41:41 +01:00
|
|
|
|
package-synopsis-string
|
2013-02-01 13:16:27 +01:00
|
|
|
|
string->recutils
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
package->recutils
|
2013-11-01 16:57:48 +01:00
|
|
|
|
package-specification->name+version+output
|
2017-09-13 15:07:17 +02:00
|
|
|
|
relevance
|
|
|
|
|
package-relevance
|
2013-09-19 13:07:39 +02:00
|
|
|
|
string->generations
|
|
|
|
|
string->duration
|
2015-10-26 19:03:56 +01:00
|
|
|
|
matching-generations
|
2015-10-26 21:16:20 +01:00
|
|
|
|
display-generation
|
|
|
|
|
display-profile-content
|
2016-10-26 14:53:29 +02:00
|
|
|
|
display-profile-content-diff
|
2015-10-26 23:01:06 +01:00
|
|
|
|
roll-back*
|
|
|
|
|
switch-to-generation*
|
|
|
|
|
delete-generation*
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
run-guix-command
|
2015-08-16 09:28:04 +02:00
|
|
|
|
run-guix
|
2013-04-11 22:30:06 +02:00
|
|
|
|
program-name
|
|
|
|
|
guix-warning-port
|
|
|
|
|
warning
|
2016-02-03 21:59:47 +01:00
|
|
|
|
info
|
2019-04-09 22:39:26 +02:00
|
|
|
|
guix-main))
|
2012-11-01 00:50:01 +01:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; User interface facilities for command-line tools.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2019-04-10 16:12:54 +02:00
|
|
|
|
(define-syntax highlight-argument
|
|
|
|
|
(lambda (s)
|
|
|
|
|
"Given FMT and ARG, expand ARG to a call that highlights it, provided FMT
|
|
|
|
|
is a trivial format string."
|
|
|
|
|
(define (trivial-format-string? fmt)
|
|
|
|
|
(define len
|
|
|
|
|
(string-length fmt))
|
|
|
|
|
|
|
|
|
|
(let loop ((start 0))
|
|
|
|
|
(or (>= (+ 1 start) len)
|
|
|
|
|
(let ((tilde (string-index fmt #\~ start)))
|
|
|
|
|
(or (not tilde)
|
|
|
|
|
(case (string-ref fmt (+ tilde 1))
|
|
|
|
|
((#\a #\A #\%) (loop (+ tilde 2)))
|
|
|
|
|
(else #f)))))))
|
|
|
|
|
|
|
|
|
|
;; Be conservative: limit format argument highlighting to cases where the
|
|
|
|
|
;; format string contains nothing but ~a escapes. If it contained ~s
|
|
|
|
|
;; escapes, this strategy wouldn't work.
|
|
|
|
|
(syntax-case s ()
|
|
|
|
|
((_ "~a~%" arg) ;don't highlight whole messages
|
|
|
|
|
#'arg)
|
|
|
|
|
((_ fmt arg)
|
|
|
|
|
(trivial-format-string? (syntax->datum #'fmt))
|
|
|
|
|
#'(%highlight-argument arg))
|
|
|
|
|
((_ fmt arg)
|
|
|
|
|
#'arg))))
|
|
|
|
|
|
|
|
|
|
(define* (%highlight-argument arg #:optional (port (guix-warning-port)))
|
|
|
|
|
"Highlight ARG, a format string argument, if PORT supports colors."
|
|
|
|
|
(cond ((string? arg)
|
2019-04-14 19:48:19 +02:00
|
|
|
|
(highlight arg port))
|
2019-04-10 16:12:54 +02:00
|
|
|
|
((symbol? arg)
|
2019-04-14 19:48:19 +02:00
|
|
|
|
(highlight (symbol->string arg) port))
|
2019-04-10 16:12:54 +02:00
|
|
|
|
(else arg)))
|
|
|
|
|
|
2019-04-09 23:44:36 +02:00
|
|
|
|
(define-syntax define-diagnostic
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
"Create a diagnostic macro (i.e., NAME), which will prepend PREFIX to all
|
2013-04-22 13:24:16 +02:00
|
|
|
|
messages."
|
2019-04-10 12:00:55 +02:00
|
|
|
|
((_ name (G_ prefix) colors)
|
2019-04-09 23:44:36 +02:00
|
|
|
|
(define-syntax name
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(syntax-case x ()
|
2019-04-10 11:14:25 +02:00
|
|
|
|
((name location (underscore fmt) args (... ...))
|
2019-04-09 23:44:36 +02:00
|
|
|
|
(and (string? (syntax->datum #'fmt))
|
|
|
|
|
(free-identifier=? #'underscore #'G_))
|
|
|
|
|
#'(begin
|
2019-04-10 12:00:55 +02:00
|
|
|
|
(print-diagnostic-prefix prefix location
|
|
|
|
|
#:colors colors)
|
2019-04-09 23:44:36 +02:00
|
|
|
|
(format (guix-warning-port) (gettext fmt %gettext-domain)
|
2019-04-10 16:12:54 +02:00
|
|
|
|
(highlight-argument fmt args) (... ...))))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
((name location (N-underscore singular plural n)
|
|
|
|
|
args (... ...))
|
2019-04-09 23:44:36 +02:00
|
|
|
|
(and (string? (syntax->datum #'singular))
|
|
|
|
|
(string? (syntax->datum #'plural))
|
|
|
|
|
(free-identifier=? #'N-underscore #'N_))
|
|
|
|
|
#'(begin
|
2019-04-10 12:00:55 +02:00
|
|
|
|
(print-diagnostic-prefix prefix location
|
|
|
|
|
#:colors colors)
|
2019-04-09 23:44:36 +02:00
|
|
|
|
(format (guix-warning-port)
|
|
|
|
|
(ngettext singular plural n %gettext-domain)
|
2019-04-10 16:12:54 +02:00
|
|
|
|
(highlight-argument singular args) (... ...))))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
((name (underscore fmt) args (... ...))
|
|
|
|
|
(free-identifier=? #'underscore #'G_)
|
|
|
|
|
#'(name #f (underscore fmt) args (... ...)))
|
|
|
|
|
((name (N-underscore singular plural n)
|
|
|
|
|
args (... ...))
|
|
|
|
|
(free-identifier=? #'N-underscore #'N_)
|
|
|
|
|
#'(name #f (N-underscore singular plural n)
|
|
|
|
|
args (... ...)))))))))
|
2013-04-22 13:24:16 +02:00
|
|
|
|
|
2019-04-09 23:44:36 +02:00
|
|
|
|
;; XXX: This doesn't work well for right-to-left languages.
|
|
|
|
|
;; TRANSLATORS: The goal is to emit "warning:" followed by a short phrase;
|
|
|
|
|
;; "~a" is a placeholder for that phrase.
|
2019-04-11 16:57:38 +02:00
|
|
|
|
(define-diagnostic warning (G_ "warning: ") %warning-color) ;emit a warning
|
|
|
|
|
(define-diagnostic info (G_ "") %info-color)
|
|
|
|
|
(define-diagnostic report-error (G_ "error: ") %error-color)
|
2013-04-22 13:24:16 +02:00
|
|
|
|
|
|
|
|
|
(define-syntax-rule (leave args ...)
|
|
|
|
|
"Emit an error message and exit."
|
|
|
|
|
(begin
|
|
|
|
|
(report-error args ...)
|
|
|
|
|
(exit 1)))
|
|
|
|
|
|
2019-04-11 16:57:38 +02:00
|
|
|
|
(define %warning-color (color BOLD MAGENTA))
|
|
|
|
|
(define %info-color (color BOLD))
|
|
|
|
|
(define %error-color (color BOLD RED))
|
|
|
|
|
(define %hint-color (color BOLD CYAN))
|
2019-04-10 12:00:55 +02:00
|
|
|
|
|
|
|
|
|
(define* (print-diagnostic-prefix prefix #:optional location
|
2019-04-11 16:57:38 +02:00
|
|
|
|
#:key (colors (color)))
|
2019-04-10 10:26:39 +02:00
|
|
|
|
"Print PREFIX as a diagnostic line prefix."
|
2019-04-10 12:00:55 +02:00
|
|
|
|
(define color?
|
|
|
|
|
(color-output? (guix-warning-port)))
|
|
|
|
|
|
|
|
|
|
(define location-color
|
|
|
|
|
(if color?
|
2019-04-11 16:57:38 +02:00
|
|
|
|
(cut colorize-string <> (color BOLD))
|
2019-04-10 12:00:55 +02:00
|
|
|
|
identity))
|
|
|
|
|
|
|
|
|
|
(define prefix-color
|
|
|
|
|
(if color?
|
|
|
|
|
(lambda (prefix)
|
2019-04-11 16:57:38 +02:00
|
|
|
|
(colorize-string prefix colors))
|
2019-04-10 12:00:55 +02:00
|
|
|
|
identity))
|
|
|
|
|
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(let ((prefix (if (string-null? prefix)
|
|
|
|
|
prefix
|
|
|
|
|
(gettext prefix %gettext-domain))))
|
|
|
|
|
(if location
|
|
|
|
|
(format (guix-warning-port) "~a: ~a"
|
2019-04-10 12:00:55 +02:00
|
|
|
|
(location-color (location->string location))
|
|
|
|
|
(prefix-color prefix))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(format (guix-warning-port) "~:[~*~;guix ~a: ~]~a"
|
2019-04-10 12:00:55 +02:00
|
|
|
|
(program-name) (program-name)
|
|
|
|
|
(prefix-color prefix)))))
|
2019-04-10 10:26:39 +02:00
|
|
|
|
|
2017-11-09 23:31:18 +01:00
|
|
|
|
(define (print-unbound-variable-error port key args default-printer)
|
|
|
|
|
;; Print unbound variable errors more nicely, and in the right language.
|
|
|
|
|
(match args
|
|
|
|
|
((proc message (variable) _ ...)
|
|
|
|
|
;; We can always omit PROC because when it's useful (i.e., different from
|
|
|
|
|
;; "module-lookup"), it gets displayed before.
|
2018-05-04 15:05:05 +02:00
|
|
|
|
(format port (G_ "error: ~a: unbound variable") variable))
|
2017-11-09 23:31:18 +01:00
|
|
|
|
(_
|
|
|
|
|
(default-printer))))
|
|
|
|
|
|
|
|
|
|
(set-exception-printer! 'unbound-variable print-unbound-variable-error)
|
|
|
|
|
|
2015-05-18 13:49:44 +02:00
|
|
|
|
(define (make-user-module modules)
|
|
|
|
|
"Return a new user module with the additional MODULES loaded."
|
|
|
|
|
;; Module in which the machine description file is loaded.
|
|
|
|
|
(let ((module (make-fresh-user-module)))
|
|
|
|
|
(for-each (lambda (iface)
|
|
|
|
|
(module-use! module (resolve-interface iface)))
|
|
|
|
|
modules)
|
|
|
|
|
module))
|
|
|
|
|
|
2018-05-04 12:13:53 +02:00
|
|
|
|
(define (last-frame-with-source stack)
|
|
|
|
|
"Walk stack upwards and return the last frame that has source location
|
|
|
|
|
information, or #f if it could not be found."
|
2015-05-25 18:25:19 +02:00
|
|
|
|
(define (frame-with-source frame)
|
|
|
|
|
;; Walk from FRAME upwards until source location information is found.
|
|
|
|
|
(let loop ((frame frame)
|
|
|
|
|
(previous frame))
|
|
|
|
|
(if (not frame)
|
|
|
|
|
previous
|
|
|
|
|
(if (frame-source frame)
|
|
|
|
|
frame
|
|
|
|
|
(loop (frame-previous frame) frame)))))
|
|
|
|
|
|
2018-05-04 12:13:53 +02:00
|
|
|
|
(let* ((depth (stack-length stack))
|
|
|
|
|
(last (and (> depth 0) (stack-ref stack 0))))
|
|
|
|
|
(frame-with-source (if (> depth 1)
|
|
|
|
|
(stack-ref stack 1) ;skip the 'throw' frame
|
|
|
|
|
last))))
|
|
|
|
|
|
|
|
|
|
(define* (load* file user-module
|
|
|
|
|
#:key (on-error 'nothing-special))
|
|
|
|
|
"Load the user provided Scheme source code FILE."
|
2015-05-25 22:52:41 +02:00
|
|
|
|
(define (error-string frame args)
|
|
|
|
|
(call-with-output-string
|
2018-03-05 10:52:32 +01:00
|
|
|
|
(lambda (port)
|
|
|
|
|
(apply display-error frame port (cdr args)))))
|
2015-05-25 22:52:41 +02:00
|
|
|
|
|
|
|
|
|
(define tag
|
|
|
|
|
(make-prompt-tag "user-code"))
|
|
|
|
|
|
2015-05-18 13:49:44 +02:00
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
2015-05-25 18:25:19 +02:00
|
|
|
|
;; XXX: Force a recompilation to avoid ABI issues.
|
2018-01-15 15:43:53 +01:00
|
|
|
|
;;
|
|
|
|
|
;; In 2.2.3, the bogus answer to <https://bugs.gnu.org/29226> was to
|
|
|
|
|
;; ignore all available .go, not just those from ~/.cache, which in turn
|
|
|
|
|
;; meant that we had to rebuild *everything*. Since this is too costly,
|
2018-03-05 10:52:32 +01:00
|
|
|
|
;; we have to turn off '%fresh-auto-compile' with that version, so to
|
|
|
|
|
;; avoid ABI breakage in the user's config file, we explicitly compile
|
|
|
|
|
;; it (the problem remains if the user's config is spread on several
|
|
|
|
|
;; modules.) See <https://bugs.gnu.org/29881>.
|
2018-03-06 10:47:25 +01:00
|
|
|
|
(unless (string=? (version) "2.2.3")
|
|
|
|
|
(set! %fresh-auto-compile #t))
|
2018-01-15 15:43:53 +01:00
|
|
|
|
|
2015-05-25 18:25:19 +02:00
|
|
|
|
(set! %load-should-auto-compile #t)
|
2015-05-18 13:49:44 +02:00
|
|
|
|
|
|
|
|
|
(save-module-excursion
|
|
|
|
|
(lambda ()
|
|
|
|
|
(set-current-module user-module)
|
|
|
|
|
|
2015-05-25 18:25:19 +02:00
|
|
|
|
;; Hide the "auto-compiling" messages.
|
|
|
|
|
(parameterize ((current-warning-port (%make-void-port "w")))
|
2015-05-25 22:52:41 +02:00
|
|
|
|
(call-with-prompt tag
|
|
|
|
|
(lambda ()
|
2018-03-06 10:47:25 +01:00
|
|
|
|
(when (string=? (version) "2.2.3")
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(compile-file file #:env user-module))
|
|
|
|
|
(const #f))) ;EACCES maybe, let's interpret it
|
|
|
|
|
|
2015-05-25 22:52:41 +02:00
|
|
|
|
;; Give 'load' an absolute file name so that it doesn't try to
|
|
|
|
|
;; search for FILE in %LOAD-PATH. Note: use 'load', not
|
|
|
|
|
;; 'primitive-load', so that FILE is compiled, which then allows us
|
|
|
|
|
;; to provide better error reporting with source line numbers.
|
|
|
|
|
(load (canonicalize-path file)))
|
|
|
|
|
(const #f))))))
|
2015-05-25 18:25:19 +02:00
|
|
|
|
(lambda _
|
|
|
|
|
;; XXX: Errors are reported from the pre-unwind handler below, but
|
|
|
|
|
;; calling 'exit' from there has no effect, so we call it here.
|
|
|
|
|
(exit 1))
|
|
|
|
|
(rec (handle-error . args)
|
|
|
|
|
;; Capture the stack up to this procedure call, excluded, and pass
|
|
|
|
|
;; the faulty stack frame to 'report-load-error'.
|
2015-05-25 22:52:41 +02:00
|
|
|
|
(let* ((stack (make-stack #t handle-error tag))
|
2018-05-04 12:13:53 +02:00
|
|
|
|
(frame (last-frame-with-source stack)))
|
2015-05-25 22:52:41 +02:00
|
|
|
|
|
|
|
|
|
(report-load-error file args frame)
|
|
|
|
|
|
|
|
|
|
(case on-error
|
|
|
|
|
((debug)
|
|
|
|
|
(newline)
|
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 15:57:02 +02:00
|
|
|
|
(display (G_ "entering debugger; type ',bt' for a backtrace\n"))
|
2015-05-25 22:52:41 +02:00
|
|
|
|
(start-repl #:debug (make-debug (stack->vector stack) 0
|
|
|
|
|
(error-string frame args)
|
|
|
|
|
#f)))
|
|
|
|
|
((backtrace)
|
|
|
|
|
(newline (current-error-port))
|
|
|
|
|
(display-backtrace stack (current-error-port)))
|
|
|
|
|
(else
|
|
|
|
|
#t))))))
|
2015-05-25 18:25:19 +02:00
|
|
|
|
|
2017-11-09 23:29:39 +01:00
|
|
|
|
(define (known-variable-definition variable)
|
|
|
|
|
"Search among the currently loaded modules one that defines a variable named
|
|
|
|
|
VARIABLE and return it, or #f if none was found."
|
|
|
|
|
(define (module<? m1 m2)
|
|
|
|
|
(match (module-name m2)
|
|
|
|
|
(('gnu _ ...) #t)
|
|
|
|
|
(('guix _ ...)
|
|
|
|
|
(match (module-name m1)
|
|
|
|
|
(('gnu _ ...) #f)
|
|
|
|
|
(_ #t)))
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
2017-11-24 18:16:43 +01:00
|
|
|
|
(let loop ((modules (list (resolve-module '() #f #f #:ensure #f)))
|
|
|
|
|
(suggestions '())
|
|
|
|
|
(visited (setq)))
|
2017-11-09 23:29:39 +01:00
|
|
|
|
(match modules
|
|
|
|
|
(()
|
|
|
|
|
;; Pick the "best" suggestion.
|
|
|
|
|
(match (sort suggestions module<?)
|
|
|
|
|
(() #f)
|
|
|
|
|
((first _ ...) first)))
|
|
|
|
|
((head tail ...)
|
2017-11-24 18:16:43 +01:00
|
|
|
|
(if (set-contains? visited head)
|
|
|
|
|
(loop tail suggestions visited)
|
|
|
|
|
(let ((visited (set-insert head visited))
|
|
|
|
|
(next (append tail
|
|
|
|
|
(hash-map->list (lambda (name module)
|
|
|
|
|
module)
|
|
|
|
|
(module-submodules head)))))
|
|
|
|
|
(match (module-local-variable head variable)
|
|
|
|
|
(#f (loop next suggestions visited))
|
|
|
|
|
(_
|
|
|
|
|
(match (module-name head)
|
|
|
|
|
(('gnu _ ...) head) ;must be that one
|
|
|
|
|
(_ (loop next (cons head suggestions) visited)))))))))))
|
2017-11-09 23:29:39 +01:00
|
|
|
|
|
2017-11-09 23:27:56 +01:00
|
|
|
|
(define* (display-hint message #:optional (port (current-error-port)))
|
|
|
|
|
"Display MESSAGE, a l10n message possibly containing Texinfo markup, to
|
|
|
|
|
PORT."
|
2019-04-10 12:55:23 +02:00
|
|
|
|
(define colorize
|
|
|
|
|
(if (color-output? port)
|
|
|
|
|
(lambda (str)
|
2019-04-11 16:57:38 +02:00
|
|
|
|
(colorize-string str %hint-color))
|
2019-04-10 12:55:23 +02:00
|
|
|
|
identity))
|
|
|
|
|
|
|
|
|
|
(display (colorize (G_ "hint: ")) port)
|
|
|
|
|
(display
|
|
|
|
|
;; XXX: We should arrange so that the initial indent is wider.
|
|
|
|
|
(parameterize ((%text-width (max 15 (- (terminal-columns) 5))))
|
|
|
|
|
(texi->plain-text message))
|
|
|
|
|
port))
|
2017-11-09 23:27:56 +01:00
|
|
|
|
|
2018-05-04 15:05:05 +02:00
|
|
|
|
(define* (report-unbound-variable-error args #:key frame)
|
|
|
|
|
"Return the given unbound-variable error, where ARGS is the list of 'throw'
|
|
|
|
|
arguments."
|
|
|
|
|
(match args
|
|
|
|
|
((key . args)
|
|
|
|
|
(print-exception (current-error-port) frame key args)))
|
|
|
|
|
(match args
|
|
|
|
|
(('unbound-variable proc message (variable) _ ...)
|
|
|
|
|
(match (known-variable-definition variable)
|
|
|
|
|
(#f
|
|
|
|
|
(display-hint (G_ "Did you forget a @code{use-modules} form?")))
|
|
|
|
|
((? module? module)
|
|
|
|
|
(display-hint (format #f (G_ "Did you forget @code{(use-modules ~a)}?")
|
|
|
|
|
(module-name module))))))))
|
|
|
|
|
|
2015-05-25 18:25:19 +02:00
|
|
|
|
(define* (report-load-error file args #:optional frame)
|
2015-05-25 22:52:41 +02:00
|
|
|
|
"Report the failure to load FILE, a user-provided Scheme file.
|
2015-04-07 22:07:25 +02:00
|
|
|
|
ARGS is the list of arguments received by the 'throw' handler."
|
|
|
|
|
(match args
|
2016-09-20 10:51:39 +02:00
|
|
|
|
(('system-error . rest)
|
2015-04-07 22:07:25 +02:00
|
|
|
|
(let ((err (system-error-errno args)))
|
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 15:57:02 +02:00
|
|
|
|
(report-error (G_ "failed to load '~a': ~a~%") file (strerror err))))
|
2017-10-10 10:22:43 +02:00
|
|
|
|
(('read-error "scm_i_lreadparen" message _ ...)
|
|
|
|
|
;; Guile's missing-paren messages are obscure so we make them more
|
|
|
|
|
;; intelligible here.
|
|
|
|
|
(if (string-suffix? "end of file" message)
|
|
|
|
|
(let ((location (string-drop-right message
|
|
|
|
|
(string-length "end of file"))))
|
|
|
|
|
(format (current-error-port) (G_ "~amissing closing parenthesis~%")
|
|
|
|
|
location))
|
|
|
|
|
(apply throw args)))
|
2015-04-07 22:07:25 +02:00
|
|
|
|
(('syntax-error proc message properties form . rest)
|
|
|
|
|
(let ((loc (source-properties->location properties)))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(report-error loc (G_ "~a~%") message)))
|
2018-05-04 15:05:05 +02:00
|
|
|
|
(('unbound-variable _ ...)
|
|
|
|
|
(report-unbound-variable-error args #:frame frame))
|
2015-05-31 21:54:28 +02:00
|
|
|
|
(('srfi-34 obj)
|
2017-04-15 23:48:34 +02:00
|
|
|
|
(if (message-condition? obj)
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(report-error (and (error-location? obj)
|
|
|
|
|
(error-location obj))
|
|
|
|
|
(G_ "~a~%")
|
|
|
|
|
(gettext (condition-message obj) %gettext-domain))
|
2017-11-08 11:16:25 +01:00
|
|
|
|
(report-error (G_ "exception thrown: ~s~%") obj))
|
|
|
|
|
(when (fix-hint? obj)
|
2017-11-09 23:27:56 +01:00
|
|
|
|
(display-hint (condition-fix-hint obj))))
|
2019-02-11 22:48:24 +01:00
|
|
|
|
((key args ...)
|
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 15:57:02 +02:00
|
|
|
|
(report-error (G_ "failed to load '~a':~%") file)
|
2019-02-11 22:48:24 +01:00
|
|
|
|
(match args
|
|
|
|
|
(((? symbol? proc) (? string? message) (args ...) . rest)
|
|
|
|
|
(display-error frame (current-error-port) proc message
|
|
|
|
|
args rest))
|
|
|
|
|
(_
|
|
|
|
|
;; Some exceptions like 'git-error' do not follow Guile's convention
|
|
|
|
|
;; above and need to be printed with 'print-exception'.
|
|
|
|
|
(print-exception (current-error-port) frame key args))))))
|
2015-04-07 22:07:25 +02:00
|
|
|
|
|
2015-04-07 22:27:45 +02:00
|
|
|
|
(define (warn-about-load-error file args) ;FIXME: factorize with ↑
|
|
|
|
|
"Report the failure to load FILE, a user-provided Scheme file, without
|
|
|
|
|
exiting. ARGS is the list of arguments received by the 'throw' handler."
|
|
|
|
|
(match args
|
2016-09-20 10:51:39 +02:00
|
|
|
|
(('system-error . rest)
|
2015-04-07 22:27:45 +02:00
|
|
|
|
(let ((err (system-error-errno args)))
|
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 15:57:02 +02:00
|
|
|
|
(warning (G_ "failed to load '~a': ~a~%") file (strerror err))))
|
2015-04-07 22:27:45 +02:00
|
|
|
|
(('syntax-error proc message properties form . rest)
|
|
|
|
|
(let ((loc (source-properties->location properties)))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(warning loc (G_ "~a~%") message)))
|
2015-05-31 21:54:28 +02:00
|
|
|
|
(('srfi-34 obj)
|
2017-04-15 23:48:34 +02:00
|
|
|
|
(if (message-condition? obj)
|
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 15:57:02 +02:00
|
|
|
|
(warning (G_ "failed to load '~a': ~a~%")
|
2017-04-15 23:48:34 +02:00
|
|
|
|
file
|
|
|
|
|
(gettext (condition-message obj) %gettext-domain))
|
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 15:57:02 +02:00
|
|
|
|
(warning (G_ "failed to load '~a': exception thrown: ~s~%")
|
2017-04-15 23:48:34 +02:00
|
|
|
|
file obj)))
|
2015-04-07 22:27:45 +02:00
|
|
|
|
((error args ...)
|
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 15:57:02 +02:00
|
|
|
|
(warning (G_ "failed to load '~a':~%") file)
|
2015-04-07 22:27:45 +02:00
|
|
|
|
(apply display-error #f (current-error-port) args))))
|
|
|
|
|
|
2018-05-04 15:05:05 +02:00
|
|
|
|
(define (call-with-unbound-variable-handling thunk)
|
|
|
|
|
(define tag
|
|
|
|
|
(make-prompt-tag "user-code"))
|
|
|
|
|
|
|
|
|
|
(catch 'unbound-variable
|
|
|
|
|
(lambda ()
|
|
|
|
|
(call-with-prompt tag
|
|
|
|
|
thunk
|
|
|
|
|
(const #f)))
|
|
|
|
|
(const #t)
|
|
|
|
|
(rec (handle-error . args)
|
|
|
|
|
(let* ((stack (make-stack #t handle-error tag))
|
|
|
|
|
(frame (and stack (last-frame-with-source stack))))
|
|
|
|
|
(report-unbound-variable-error args #:frame frame)
|
|
|
|
|
(exit 1)))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (with-unbound-variable-handling exp ...)
|
|
|
|
|
"Capture 'unbound-variable' exceptions in the dynamic extent of EXP... and
|
|
|
|
|
report them in a user-friendly way."
|
|
|
|
|
(call-with-unbound-variable-handling (lambda () exp ...)))
|
|
|
|
|
|
2013-04-22 13:24:16 +02:00
|
|
|
|
(define (install-locale)
|
|
|
|
|
"Install the current locale settings."
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda _
|
|
|
|
|
(setlocale LC_ALL ""))
|
|
|
|
|
(lambda args
|
2018-06-27 15:36:03 +02:00
|
|
|
|
(display-hint (G_ "Consider installing the @code{glibc-utf8-locales} or
|
|
|
|
|
@code{glibc-locales} package and defining @code{GUIX_LOCPATH}, along these
|
|
|
|
|
lines:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
guix package -i glibc-utf8-locales
|
|
|
|
|
export GUIX_LOCPATH=\"$HOME/.guix-profile/lib/locale\"
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
See the \"Application Setup\" section in the manual, for more info.\n")))))
|
2013-04-22 13:24:16 +02:00
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
(define (initialize-guix)
|
2013-02-17 15:38:02 +01:00
|
|
|
|
"Perform the usual initialization for stand-alone Guix commands."
|
2017-05-16 14:31:37 +02:00
|
|
|
|
;; By default don't annoy users with deprecation warnings. In practice,
|
|
|
|
|
;; 'define-deprecated' in (ice-9 deprecated) arranges so that those warnings
|
|
|
|
|
;; are emitted at expansion-time only, but there are cases where they could
|
|
|
|
|
;; slip through, for instance when interpreting code.
|
|
|
|
|
(unless (getenv "GUILE_WARN_DEPRECATED")
|
|
|
|
|
(debug-disable 'warn-deprecated))
|
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
(install-locale)
|
2013-10-12 16:37:28 +02:00
|
|
|
|
(textdomain %gettext-domain)
|
2013-07-12 23:01:07 +02:00
|
|
|
|
|
|
|
|
|
;; Ignore SIGPIPE. If the daemon closes the connection, we prefer to be
|
|
|
|
|
;; notified via an EPIPE later.
|
|
|
|
|
(sigaction SIGPIPE SIG_IGN)
|
|
|
|
|
|
2019-01-07 10:57:18 +01:00
|
|
|
|
(setvbuf (current-output-port) 'line)
|
|
|
|
|
(setvbuf (current-error-port) 'line))
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
|
2012-11-03 21:19:43 +01:00
|
|
|
|
(define* (show-version-and-exit #:optional (command (car (command-line))))
|
|
|
|
|
"Display version information for COMMAND and `(exit 0)'."
|
|
|
|
|
(simple-format #t "~a (~a) ~a~%"
|
|
|
|
|
command %guix-package-name %guix-version)
|
2019-01-05 00:06:04 +01:00
|
|
|
|
(format #t "Copyright ~a 2019 ~a"
|
2017-01-02 23:13:46 +01:00
|
|
|
|
;; TRANSLATORS: Translate "(C)" to the copyright symbol
|
|
|
|
|
;; (C-in-a-circle), if this symbol is available in the user's
|
|
|
|
|
;; locale. Otherwise, do not translate "(C)"; leave it as-is. */
|
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 15:57:02 +02:00
|
|
|
|
(G_ "(C)")
|
|
|
|
|
(G_ "the Guix authors\n"))
|
|
|
|
|
(display (G_"\
|
2013-11-03 23:09:30 +01:00
|
|
|
|
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
|
|
|
|
This is free software: you are free to change and redistribute it.
|
|
|
|
|
There is NO WARRANTY, to the extent permitted by law.
|
|
|
|
|
"))
|
2012-11-03 21:19:43 +01:00
|
|
|
|
(exit 0))
|
|
|
|
|
|
2013-01-05 15:55:47 +01:00
|
|
|
|
(define (show-bug-report-information)
|
2016-05-16 17:55:38 +02:00
|
|
|
|
;; TRANSLATORS: The placeholder indicates the bug-reporting address for this
|
|
|
|
|
;; package. Please add another line saying "Report translation bugs to
|
|
|
|
|
;; ...\n" with the address for translation bugs (typically your translation
|
|
|
|
|
;; team's web or email address).
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "
|
2013-01-05 15:55:47 +01:00
|
|
|
|
Report bugs to: ~a.") %guix-bug-report-address)
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "
|
2013-01-05 15:55:47 +01:00
|
|
|
|
~a home page: <~a>") %guix-package-name %guix-home-page-url)
|
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 15:57:02 +02:00
|
|
|
|
(display (G_ "
|
2013-01-05 15:55:47 +01:00
|
|
|
|
General help using GNU software: <http://www.gnu.org/gethelp/>"))
|
|
|
|
|
(newline))
|
|
|
|
|
|
2017-01-13 12:07:10 +01:00
|
|
|
|
(define (augmented-system-error-handler file)
|
|
|
|
|
"Return a 'system-error' handler that mentions FILE in its message."
|
|
|
|
|
(lambda (key proc fmt args errno)
|
|
|
|
|
;; Augment the FMT and ARGS with information about TARGET (this
|
|
|
|
|
;; information is missing as of Guile 2.0.11, making the exception
|
|
|
|
|
;; uninformative.)
|
|
|
|
|
(apply throw key proc "~A: ~S"
|
|
|
|
|
(list (strerror (car errno)) file)
|
|
|
|
|
(list errno))))
|
|
|
|
|
|
2018-12-17 05:12:13 +01:00
|
|
|
|
(define-syntax apply-formals
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
((_ proc (args ...)) (proc args ...))
|
|
|
|
|
((_ proc (arg1 args ... . rest)) (apply proc arg1 args ... rest))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (error-reporting-wrapper proc formals file)
|
2017-01-13 12:07:10 +01:00
|
|
|
|
"Wrap PROC such that its 'system-error' exceptions are augmented to mention
|
|
|
|
|
FILE."
|
|
|
|
|
(let ((real-proc (@ (guile) proc)))
|
2018-12-17 05:12:13 +01:00
|
|
|
|
(lambda formals
|
2017-01-13 12:07:10 +01:00
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
2018-12-17 05:12:13 +01:00
|
|
|
|
(apply-formals real-proc formals))
|
2017-01-13 12:07:10 +01:00
|
|
|
|
(augmented-system-error-handler file)))))
|
|
|
|
|
|
2015-06-10 10:25:16 +02:00
|
|
|
|
(set! symlink
|
|
|
|
|
;; We 'set!' the global binding because (gnu build ...) modules and similar
|
|
|
|
|
;; typically don't use (guix ui).
|
2017-01-13 12:07:10 +01:00
|
|
|
|
(error-reporting-wrapper symlink (source target) target))
|
2015-04-20 22:37:20 +02:00
|
|
|
|
|
2015-05-24 17:22:43 +02:00
|
|
|
|
(set! copy-file
|
|
|
|
|
;; Note: here we use 'set!', not #:replace, because UIs typically use
|
|
|
|
|
;; 'copy-recursively', which doesn't use (guix ui).
|
2017-01-13 12:07:10 +01:00
|
|
|
|
(error-reporting-wrapper copy-file (source target) target))
|
|
|
|
|
|
2017-01-13 12:09:01 +01:00
|
|
|
|
(set! canonicalize-path
|
|
|
|
|
(error-reporting-wrapper canonicalize-path (file) file))
|
|
|
|
|
|
2018-07-03 11:02:54 +02:00
|
|
|
|
(set! delete-file
|
|
|
|
|
(error-reporting-wrapper delete-file (file) file))
|
|
|
|
|
|
2018-12-17 05:12:13 +01:00
|
|
|
|
(set! execlp
|
|
|
|
|
(error-reporting-wrapper execlp (filename . args) filename))
|
2015-05-24 17:22:43 +02:00
|
|
|
|
|
2015-10-28 15:53:17 +01:00
|
|
|
|
(define (make-regexp* regexp . flags)
|
|
|
|
|
"Like 'make-regexp' but error out if REGEXP is invalid, reporting the error
|
|
|
|
|
nicely."
|
|
|
|
|
(catch 'regular-expression-syntax
|
|
|
|
|
(lambda ()
|
|
|
|
|
(apply make-regexp regexp flags))
|
|
|
|
|
(lambda (key proc message . rest)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "'~a' is not a valid regular expression: ~a~%")
|
2015-10-28 15:53:17 +01:00
|
|
|
|
regexp message))))
|
|
|
|
|
|
2013-05-20 18:14:55 +02:00
|
|
|
|
(define (string->number* str)
|
|
|
|
|
"Like `string->number', but error out with an error message on failure."
|
|
|
|
|
(or (string->number str)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "~a: invalid number~%") str)))
|
2013-05-20 18:14:55 +02:00
|
|
|
|
|
2014-04-08 22:01:44 +02:00
|
|
|
|
(define (size->number str)
|
|
|
|
|
"Convert STR, a storage measurement representation such as \"1024\" or
|
|
|
|
|
\"1MiB\", to a number of bytes. Raise an error if STR could not be
|
|
|
|
|
interpreted."
|
|
|
|
|
(define unit-pos
|
|
|
|
|
(string-rindex str char-set:digit))
|
|
|
|
|
|
|
|
|
|
(define unit
|
|
|
|
|
(and unit-pos (substring str (+ 1 unit-pos))))
|
|
|
|
|
|
|
|
|
|
(let* ((numstr (if unit-pos
|
|
|
|
|
(substring str 0 (+ 1 unit-pos))
|
|
|
|
|
str))
|
|
|
|
|
(num (string->number numstr)))
|
|
|
|
|
(unless num
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "invalid number: ~a~%") numstr))
|
2014-04-08 22:01:44 +02:00
|
|
|
|
|
|
|
|
|
((compose inexact->exact round)
|
|
|
|
|
(* num
|
|
|
|
|
(match unit
|
2014-10-03 13:35:14 +02:00
|
|
|
|
((or "KiB" "K" "k") (expt 2 10))
|
|
|
|
|
((or "MiB" "M") (expt 2 20))
|
|
|
|
|
((or "GiB" "G") (expt 2 30))
|
|
|
|
|
((or "TiB" "T") (expt 2 40))
|
|
|
|
|
((or "PiB" "P") (expt 2 50))
|
|
|
|
|
((or "EiB" "E") (expt 2 60))
|
|
|
|
|
((or "ZiB" "Z") (expt 2 70))
|
|
|
|
|
((or "YiB" "Y") (expt 2 80))
|
|
|
|
|
("kB" (expt 10 3))
|
2014-04-08 22:01:44 +02:00
|
|
|
|
("MB" (expt 10 6))
|
|
|
|
|
("GB" (expt 10 9))
|
|
|
|
|
("TB" (expt 10 12))
|
2014-10-03 13:35:14 +02:00
|
|
|
|
("PB" (expt 10 15))
|
|
|
|
|
("EB" (expt 10 18))
|
|
|
|
|
("ZB" (expt 10 21))
|
|
|
|
|
("YB" (expt 10 24))
|
2014-04-08 22:01:44 +02:00
|
|
|
|
("" 1)
|
2016-09-20 10:51:39 +02:00
|
|
|
|
(x
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "unknown unit: ~a~%") unit)))))))
|
2014-04-08 22:01:44 +02:00
|
|
|
|
|
2017-12-10 23:41:21 +01:00
|
|
|
|
(define (display-collision-resolution-hint collision)
|
|
|
|
|
"Display hints on how to resolve COLLISION, a &profile-collistion-error."
|
|
|
|
|
(define (top-most-entry entry)
|
|
|
|
|
(let loop ((entry entry))
|
|
|
|
|
(match (force (manifest-entry-parent entry))
|
|
|
|
|
(#f entry)
|
|
|
|
|
(parent (loop parent)))))
|
|
|
|
|
|
|
|
|
|
(let* ((first (profile-collision-error-entry collision))
|
|
|
|
|
(second (profile-collision-error-conflict collision))
|
|
|
|
|
(name1 (manifest-entry-name (top-most-entry first)))
|
|
|
|
|
(name2 (manifest-entry-name (top-most-entry second))))
|
|
|
|
|
(if (string=? name1 name2)
|
|
|
|
|
(display-hint (format #f (G_ "You cannot have two different versions
|
|
|
|
|
or variants of @code{~a} in the same profile.")
|
|
|
|
|
name1))
|
|
|
|
|
(display-hint (format #f (G_ "Try upgrading both @code{~a} and @code{~a},
|
|
|
|
|
or remove one of them from the profile.")
|
|
|
|
|
name1 name2)))))
|
|
|
|
|
|
2012-11-01 00:50:01 +01:00
|
|
|
|
(define (call-with-error-handling thunk)
|
|
|
|
|
"Call THUNK within a user-friendly error handler."
|
2016-03-09 23:37:12 +01:00
|
|
|
|
(define (port-filename* port)
|
|
|
|
|
;; 'port-filename' returns #f for non-file ports, but it raises an
|
|
|
|
|
;; exception for file ports that are closed. Work around that.
|
|
|
|
|
(and (not (port-closed? port))
|
|
|
|
|
(port-filename port)))
|
|
|
|
|
|
2012-11-01 00:50:01 +01:00
|
|
|
|
(guard (c ((package-input-error? c)
|
|
|
|
|
(let* ((package (package-error-package c))
|
|
|
|
|
(input (package-error-invalid-input c))
|
|
|
|
|
(location (package-location package))
|
|
|
|
|
(file (location-file location))
|
|
|
|
|
(line (location-line location))
|
|
|
|
|
(column (location-column location)))
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "~a:~a:~a: package `~a' has an invalid input: ~s~%")
|
2012-11-01 00:50:01 +01:00
|
|
|
|
file line column
|
|
|
|
|
(package-full-name package) input)))
|
2013-05-27 23:41:35 +02:00
|
|
|
|
((package-cross-build-system-error? c)
|
|
|
|
|
(let* ((package (package-error-package c))
|
|
|
|
|
(loc (package-location package))
|
|
|
|
|
(system (package-build-system package)))
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "~a: ~a: build system `~a' does not support cross builds~%")
|
2013-05-27 23:41:35 +02:00
|
|
|
|
(location->string loc)
|
|
|
|
|
(package-full-name package)
|
|
|
|
|
(build-system-name system))))
|
2017-04-03 23:52:19 +02:00
|
|
|
|
((gexp-input-error? c)
|
|
|
|
|
(let ((input (package-error-invalid-input c)))
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "~s: invalid G-expression input~%")
|
2017-04-03 23:52:19 +02:00
|
|
|
|
(gexp-error-invalid-input c))))
|
2014-10-08 15:29:01 +02:00
|
|
|
|
((profile-not-found-error? c)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "profile '~a' does not exist~%")
|
2014-10-08 15:29:01 +02:00
|
|
|
|
(profile-error-profile c)))
|
|
|
|
|
((missing-generation-error? c)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "generation ~a of profile '~a' does not exist~%")
|
2014-10-08 15:29:01 +02:00
|
|
|
|
(missing-generation-error-generation c)
|
|
|
|
|
(profile-error-profile c)))
|
2019-02-07 14:54:43 +01:00
|
|
|
|
((unmatched-pattern-error? c)
|
|
|
|
|
(let ((pattern (unmatched-pattern-error-pattern c)))
|
|
|
|
|
(leave (G_ "package '~a~@[@~a~]~@[:~a~]' not found in profile~%")
|
|
|
|
|
(manifest-pattern-name pattern)
|
|
|
|
|
(manifest-pattern-version pattern)
|
|
|
|
|
(match (manifest-pattern-output pattern)
|
|
|
|
|
("out" #f)
|
|
|
|
|
(output output)))))
|
2017-06-07 09:51:55 +02:00
|
|
|
|
((profile-collision-error? c)
|
|
|
|
|
(let ((entry (profile-collision-error-entry c))
|
|
|
|
|
(conflict (profile-collision-error-conflict c)))
|
|
|
|
|
(define (report-parent-entries entry)
|
|
|
|
|
(let ((parent (force (manifest-entry-parent entry))))
|
|
|
|
|
(when (manifest-entry? parent)
|
|
|
|
|
(report-error (G_ " ... propagated from ~a@~a~%")
|
|
|
|
|
(manifest-entry-name parent)
|
|
|
|
|
(manifest-entry-version parent))
|
|
|
|
|
(report-parent-entries parent))))
|
|
|
|
|
|
2017-11-28 10:18:40 +01:00
|
|
|
|
(define (manifest-entry-output* entry)
|
|
|
|
|
(match (manifest-entry-output entry)
|
|
|
|
|
("out" "")
|
|
|
|
|
(output (string-append ":" output))))
|
|
|
|
|
|
2017-12-03 23:17:26 +01:00
|
|
|
|
(report-error (G_ "profile contains conflicting entries for ~a~a~%")
|
2017-06-07 09:51:55 +02:00
|
|
|
|
(manifest-entry-name entry)
|
2017-12-03 23:17:26 +01:00
|
|
|
|
(manifest-entry-output* entry))
|
2017-11-28 10:18:40 +01:00
|
|
|
|
(report-error (G_ " first entry: ~a@~a~a ~a~%")
|
2017-06-07 09:51:55 +02:00
|
|
|
|
(manifest-entry-name entry)
|
|
|
|
|
(manifest-entry-version entry)
|
2017-11-28 10:18:40 +01:00
|
|
|
|
(manifest-entry-output* entry)
|
2017-06-07 09:51:55 +02:00
|
|
|
|
(manifest-entry-item entry))
|
|
|
|
|
(report-parent-entries entry)
|
2017-11-28 10:18:40 +01:00
|
|
|
|
(report-error (G_ " second entry: ~a@~a~a ~a~%")
|
2017-06-07 09:51:55 +02:00
|
|
|
|
(manifest-entry-name conflict)
|
|
|
|
|
(manifest-entry-version conflict)
|
2017-11-28 10:18:40 +01:00
|
|
|
|
(manifest-entry-output* conflict)
|
2017-06-07 09:51:55 +02:00
|
|
|
|
(manifest-entry-item conflict))
|
|
|
|
|
(report-parent-entries conflict)
|
2017-12-10 23:41:21 +01:00
|
|
|
|
(display-collision-resolution-hint c)
|
2017-06-07 09:51:55 +02:00
|
|
|
|
(exit 1)))
|
2015-02-08 18:30:20 +01:00
|
|
|
|
((nar-error? c)
|
|
|
|
|
(let ((file (nar-error-file c))
|
|
|
|
|
(port (nar-error-port c)))
|
|
|
|
|
(if 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 15:57:02 +02:00
|
|
|
|
(leave (G_ "corrupt input while restoring '~a' from ~s~%")
|
2016-03-09 23:37:12 +01:00
|
|
|
|
file (or (port-filename* port) port))
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "corrupt input while restoring archive from ~s~%")
|
2016-03-09 23:37:12 +01:00
|
|
|
|
(or (port-filename* port) port)))))
|
store: Rename '&nix-error' to '&store-error'.
* guix/store.scm (&nix-error): Rename to...
(&store-error): ... this, and adjust users.
(&nix-connection-error): Rename to...
(&store-connection-error): ... this, and adjust users.
(&nix-protocol-error): Rename to...
(&store-protocol-error): ... this, adjust users.
(&nix-error, &nix-connection-error, &nix-protocol-error): Define these
condition types and their getters as deprecrated aliases.
* build-aux/run-system-tests.scm, guix/derivations.scm,
guix/grafts.scm, guix/scripts/challenge.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/offload.scm, guix/serialization.scm,
guix/ssh.scm, guix/tests.scm, guix/ui.scm,
tests/derivations.scm, tests/gexp.scm, tests/guix-daemon.sh,
tests/packages.scm, tests/store.scm, doc/guix.texi: Adjust to use the
new names.
2019-01-21 17:41:11 +01:00
|
|
|
|
((store-connection-error? c)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "failed to connect to `~a': ~a~%")
|
store: Rename '&nix-error' to '&store-error'.
* guix/store.scm (&nix-error): Rename to...
(&store-error): ... this, and adjust users.
(&nix-connection-error): Rename to...
(&store-connection-error): ... this, and adjust users.
(&nix-protocol-error): Rename to...
(&store-protocol-error): ... this, adjust users.
(&nix-error, &nix-connection-error, &nix-protocol-error): Define these
condition types and their getters as deprecrated aliases.
* build-aux/run-system-tests.scm, guix/derivations.scm,
guix/grafts.scm, guix/scripts/challenge.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/offload.scm, guix/serialization.scm,
guix/ssh.scm, guix/tests.scm, guix/ui.scm,
tests/derivations.scm, tests/gexp.scm, tests/guix-daemon.sh,
tests/packages.scm, tests/store.scm, doc/guix.texi: Adjust to use the
new names.
2019-01-21 17:41:11 +01:00
|
|
|
|
(store-connection-error-file c)
|
|
|
|
|
(strerror (store-connection-error-code c))))
|
|
|
|
|
((store-protocol-error? c)
|
2012-11-01 00:50:01 +01:00
|
|
|
|
;; FIXME: Server-provided error messages aren't i18n'd.
|
2019-01-23 22:30:05 +01:00
|
|
|
|
(leave (G_ "~a~%")
|
store: Rename '&nix-error' to '&store-error'.
* guix/store.scm (&nix-error): Rename to...
(&store-error): ... this, and adjust users.
(&nix-connection-error): Rename to...
(&store-connection-error): ... this, and adjust users.
(&nix-protocol-error): Rename to...
(&store-protocol-error): ... this, adjust users.
(&nix-error, &nix-connection-error, &nix-protocol-error): Define these
condition types and their getters as deprecrated aliases.
* build-aux/run-system-tests.scm, guix/derivations.scm,
guix/grafts.scm, guix/scripts/challenge.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/offload.scm, guix/serialization.scm,
guix/ssh.scm, guix/tests.scm, guix/ui.scm,
tests/derivations.scm, tests/gexp.scm, tests/guix-daemon.sh,
tests/packages.scm, tests/store.scm, doc/guix.texi: Adjust to use the
new names.
2019-01-21 17:41:11 +01:00
|
|
|
|
(store-protocol-error-message c)))
|
2015-01-24 22:50:40 +01:00
|
|
|
|
((derivation-missing-output-error? c)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "reference to invalid output '~a' of derivation '~a'~%")
|
2015-01-24 22:50:40 +01:00
|
|
|
|
(derivation-missing-output c)
|
|
|
|
|
(derivation-file-name (derivation-error-derivation c))))
|
2016-03-22 15:00:53 +01:00
|
|
|
|
((file-search-error? c)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "file '~a' could not be found in these \
|
2016-03-22 15:00:53 +01:00
|
|
|
|
directories:~{ ~a~}~%")
|
|
|
|
|
(file-search-error-file-name c)
|
|
|
|
|
(file-search-error-search-path c)))
|
2018-03-16 23:29:31 +01:00
|
|
|
|
((invoke-error? c)
|
|
|
|
|
(leave (G_ "program exited\
|
|
|
|
|
~@[ with non-zero exit status ~a~]\
|
|
|
|
|
~@[ terminated by signal ~a~]\
|
|
|
|
|
~@[ stopped by signal ~a~]: ~s~%")
|
|
|
|
|
(invoke-error-exit-status c)
|
|
|
|
|
(invoke-error-term-signal c)
|
|
|
|
|
(invoke-error-stop-signal c)
|
|
|
|
|
(cons (invoke-error-program c)
|
|
|
|
|
(invoke-error-arguments c))))
|
2017-11-08 11:16:25 +01:00
|
|
|
|
((and (error-location? c) (message-condition? c))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(report-error (error-location c) (G_ "~a~%")
|
|
|
|
|
(gettext (condition-message c) %gettext-domain))
|
2018-03-07 10:52:24 +01:00
|
|
|
|
(when (fix-hint? c)
|
|
|
|
|
(display-hint (condition-fix-hint c)))
|
2017-12-18 14:55:26 +01:00
|
|
|
|
(exit 1))
|
2018-01-07 22:07:53 +01:00
|
|
|
|
((and (message-condition? c) (fix-hint? c))
|
2019-04-10 11:14:25 +02:00
|
|
|
|
(report-error (G_ "~a~%")
|
|
|
|
|
(gettext (condition-message c) %gettext-domain))
|
2018-01-07 22:07:53 +01:00
|
|
|
|
(display-hint (condition-fix-hint c))
|
|
|
|
|
(exit 1))
|
2014-02-21 17:45:04 +01:00
|
|
|
|
((message-condition? c)
|
|
|
|
|
;; Normally '&message' error conditions have an i18n'd message.
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "~a~%")
|
2014-10-09 23:50:16 +02:00
|
|
|
|
(gettext (condition-message c) %gettext-domain))))
|
2013-07-12 23:01:07 +02:00
|
|
|
|
;; Catch EPIPE and the likes.
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
thunk
|
2014-04-04 20:37:27 +02:00
|
|
|
|
(lambda (key proc format-string format-args . rest)
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "~a: ~a~%") proc
|
2014-04-04 20:37:27 +02:00
|
|
|
|
(apply format #f format-string format-args))))))
|
2012-11-01 00:50:01 +01:00
|
|
|
|
|
2015-07-15 18:01:05 +02:00
|
|
|
|
(define-syntax-rule (leave-on-EPIPE exp ...)
|
|
|
|
|
"Run EXP... in a context when EPIPE errors are caught and lead to 'exit'
|
|
|
|
|
with successful exit code. This is useful when writing to the standard output
|
|
|
|
|
may lead to EPIPE, because the standard output is piped through 'head' or
|
|
|
|
|
similar."
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
exp ...)
|
|
|
|
|
(lambda args
|
|
|
|
|
;; We really have to exit this brutally, otherwise Guile eventually
|
|
|
|
|
;; attempts to flush all the ports, leading to an uncaught EPIPE down
|
|
|
|
|
;; the path.
|
|
|
|
|
(if (= EPIPE (system-error-errno args))
|
|
|
|
|
(primitive-_exit 0)
|
|
|
|
|
(apply throw args)))))
|
|
|
|
|
|
2014-06-14 22:37:24 +02:00
|
|
|
|
(define %guix-user-module
|
|
|
|
|
;; Module in which user expressions are evaluated.
|
2014-06-14 23:23:56 +02:00
|
|
|
|
;; Compute lazily to avoid circularity with (guix gexp).
|
|
|
|
|
(delay
|
|
|
|
|
(let ((module (make-module)))
|
|
|
|
|
(beautify-user-module! module)
|
|
|
|
|
;; Use (guix gexp) so that one can use #~ & co.
|
|
|
|
|
(module-use! module (resolve-interface '(guix gexp)))
|
|
|
|
|
module)))
|
2014-06-14 22:37:24 +02:00
|
|
|
|
|
2013-11-18 23:08:20 +01:00
|
|
|
|
(define (read/eval str)
|
|
|
|
|
"Read and evaluate STR, raising an error if something goes wrong."
|
2013-03-01 21:55:42 +01:00
|
|
|
|
(let ((exp (catch #t
|
|
|
|
|
(lambda ()
|
|
|
|
|
(call-with-input-string str read))
|
|
|
|
|
(lambda args
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "failed to read expression ~s: ~s~%")
|
2013-03-01 21:55:42 +01:00
|
|
|
|
str args)))))
|
2013-11-18 23:08:20 +01:00
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
2014-06-14 23:23:56 +02:00
|
|
|
|
(eval exp (force %guix-user-module)))
|
2013-11-18 23:08:20 +01:00
|
|
|
|
(lambda args
|
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 15:57:02 +02:00
|
|
|
|
(report-error (G_ "failed to evaluate expression '~a':~%") exp)
|
2015-05-26 22:38:17 +02:00
|
|
|
|
(match args
|
|
|
|
|
(('syntax-error proc message properties form . rest)
|
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 15:57:02 +02:00
|
|
|
|
(report-error (G_ "syntax error: ~a~%") message))
|
2015-05-31 21:54:28 +02:00
|
|
|
|
(('srfi-34 obj)
|
2017-04-15 23:48:34 +02:00
|
|
|
|
(if (message-condition? obj)
|
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 15:57:02 +02:00
|
|
|
|
(report-error (G_ "~a~%")
|
2017-04-15 23:48:34 +02:00
|
|
|
|
(gettext (condition-message obj)
|
|
|
|
|
%gettext-domain))
|
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 15:57:02 +02:00
|
|
|
|
(report-error (G_ "exception thrown: ~s~%") obj)))
|
2015-05-26 22:38:17 +02:00
|
|
|
|
((error args ...)
|
|
|
|
|
(apply display-error #f (current-error-port) args))
|
|
|
|
|
(what? #f))
|
|
|
|
|
(exit 1)))))
|
2013-11-18 23:08:20 +01:00
|
|
|
|
|
|
|
|
|
(define (read/eval-package-expression str)
|
|
|
|
|
"Read and evaluate STR and return the package it refers to, or exit an
|
|
|
|
|
error."
|
|
|
|
|
(match (read/eval str)
|
|
|
|
|
((? package? p) p)
|
2016-09-20 10:51:39 +02:00
|
|
|
|
(x
|
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 15:57:02 +02:00
|
|
|
|
(leave (G_ "expression ~s does not evaluate to a package~%")
|
2013-11-18 23:08:20 +01:00
|
|
|
|
str))))
|
2013-03-01 21:55:42 +01:00
|
|
|
|
|
2015-07-23 15:08:39 +02:00
|
|
|
|
(define (show-derivation-outputs derivation)
|
|
|
|
|
"Show the output file names of DERIVATION."
|
|
|
|
|
(format #t "~{~a~%~}"
|
|
|
|
|
(map (match-lambda
|
|
|
|
|
((out-name . out)
|
|
|
|
|
(derivation->output-path derivation out-name)))
|
|
|
|
|
(derivation-outputs derivation))))
|
|
|
|
|
|
2018-07-02 23:51:20 +02:00
|
|
|
|
(define* (check-available-space need
|
|
|
|
|
#:optional (directory (%store-prefix)))
|
|
|
|
|
"Make sure at least NEED bytes are available in DIRECTORY. Otherwise emit a
|
2017-05-31 15:26:21 +02:00
|
|
|
|
warning."
|
|
|
|
|
(let ((free (catch 'system-error
|
|
|
|
|
(lambda ()
|
2018-07-02 23:51:20 +02:00
|
|
|
|
(free-disk-space directory))
|
2017-05-31 15:26:21 +02:00
|
|
|
|
(const #f))))
|
|
|
|
|
(when (and free (>= need free))
|
|
|
|
|
(warning (G_ "at least ~,1h MB needed but only ~,1h MB available in ~a~%")
|
2018-07-02 23:51:20 +02:00
|
|
|
|
(/ need 1e6) (/ free 1e6) directory))))
|
2017-05-31 15:26:21 +02:00
|
|
|
|
|
2018-11-26 22:31:09 +01:00
|
|
|
|
(define (graft-derivation? drv)
|
|
|
|
|
"Return true if DRV is definitely a graft derivation, false otherwise."
|
|
|
|
|
(match (assq-ref (derivation-properties drv) 'type)
|
|
|
|
|
('graft #t)
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
2018-12-19 14:36:29 +01:00
|
|
|
|
(define (profile-hook-derivation? drv)
|
|
|
|
|
"Return true if DRV is definitely a profile hook derivation, false otherwise."
|
|
|
|
|
(match (assq-ref (derivation-properties drv) 'type)
|
|
|
|
|
('profile-hook #t)
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(define* (show-what-to-build store drv
|
2015-12-09 10:30:03 +01:00
|
|
|
|
#:key dry-run? (use-substitutes? #t)
|
|
|
|
|
(mode (build-mode normal)))
|
2013-02-20 23:41:24 +01:00
|
|
|
|
"Show what will or would (depending on DRY-RUN?) be built in realizing the
|
2015-12-09 10:30:03 +01:00
|
|
|
|
derivations listed in DRV using MODE, a 'build-mode' value. Return #t if
|
|
|
|
|
there's something to build, #f otherwise. When USE-SUBSTITUTES?, check and
|
|
|
|
|
report what is prerequisites are available for download."
|
2017-05-31 11:06:42 +02:00
|
|
|
|
(define substitutable-info
|
2015-01-10 00:39:59 +01:00
|
|
|
|
;; Call 'substitutation-oracle' upfront so we don't end up launching the
|
|
|
|
|
;; substituter many times. This makes a big difference, especially when
|
|
|
|
|
;; DRV is a long list as is the case with 'guix environment'.
|
|
|
|
|
(if use-substitutes?
|
2015-12-09 10:30:03 +01:00
|
|
|
|
(substitution-oracle store drv #:mode mode)
|
2015-01-10 00:39:59 +01:00
|
|
|
|
(const #f)))
|
|
|
|
|
|
2014-05-19 23:08:43 +02:00
|
|
|
|
(define (built-or-substitutable? drv)
|
2015-01-24 22:50:40 +01:00
|
|
|
|
(or (null? (derivation-outputs drv))
|
|
|
|
|
(let ((out (derivation->output-path drv))) ;XXX: assume "out" exists
|
2014-05-19 23:08:43 +02:00
|
|
|
|
(or (valid-path? store out)
|
2017-05-31 11:06:42 +02:00
|
|
|
|
(substitutable-info out)))))
|
2014-05-19 23:08:43 +02:00
|
|
|
|
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(let*-values (((build download)
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 17:01:40 +02:00
|
|
|
|
(fold2 (lambda (drv build download)
|
|
|
|
|
(let-values (((b d)
|
|
|
|
|
(derivation-prerequisites-to-build
|
|
|
|
|
store drv
|
2015-12-09 10:30:03 +01:00
|
|
|
|
#:mode mode
|
2017-05-31 11:06:42 +02:00
|
|
|
|
#:substitutable-info
|
|
|
|
|
substitutable-info)))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 17:01:40 +02:00
|
|
|
|
(values (append b build)
|
|
|
|
|
(append d download))))
|
2013-04-17 00:06:59 +02:00
|
|
|
|
'() '()
|
|
|
|
|
drv))
|
|
|
|
|
((build) ; add the DRV themselves
|
|
|
|
|
(delete-duplicates
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 17:01:40 +02:00
|
|
|
|
(append (map derivation-file-name
|
2014-05-19 23:08:43 +02:00
|
|
|
|
(remove built-or-substitutable? drv))
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(map derivation-input-path build))))
|
|
|
|
|
((download) ; add the references of DOWNLOAD
|
2013-07-01 00:29:22 +02:00
|
|
|
|
(if use-substitutes?
|
|
|
|
|
(delete-duplicates
|
|
|
|
|
(append download
|
2017-05-31 11:06:42 +02:00
|
|
|
|
(filter-map (lambda (item)
|
|
|
|
|
(if (valid-path? store item)
|
|
|
|
|
#f
|
|
|
|
|
(substitutable-info item)))
|
|
|
|
|
(append-map
|
|
|
|
|
substitutable-references
|
|
|
|
|
download))))
|
2018-11-26 22:31:09 +01:00
|
|
|
|
download))
|
2018-12-19 14:36:29 +01:00
|
|
|
|
((graft hook build)
|
|
|
|
|
(match (fold (lambda (file acc)
|
|
|
|
|
(let ((drv (read-derivation-from-file file)))
|
|
|
|
|
(match acc
|
|
|
|
|
((#:graft graft #:hook hook #:build build)
|
|
|
|
|
(cond
|
|
|
|
|
((graft-derivation? drv)
|
|
|
|
|
`(#:graft ,(cons file graft)
|
|
|
|
|
#:hook ,hook
|
|
|
|
|
#:build ,build))
|
|
|
|
|
((profile-hook-derivation? drv)
|
|
|
|
|
`(#:graft ,graft
|
|
|
|
|
#:hook ,(cons file hook)
|
|
|
|
|
#:build ,build))
|
|
|
|
|
(else
|
|
|
|
|
`(#:graft ,graft
|
|
|
|
|
#:hook ,hook
|
|
|
|
|
#:build ,(cons file build))))))))
|
|
|
|
|
'(#:graft () #:hook () #:build ())
|
|
|
|
|
build)
|
|
|
|
|
((#:graft graft #:hook hook #:build build)
|
|
|
|
|
(values graft hook build)))))
|
2017-05-31 15:26:21 +02:00
|
|
|
|
(define installed-size
|
|
|
|
|
(reduce + 0 (map substitutable-nar-size download)))
|
|
|
|
|
|
2017-05-31 15:06:28 +02:00
|
|
|
|
(define download-size
|
|
|
|
|
(/ (reduce + 0 (map substitutable-download-size download))
|
|
|
|
|
1e6))
|
|
|
|
|
|
|
|
|
|
(define display-download-size?
|
|
|
|
|
;; Sometimes narinfos lack information about the download size. Only
|
|
|
|
|
;; display when we have information for all of DOWNLOAD.
|
|
|
|
|
(not (any (compose zero? substitutable-download-size) download)))
|
|
|
|
|
|
2013-02-20 23:41:24 +01:00
|
|
|
|
(if dry-run?
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(begin
|
|
|
|
|
(format (current-error-port)
|
2013-05-07 13:28:11 +02:00
|
|
|
|
(N_ "~:[The following derivation would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following derivations would be built:~%~{ ~a~%~}~;~]"
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(length build))
|
|
|
|
|
(null? build) build)
|
2017-05-31 15:06:28 +02:00
|
|
|
|
(if display-download-size?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
;; TRANSLATORS: "MB" is for "megabyte"; it should be
|
|
|
|
|
;; translated to the corresponding abbreviation.
|
|
|
|
|
(G_ "~:[~,1h MB would be downloaded:~%~{ ~a~%~}~;~]")
|
|
|
|
|
(null? download)
|
|
|
|
|
download-size
|
|
|
|
|
(map substitutable-path download))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following files would be downloaded:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length download))
|
|
|
|
|
(null? download)
|
2018-11-26 22:31:09 +01:00
|
|
|
|
(map substitutable-path download)))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[The following graft would be made:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following grafts would be made:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length graft))
|
2018-12-19 14:36:29 +01:00
|
|
|
|
(null? graft) graft)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[The following profile hook would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following profile hooks would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length hook))
|
|
|
|
|
(null? hook) hook))
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(begin
|
|
|
|
|
(format (current-error-port)
|
2013-05-07 13:28:11 +02:00
|
|
|
|
(N_ "~:[The following derivation will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following derivations will be built:~%~{ ~a~%~}~;~]"
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(length build))
|
|
|
|
|
(null? build) build)
|
2017-05-31 15:06:28 +02:00
|
|
|
|
(if display-download-size?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
;; TRANSLATORS: "MB" is for "megabyte"; it should be
|
|
|
|
|
;; translated to the corresponding abbreviation.
|
|
|
|
|
(G_ "~:[~,1h MB will be downloaded:~%~{ ~a~%~}~;~]")
|
|
|
|
|
(null? download)
|
|
|
|
|
download-size
|
|
|
|
|
(map substitutable-path download))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following files will be downloaded:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length download))
|
|
|
|
|
(null? download)
|
2018-11-26 22:31:09 +01:00
|
|
|
|
(map substitutable-path download)))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[The following graft will be made:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following grafts will be made:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length graft))
|
2018-12-19 14:36:29 +01:00
|
|
|
|
(null? graft) graft)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[The following profile hook will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following profile hooks will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length hook))
|
|
|
|
|
(null? hook) hook)))
|
2017-05-31 15:26:21 +02:00
|
|
|
|
|
|
|
|
|
(check-available-space installed-size)
|
|
|
|
|
|
2013-04-17 00:06:59 +02:00
|
|
|
|
(pair? build)))
|
2013-02-20 23:41:24 +01:00
|
|
|
|
|
2015-05-21 00:42:35 +02:00
|
|
|
|
(define show-what-to-build*
|
|
|
|
|
(store-lift show-what-to-build))
|
|
|
|
|
|
2014-10-08 15:15:49 +02:00
|
|
|
|
(define (right-arrow port)
|
|
|
|
|
"Return either a string containing the 'RIGHT ARROW' character, or an ASCII
|
|
|
|
|
replacement if PORT is not Unicode-capable."
|
2017-03-08 22:21:31 +01:00
|
|
|
|
(let ((encoding (port-encoding port))
|
|
|
|
|
(arrow "→"))
|
|
|
|
|
(catch 'encoding-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(call-with-output-string
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(set-port-encoding! port encoding)
|
|
|
|
|
(set-port-conversion-strategy! port 'error)
|
|
|
|
|
(display arrow port))))
|
|
|
|
|
(lambda (key . args)
|
|
|
|
|
"->"))))
|
2014-10-08 15:15:49 +02:00
|
|
|
|
|
|
|
|
|
(define* (show-manifest-transaction store manifest transaction
|
|
|
|
|
#:key dry-run?)
|
|
|
|
|
"Display what will/would be installed/removed from MANIFEST by TRANSACTION."
|
|
|
|
|
(define (package-strings name version output item)
|
|
|
|
|
(map (lambda (name version output item)
|
|
|
|
|
(format #f " ~a~:[:~a~;~*~]\t~a\t~a"
|
|
|
|
|
name
|
|
|
|
|
(equal? output "out") output version
|
|
|
|
|
(if (package? item)
|
|
|
|
|
(package-output store item output)
|
|
|
|
|
item)))
|
|
|
|
|
name version output item))
|
|
|
|
|
|
|
|
|
|
(define → ;an arrow that can be represented on stderr
|
|
|
|
|
(right-arrow (current-error-port)))
|
|
|
|
|
|
|
|
|
|
(define (upgrade-string name old-version new-version output item)
|
|
|
|
|
(format #f " ~a~:[:~a~;~*~]\t~a ~a ~a\t~a"
|
|
|
|
|
name (equal? output "out") output
|
|
|
|
|
old-version → new-version
|
|
|
|
|
(if (package? item)
|
|
|
|
|
(package-output store item output)
|
|
|
|
|
item)))
|
|
|
|
|
|
2015-02-08 18:52:00 +01:00
|
|
|
|
(let-values (((remove install upgrade downgrade)
|
2014-10-08 15:15:49 +02:00
|
|
|
|
(manifest-transaction-effects manifest transaction)))
|
|
|
|
|
(match remove
|
|
|
|
|
((($ <manifest-entry> name version output item) ..1)
|
|
|
|
|
(let ((len (length name))
|
|
|
|
|
(remove (package-strings name version output item)))
|
|
|
|
|
(if dry-run?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package would be removed:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages would be removed:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
remove)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package will be removed:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages will be removed:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
remove))))
|
2017-03-08 21:36:54 +01:00
|
|
|
|
(x #f))
|
2015-02-08 18:52:00 +01:00
|
|
|
|
(match downgrade
|
|
|
|
|
(((($ <manifest-entry> name old-version)
|
|
|
|
|
. ($ <manifest-entry> _ new-version output item)) ..1)
|
|
|
|
|
(let ((len (length name))
|
|
|
|
|
(downgrade (map upgrade-string
|
|
|
|
|
name old-version new-version output item)))
|
|
|
|
|
(if dry-run?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package would be downgraded:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages would be downgraded:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
downgrade)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package will be downgraded:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages will be downgraded:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
downgrade))))
|
2017-03-08 21:36:54 +01:00
|
|
|
|
(x #f))
|
2014-10-08 15:15:49 +02:00
|
|
|
|
(match upgrade
|
|
|
|
|
(((($ <manifest-entry> name old-version)
|
|
|
|
|
. ($ <manifest-entry> _ new-version output item)) ..1)
|
|
|
|
|
(let ((len (length name))
|
|
|
|
|
(upgrade (map upgrade-string
|
|
|
|
|
name old-version new-version output item)))
|
|
|
|
|
(if dry-run?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package would be upgraded:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages would be upgraded:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
upgrade)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package will be upgraded:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages will be upgraded:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
upgrade))))
|
2017-03-08 21:36:54 +01:00
|
|
|
|
(x #f))
|
2014-10-08 15:15:49 +02:00
|
|
|
|
(match install
|
|
|
|
|
((($ <manifest-entry> name version output item _) ..1)
|
|
|
|
|
(let ((len (length name))
|
|
|
|
|
(install (package-strings name version output item)))
|
|
|
|
|
(if dry-run?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package would be installed:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages would be installed:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
install)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "The following package will be installed:~%~{~a~%~}~%"
|
|
|
|
|
"The following packages will be installed:~%~{~a~%~}~%"
|
|
|
|
|
len)
|
|
|
|
|
install))))
|
2017-03-08 21:36:54 +01:00
|
|
|
|
(x #f))))
|
2014-10-08 15:15:49 +02:00
|
|
|
|
|
2012-11-01 00:50:01 +01:00
|
|
|
|
(define-syntax with-error-handling
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
"Run BODY within a user-friendly error condition handler."
|
|
|
|
|
((_ body ...)
|
|
|
|
|
(call-with-error-handling
|
|
|
|
|
(lambda ()
|
|
|
|
|
body ...)))))
|
|
|
|
|
|
2012-11-19 23:02:59 +01:00
|
|
|
|
(define (location->string loc)
|
|
|
|
|
"Return a human-friendly, GNU-standard representation of LOC."
|
|
|
|
|
(match loc
|
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 15:57:02 +02:00
|
|
|
|
(#f (G_ "<unknown location>"))
|
2012-11-19 23:02:59 +01:00
|
|
|
|
(($ <location> file line column)
|
|
|
|
|
(format #f "~a:~a:~a" file line column))))
|
|
|
|
|
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(define* (fill-paragraph str width #:optional (column 0))
|
|
|
|
|
"Fill STR such that each line contains at most WIDTH characters, assuming
|
|
|
|
|
that the first character is at COLUMN.
|
|
|
|
|
|
|
|
|
|
When STR contains a single line break surrounded by other characters, it is
|
|
|
|
|
converted to a space; sequences of more than one line break are preserved."
|
|
|
|
|
(define (maybe-break chr result)
|
|
|
|
|
(match result
|
|
|
|
|
((column newlines chars)
|
|
|
|
|
(case chr
|
|
|
|
|
((#\newline)
|
|
|
|
|
`(,column ,(+ 1 newlines) ,chars))
|
|
|
|
|
(else
|
2014-07-27 00:53:16 +02:00
|
|
|
|
(let* ((spaces (if (and (pair? chars) (eqv? (car chars) #\.)) 2 1))
|
|
|
|
|
(chars (case newlines
|
|
|
|
|
((0) chars)
|
|
|
|
|
((1)
|
|
|
|
|
(append (make-list spaces #\space) chars))
|
|
|
|
|
(else
|
|
|
|
|
(append (make-list newlines #\newline) chars))))
|
|
|
|
|
(column (case newlines
|
|
|
|
|
((0) column)
|
|
|
|
|
((1) (+ spaces column))
|
|
|
|
|
(else 0))))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(let ((chars (cons chr chars))
|
|
|
|
|
(column (+ 1 column)))
|
|
|
|
|
(if (> column width)
|
|
|
|
|
(let*-values (((before after)
|
|
|
|
|
(break (cut eqv? #\space <>) chars))
|
|
|
|
|
((len)
|
|
|
|
|
(length before)))
|
|
|
|
|
(if (<= len width)
|
|
|
|
|
`(,len
|
|
|
|
|
0
|
|
|
|
|
,(if (null? after)
|
|
|
|
|
before
|
2014-07-27 00:53:16 +02:00
|
|
|
|
(append before
|
|
|
|
|
(cons #\newline
|
|
|
|
|
(drop-while (cut eqv? #\space <>)
|
|
|
|
|
after)))))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
`(,column 0 ,chars))) ; unbreakable
|
|
|
|
|
`(,column 0 ,chars)))))))))
|
|
|
|
|
|
|
|
|
|
(match (string-fold maybe-break
|
|
|
|
|
`(,column 0 ())
|
|
|
|
|
str)
|
2017-03-08 21:36:54 +01:00
|
|
|
|
((column newlines chars)
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(list->string (reverse chars)))))
|
|
|
|
|
|
2013-11-01 16:57:48 +01:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Packages.
|
|
|
|
|
;;;
|
|
|
|
|
|
2015-08-07 00:10:43 +02:00
|
|
|
|
(define %text-width
|
2016-04-14 23:44:18 +02:00
|
|
|
|
(make-parameter (terminal-columns)))
|
2015-08-07 00:10:43 +02:00
|
|
|
|
|
|
|
|
|
(set! (@@ (texinfo plain-text) wrap*)
|
|
|
|
|
;; XXX: Monkey patch this private procedure to let 'package->recutils'
|
|
|
|
|
;; parameterize the fill of description field correctly.
|
|
|
|
|
(lambda strings
|
|
|
|
|
(let ((indent (fluid-ref (@@ (texinfo plain-text) *indent*))))
|
|
|
|
|
(fill-string (string-concatenate strings)
|
|
|
|
|
#:line-width (%text-width) #:initial-indent indent
|
|
|
|
|
#:subsequent-indent indent))))
|
|
|
|
|
|
|
|
|
|
(define (texi->plain-text str)
|
|
|
|
|
"Return a plain-text representation of texinfo fragment STR."
|
2015-09-24 21:56:42 +02:00
|
|
|
|
;; 'texi-fragment->stexi' uses a string port so make sure it's a
|
|
|
|
|
;; Unicode-capable one (see <http://bugs.gnu.org/11197>.)
|
|
|
|
|
(with-fluids ((%default-port-encoding "UTF-8"))
|
|
|
|
|
(stexi->plain-text (texi-fragment->stexi str))))
|
2015-08-07 00:10:43 +02:00
|
|
|
|
|
2017-03-20 11:41:41 +01:00
|
|
|
|
(define (package-field-string package field-accessor)
|
|
|
|
|
"Return a plain-text representation of PACKAGE field."
|
|
|
|
|
(and=> (field-accessor package)
|
|
|
|
|
(compose texi->plain-text P_)))
|
|
|
|
|
|
2015-08-07 00:10:43 +02:00
|
|
|
|
(define (package-description-string package)
|
|
|
|
|
"Return a plain-text representation of PACKAGE description field."
|
2017-03-20 11:41:41 +01:00
|
|
|
|
(package-field-string package package-description))
|
|
|
|
|
|
|
|
|
|
(define (package-synopsis-string package)
|
|
|
|
|
"Return a plain-text representation of PACKAGE synopsis field."
|
|
|
|
|
(package-field-string package package-synopsis))
|
2015-08-07 00:10:43 +02:00
|
|
|
|
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(define (string->recutils str)
|
|
|
|
|
"Return a version of STR where newlines have been replaced by newlines
|
|
|
|
|
followed by \"+ \", which makes for a valid multi-line field value in the
|
|
|
|
|
`recutils' syntax."
|
|
|
|
|
(list->string
|
|
|
|
|
(string-fold-right (lambda (chr result)
|
|
|
|
|
(if (eqv? chr #\newline)
|
|
|
|
|
(cons* chr #\+ #\space result)
|
|
|
|
|
(cons chr result)))
|
|
|
|
|
'()
|
|
|
|
|
str)))
|
|
|
|
|
|
2017-06-13 18:09:30 +02:00
|
|
|
|
(define* (package->recutils p port #:optional (width (%text-width))
|
|
|
|
|
#:key (extra-fields '()))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
"Write to PORT a `recutils' record of package P, arranging to fit within
|
2017-06-13 18:09:30 +02:00
|
|
|
|
WIDTH columns. EXTRA-FIELDS is a list of symbol/value pairs to emit."
|
2016-04-14 23:43:31 +02:00
|
|
|
|
(define width*
|
|
|
|
|
;; The available number of columns once we've taken into account space for
|
|
|
|
|
;; the initial "+ " prefix.
|
|
|
|
|
(if (> width 2) (- width 2) width))
|
|
|
|
|
|
2014-07-25 00:29:47 +02:00
|
|
|
|
(define (dependencies->recutils packages)
|
2017-07-02 07:14:16 +02:00
|
|
|
|
(let ((list (string-join (delete-duplicates
|
|
|
|
|
(map package-full-name
|
|
|
|
|
(sort packages package<?))) " ")))
|
2014-07-25 00:29:47 +02:00
|
|
|
|
(string->recutils
|
2016-04-14 23:43:31 +02:00
|
|
|
|
(fill-paragraph list width*
|
2014-07-25 00:29:47 +02:00
|
|
|
|
(string-length "dependencies: ")))))
|
|
|
|
|
|
2014-07-16 15:38:34 +02:00
|
|
|
|
(define (package<? p1 p2)
|
|
|
|
|
(string<? (package-full-name p1) (package-full-name p2)))
|
|
|
|
|
|
2013-02-01 13:16:27 +01:00
|
|
|
|
;; Note: Don't i18n field names so that people can post-process it.
|
|
|
|
|
(format port "name: ~a~%" (package-name p))
|
|
|
|
|
(format port "version: ~a~%" (package-version p))
|
2015-08-22 06:31:11 +02:00
|
|
|
|
(format port "outputs: ~a~%" (string-join (package-outputs p)))
|
2015-04-19 19:12:22 +02:00
|
|
|
|
(format port "systems: ~a~%"
|
|
|
|
|
(string-join (package-transitive-supported-systems p)))
|
2014-07-16 15:38:34 +02:00
|
|
|
|
(format port "dependencies: ~a~%"
|
|
|
|
|
(match (package-direct-inputs p)
|
2014-07-25 14:38:20 +02:00
|
|
|
|
(((labels inputs . _) ...)
|
|
|
|
|
(dependencies->recutils (filter package? inputs)))))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(format port "location: ~a~%"
|
|
|
|
|
(or (and=> (package-location p) location->string)
|
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 15:57:02 +02:00
|
|
|
|
(G_ "unknown")))
|
2014-01-13 18:49:26 +01:00
|
|
|
|
|
|
|
|
|
;; Note: Starting from version 1.6 or recutils, hyphens are not allowed in
|
|
|
|
|
;; field identifiers.
|
|
|
|
|
(format port "homepage: ~a~%" (package-home-page p))
|
|
|
|
|
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(format port "license: ~a~%"
|
|
|
|
|
(match (package-license p)
|
|
|
|
|
(((? license? licenses) ...)
|
|
|
|
|
(string-join (map license-name licenses)
|
|
|
|
|
", "))
|
|
|
|
|
((? license? license)
|
|
|
|
|
(license-name license))
|
|
|
|
|
(x
|
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 15:57:02 +02:00
|
|
|
|
(G_ "unknown"))))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
(format port "synopsis: ~a~%"
|
|
|
|
|
(string-map (match-lambda
|
2017-06-13 18:09:30 +02:00
|
|
|
|
(#\newline #\space)
|
|
|
|
|
(chr chr))
|
2017-03-20 11:41:41 +01:00
|
|
|
|
(or (and=> (package-synopsis-string p) P_)
|
2013-02-01 13:16:27 +01:00
|
|
|
|
"")))
|
2017-06-13 18:09:30 +02:00
|
|
|
|
(format port "~a~%"
|
2015-08-07 00:10:43 +02:00
|
|
|
|
(string->recutils
|
|
|
|
|
(string-trim-right
|
2016-04-14 23:43:31 +02:00
|
|
|
|
(parameterize ((%text-width width*))
|
2015-08-07 00:10:43 +02:00
|
|
|
|
(texi->plain-text
|
|
|
|
|
(string-append "description: "
|
|
|
|
|
(or (and=> (package-description p) P_)
|
|
|
|
|
""))))
|
2017-06-13 18:09:30 +02:00
|
|
|
|
#\newline)))
|
|
|
|
|
(for-each (match-lambda
|
|
|
|
|
((field . value)
|
|
|
|
|
(let ((field (symbol->string field)))
|
|
|
|
|
(format port "~a: ~a~%"
|
|
|
|
|
field
|
|
|
|
|
(fill-paragraph (object->string value) width*
|
|
|
|
|
(string-length field))))))
|
|
|
|
|
extra-fields)
|
|
|
|
|
(newline port))
|
2013-02-01 13:16:27 +01:00
|
|
|
|
|
2017-09-13 15:07:17 +02:00
|
|
|
|
(define (relevance obj regexps metrics)
|
|
|
|
|
"Compute a \"relevance score\" for OBJ as a function of its number of
|
|
|
|
|
matches of REGEXPS and accordingly to METRICS. METRICS is list of
|
2019-05-06 10:51:30 +02:00
|
|
|
|
field/weight pairs, where FIELD is a procedure that returns a string or list
|
|
|
|
|
of strings describing OBJ, and WEIGHT is a positive integer denoting the
|
|
|
|
|
weight of this field in the final score.
|
2017-09-13 15:07:17 +02:00
|
|
|
|
|
|
|
|
|
A score of zero means that OBJ does not match any of REGEXPS. The higher the
|
|
|
|
|
score, the more relevant OBJ is to REGEXPS."
|
|
|
|
|
(define (score str)
|
2018-06-29 12:17:41 +02:00
|
|
|
|
(let ((counts (map (lambda (regexp)
|
|
|
|
|
(match (fold-matches regexp str '() cons)
|
|
|
|
|
(() 0)
|
|
|
|
|
((m) (if (string=? (match:substring m) str)
|
|
|
|
|
5 ;exact match
|
|
|
|
|
1))
|
|
|
|
|
(lst (length lst))))
|
|
|
|
|
regexps)))
|
2017-09-13 15:07:17 +02:00
|
|
|
|
;; Compute a score that's proportional to the number of regexps matched
|
|
|
|
|
;; and to the number of matches for each regexp.
|
|
|
|
|
(* (length counts) (reduce + 0 counts))))
|
|
|
|
|
|
|
|
|
|
(fold (lambda (metric relevance)
|
|
|
|
|
(match metric
|
|
|
|
|
((field . weight)
|
|
|
|
|
(match (field obj)
|
|
|
|
|
(#f relevance)
|
2019-05-06 10:51:30 +02:00
|
|
|
|
((? string? str)
|
|
|
|
|
(+ relevance (* (score str) weight)))
|
|
|
|
|
((lst ...)
|
|
|
|
|
(+ relevance (* weight (apply + (map score lst)))))))))
|
2017-09-13 15:07:17 +02:00
|
|
|
|
0
|
|
|
|
|
metrics))
|
|
|
|
|
|
|
|
|
|
(define %package-metrics
|
|
|
|
|
;; Metrics used to compute the "relevance score" of a package against a set
|
|
|
|
|
;; of regexps.
|
2017-11-15 17:38:21 +01:00
|
|
|
|
`((,package-name . 4)
|
2019-03-23 23:53:55 +01:00
|
|
|
|
|
2019-05-06 10:51:30 +02:00
|
|
|
|
;; Match against uncommon outputs.
|
|
|
|
|
(,(lambda (package)
|
|
|
|
|
(filter (lambda (output)
|
|
|
|
|
(not (member output
|
|
|
|
|
;; Some common outpus shared by many packages.
|
|
|
|
|
'("out" "doc" "debug" "lib" "include" "bin"))))
|
|
|
|
|
(package-outputs package)))
|
|
|
|
|
. 1)
|
|
|
|
|
|
2019-03-23 23:53:55 +01:00
|
|
|
|
;; Match regexps on the raw Texinfo since formatting it is quite expensive
|
|
|
|
|
;; and doesn't have much of an effect on search results.
|
|
|
|
|
(,(lambda (package)
|
|
|
|
|
(and=> (package-synopsis package) P_)) . 3)
|
|
|
|
|
(,(lambda (package)
|
|
|
|
|
(and=> (package-description package) P_)) . 2)
|
|
|
|
|
|
2017-11-15 17:38:21 +01:00
|
|
|
|
(,(lambda (type)
|
|
|
|
|
(match (and=> (package-location type) location-file)
|
|
|
|
|
((? string? file) (basename file ".scm"))
|
|
|
|
|
(#f "")))
|
|
|
|
|
. 1)))
|
2017-09-13 15:07:17 +02:00
|
|
|
|
|
|
|
|
|
(define (package-relevance package regexps)
|
|
|
|
|
"Return a score denoting the relevance of PACKAGE for REGEXPS. A score of
|
|
|
|
|
zero means that PACKAGE does not match any of REGEXPS."
|
|
|
|
|
(relevance package regexps %package-metrics))
|
|
|
|
|
|
2013-09-19 13:07:39 +02:00
|
|
|
|
(define (string->generations str)
|
|
|
|
|
"Return the list of generations matching a pattern in STR. This function
|
|
|
|
|
accepts the following patterns: \"1\", \"1,2,3\", \"1..9\", \"1..\", \"..9\"."
|
|
|
|
|
(define (maybe-integer)
|
|
|
|
|
(let ((x (string->number str)))
|
|
|
|
|
(and (integer? x)
|
|
|
|
|
x)))
|
|
|
|
|
|
|
|
|
|
(define (maybe-comma-separated-integers)
|
|
|
|
|
(let ((lst (delete-duplicates
|
|
|
|
|
(map string->number
|
|
|
|
|
(string-split str #\,)))))
|
|
|
|
|
(and (every integer? lst)
|
|
|
|
|
lst)))
|
|
|
|
|
|
|
|
|
|
(cond ((maybe-integer)
|
|
|
|
|
=>
|
|
|
|
|
list)
|
|
|
|
|
((maybe-comma-separated-integers)
|
|
|
|
|
=>
|
|
|
|
|
identity)
|
|
|
|
|
((string-match "^([0-9]+)\\.\\.([0-9]+)$" str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(let ((s (string->number (match:substring match 1)))
|
|
|
|
|
(e (string->number (match:substring match 2))))
|
|
|
|
|
(and (every integer? (list s e))
|
|
|
|
|
(<= s e)
|
|
|
|
|
(iota (1+ (- e s)) s)))))
|
|
|
|
|
((string-match "^([0-9]+)\\.\\.$" str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(let ((s (string->number (match:substring match 1))))
|
|
|
|
|
(and (integer? s)
|
|
|
|
|
`(>= ,s)))))
|
|
|
|
|
((string-match "^\\.\\.([0-9]+)$" str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(let ((e (string->number (match:substring match 1))))
|
|
|
|
|
(and (integer? e)
|
|
|
|
|
`(<= ,e)))))
|
|
|
|
|
(else #f)))
|
|
|
|
|
|
|
|
|
|
(define (string->duration str)
|
|
|
|
|
"Return the duration matching a pattern in STR. This function accepts the
|
|
|
|
|
following patterns: \"1d\", \"1w\", \"1m\"."
|
|
|
|
|
(define (hours->duration hours match)
|
|
|
|
|
(make-time time-duration 0
|
|
|
|
|
(* 3600 hours (string->number (match:substring match 1)))))
|
|
|
|
|
|
2016-06-09 23:28:17 +02:00
|
|
|
|
(cond ((string-match "^([0-9]+)s$" str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(make-time time-duration 0
|
|
|
|
|
(string->number (match:substring match 1)))))
|
|
|
|
|
((string-match "^([0-9]+)h$" str)
|
2017-05-10 15:25:07 +02:00
|
|
|
|
=>
|
2016-06-09 23:28:17 +02:00
|
|
|
|
(lambda (match)
|
|
|
|
|
(hours->duration 1 match)))
|
|
|
|
|
((string-match "^([0-9]+)d$" str)
|
2013-09-19 13:07:39 +02:00
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(hours->duration 24 match)))
|
|
|
|
|
((string-match "^([0-9]+)w$" str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(hours->duration (* 24 7) match)))
|
|
|
|
|
((string-match "^([0-9]+)m$" str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(hours->duration (* 24 30) match)))
|
|
|
|
|
(else #f)))
|
|
|
|
|
|
2015-10-26 19:03:56 +01:00
|
|
|
|
(define* (matching-generations str profile
|
|
|
|
|
#:key (duration-relation <=))
|
|
|
|
|
"Return the list of available generations matching a pattern in STR. See
|
|
|
|
|
'string->generations' and 'string->duration' for the list of valid patterns.
|
|
|
|
|
When STR is a duration pattern, return all the generations whose ctime has
|
|
|
|
|
DURATION-RELATION with the current time."
|
|
|
|
|
(define (valid-generations lst)
|
|
|
|
|
(define (valid-generation? n)
|
|
|
|
|
(any (cut = n <>) (generation-numbers profile)))
|
|
|
|
|
|
|
|
|
|
(fold-right (lambda (x acc)
|
|
|
|
|
(if (valid-generation? x)
|
|
|
|
|
(cons x acc)
|
|
|
|
|
acc))
|
|
|
|
|
'()
|
|
|
|
|
lst))
|
|
|
|
|
|
|
|
|
|
(define (filter-generations generations)
|
|
|
|
|
(match generations
|
|
|
|
|
(() '())
|
|
|
|
|
(('>= n)
|
|
|
|
|
(drop-while (cut > n <>)
|
|
|
|
|
(generation-numbers profile)))
|
|
|
|
|
(('<= n)
|
|
|
|
|
(valid-generations (iota n 1)))
|
|
|
|
|
((lst ..1)
|
|
|
|
|
(valid-generations lst))
|
2017-03-08 21:36:54 +01:00
|
|
|
|
(x #f)))
|
2015-10-26 19:03:56 +01:00
|
|
|
|
|
|
|
|
|
(define (filter-by-duration duration)
|
|
|
|
|
(define (time-at-midnight time)
|
|
|
|
|
;; Return TIME at midnight by setting nanoseconds, seconds, minutes, and
|
|
|
|
|
;; hours to zeros.
|
|
|
|
|
(let ((d (time-utc->date time)))
|
|
|
|
|
(date->time-utc
|
|
|
|
|
(make-date 0 0 0 0
|
|
|
|
|
(date-day d) (date-month d)
|
|
|
|
|
(date-year d) (date-zone-offset d)))))
|
|
|
|
|
|
|
|
|
|
(define generation-ctime-alist
|
|
|
|
|
(map (lambda (number)
|
|
|
|
|
(cons number
|
|
|
|
|
(time-second
|
|
|
|
|
(time-at-midnight
|
|
|
|
|
(generation-time profile number)))))
|
|
|
|
|
(generation-numbers profile)))
|
|
|
|
|
|
|
|
|
|
(match duration
|
|
|
|
|
(#f #f)
|
|
|
|
|
(res
|
|
|
|
|
(let ((s (time-second
|
|
|
|
|
(subtract-duration (time-at-midnight (current-time))
|
|
|
|
|
duration))))
|
|
|
|
|
(delete #f (map (lambda (x)
|
|
|
|
|
(and (duration-relation s (cdr x))
|
|
|
|
|
(first x)))
|
|
|
|
|
generation-ctime-alist))))))
|
|
|
|
|
|
|
|
|
|
(cond ((string->generations str)
|
|
|
|
|
=>
|
|
|
|
|
filter-generations)
|
|
|
|
|
((string->duration str)
|
|
|
|
|
=>
|
|
|
|
|
filter-by-duration)
|
|
|
|
|
(else #f)))
|
|
|
|
|
|
2015-10-26 21:16:20 +01:00
|
|
|
|
(define (display-generation profile number)
|
|
|
|
|
"Display a one-line summary of generation NUMBER of PROFILE."
|
|
|
|
|
(unless (zero? number)
|
2019-04-14 19:49:38 +02:00
|
|
|
|
(let ((header (format #f (highlight (G_ "Generation ~a\t~a")) number
|
2015-10-26 21:16:20 +01:00
|
|
|
|
(date->string
|
|
|
|
|
(time-utc->date
|
|
|
|
|
(generation-time profile number))
|
2018-06-14 21:17:08 +02:00
|
|
|
|
;; TRANSLATORS: This is a format-string for date->string.
|
|
|
|
|
;; Please choose a format that corresponds to the
|
|
|
|
|
;; usual way of presenting dates in your locale.
|
|
|
|
|
;; See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html
|
|
|
|
|
;; for details.
|
|
|
|
|
(G_ "~b ~d ~Y ~T"))))
|
2015-10-26 21:16:20 +01:00
|
|
|
|
(current (generation-number profile)))
|
|
|
|
|
(if (= number current)
|
2016-03-30 15:00:25 +02:00
|
|
|
|
;; TRANSLATORS: The word "current" here is an adjective for
|
|
|
|
|
;; "Generation", as in "current generation". Use the appropriate
|
|
|
|
|
;; gender where applicable.
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "~a\t(current)~%") header)
|
2015-10-26 21:16:20 +01:00
|
|
|
|
(format #t "~a~%" header)))))
|
|
|
|
|
|
2016-10-26 14:53:29 +02:00
|
|
|
|
(define (display-profile-content-diff profile gen1 gen2)
|
2018-07-11 00:53:04 +02:00
|
|
|
|
"Display the changed packages in PROFILE GEN2 compared to generation GEN1."
|
2016-10-26 14:53:29 +02:00
|
|
|
|
|
|
|
|
|
(define (equal-entry? first second)
|
|
|
|
|
(string= (manifest-entry-item first) (manifest-entry-item second)))
|
|
|
|
|
|
|
|
|
|
(define (display-entry entry prefix)
|
|
|
|
|
(match entry
|
|
|
|
|
(($ <manifest-entry> name version output location _)
|
|
|
|
|
(format #t " ~a ~a\t~a\t~a\t~a~%" prefix name version output location))))
|
|
|
|
|
|
|
|
|
|
(define (list-entries number)
|
|
|
|
|
(manifest-entries (profile-manifest (generation-file-name profile number))))
|
|
|
|
|
|
|
|
|
|
(define (display-diff profile old new)
|
|
|
|
|
(display-generation profile new)
|
|
|
|
|
(let ((added (lset-difference
|
|
|
|
|
equal-entry? (list-entries new) (list-entries old)))
|
|
|
|
|
(removed (lset-difference
|
|
|
|
|
equal-entry? (list-entries old) (list-entries new))))
|
|
|
|
|
(for-each (cut display-entry <> "+") added)
|
2016-11-17 23:49:29 +01:00
|
|
|
|
(for-each (cut display-entry <> "-") removed)
|
|
|
|
|
(newline)))
|
2016-10-26 14:53:29 +02:00
|
|
|
|
|
|
|
|
|
(display-diff profile gen1 gen2))
|
|
|
|
|
|
2015-10-26 21:16:20 +01:00
|
|
|
|
(define (display-profile-content profile number)
|
|
|
|
|
"Display the packages in PROFILE, generation NUMBER, in a human-readable
|
|
|
|
|
way."
|
|
|
|
|
(for-each (match-lambda
|
|
|
|
|
(($ <manifest-entry> name version output location _)
|
|
|
|
|
(format #t " ~a\t~a\t~a\t~a~%"
|
|
|
|
|
name version output location)))
|
|
|
|
|
|
|
|
|
|
;; Show most recently installed packages last.
|
|
|
|
|
(reverse
|
|
|
|
|
(manifest-entries
|
|
|
|
|
(profile-manifest (generation-file-name profile number))))))
|
|
|
|
|
|
2015-10-26 23:01:06 +01:00
|
|
|
|
(define (display-generation-change previous current)
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "switched from generation ~a to ~a~%") previous current))
|
2015-10-26 23:01:06 +01:00
|
|
|
|
|
|
|
|
|
(define (roll-back* store profile)
|
|
|
|
|
"Like 'roll-back', but display what is happening."
|
|
|
|
|
(call-with-values
|
|
|
|
|
(lambda ()
|
|
|
|
|
(roll-back store profile))
|
|
|
|
|
display-generation-change))
|
|
|
|
|
|
|
|
|
|
(define (switch-to-generation* profile number)
|
|
|
|
|
"Like 'switch-generation', but display what is happening."
|
|
|
|
|
(let ((previous (switch-to-generation profile number)))
|
|
|
|
|
(display-generation-change previous number)))
|
|
|
|
|
|
|
|
|
|
(define (delete-generation* store profile generation)
|
|
|
|
|
"Like 'delete-generation', but display what is going on."
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "deleting ~a~%")
|
2015-10-26 23:01:06 +01:00
|
|
|
|
(generation-file-name profile generation))
|
|
|
|
|
(delete-generation store profile generation))
|
|
|
|
|
|
2013-11-01 16:57:48 +01:00
|
|
|
|
(define* (package-specification->name+version+output spec
|
|
|
|
|
#:optional (output "out"))
|
|
|
|
|
"Parse package specification SPEC and return three value: the specified
|
|
|
|
|
package name, version number (or #f), and output name (or OUTPUT). SPEC may
|
|
|
|
|
optionally contain a version number and an output name, as in these examples:
|
|
|
|
|
|
|
|
|
|
guile
|
2016-02-28 23:11:36 +01:00
|
|
|
|
guile@2.0.9
|
2013-11-01 16:57:48 +01:00
|
|
|
|
guile:debug
|
2016-02-28 23:11:36 +01:00
|
|
|
|
guile@2.0.9:debug
|
2013-11-01 16:57:48 +01:00
|
|
|
|
"
|
|
|
|
|
(let*-values (((name sub-drv)
|
|
|
|
|
(match (string-rindex spec #\:)
|
|
|
|
|
(#f (values spec output))
|
|
|
|
|
(colon (values (substring spec 0 colon)
|
|
|
|
|
(substring spec (+ 1 colon))))))
|
|
|
|
|
((name version)
|
|
|
|
|
(package-name->name+version name)))
|
|
|
|
|
(values name version sub-drv)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Command-line option processing.
|
|
|
|
|
;;;
|
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
(define (show-guix-usage)
|
|
|
|
|
(format (current-error-port)
|
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 15:57:02 +02:00
|
|
|
|
(G_ "Try `guix --help' for more information.~%"))
|
2013-05-10 23:14:26 +02:00
|
|
|
|
(exit 1))
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
|
2013-05-10 12:33:18 +02:00
|
|
|
|
(define (command-files)
|
|
|
|
|
"Return the list of source files that define Guix sub-commands."
|
|
|
|
|
(define directory
|
|
|
|
|
(and=> (search-path %load-path "guix.scm")
|
|
|
|
|
(compose (cut string-append <> "/guix/scripts")
|
|
|
|
|
dirname)))
|
|
|
|
|
|
2013-05-14 13:37:21 +02:00
|
|
|
|
(define dot-scm?
|
|
|
|
|
(cut string-suffix? ".scm" <>))
|
|
|
|
|
|
2013-05-10 12:33:18 +02:00
|
|
|
|
(if directory
|
2015-05-07 21:51:30 +02:00
|
|
|
|
(scandir directory dot-scm?)
|
2013-05-10 12:33:18 +02:00
|
|
|
|
'()))
|
|
|
|
|
|
|
|
|
|
(define (commands)
|
|
|
|
|
"Return the list of Guix command names."
|
|
|
|
|
(map (compose (cut string-drop-right <> 4)
|
|
|
|
|
basename)
|
|
|
|
|
(command-files)))
|
|
|
|
|
|
|
|
|
|
(define (show-guix-help)
|
2014-01-06 23:31:17 +01:00
|
|
|
|
(define (internal? command)
|
2015-07-20 04:30:16 +02:00
|
|
|
|
(member command '("substitute" "authenticate" "offload"
|
|
|
|
|
"perform-download")))
|
2014-01-06 23:31:17 +01:00
|
|
|
|
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "Usage: guix COMMAND ARGS...
|
2013-05-10 12:33:18 +02:00
|
|
|
|
Run COMMAND with ARGS.\n"))
|
|
|
|
|
(newline)
|
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 15:57:02 +02:00
|
|
|
|
(format #t (G_ "COMMAND must be one of the sub-commands listed below:\n"))
|
2013-05-10 12:33:18 +02:00
|
|
|
|
(newline)
|
|
|
|
|
;; TODO: Display a synopsis of each command.
|
2014-01-06 23:31:17 +01:00
|
|
|
|
(format #t "~{ ~a~%~}" (sort (remove internal? (commands))
|
|
|
|
|
string<?))
|
2013-05-10 12:33:18 +02:00
|
|
|
|
(show-bug-report-information))
|
|
|
|
|
|
2013-04-11 22:30:06 +02:00
|
|
|
|
(define program-name
|
|
|
|
|
;; Name of the command-line program currently executing, or #f.
|
|
|
|
|
(make-parameter #f))
|
|
|
|
|
|
2013-05-10 12:14:01 +02:00
|
|
|
|
(define (run-guix-command command . args)
|
|
|
|
|
"Run COMMAND with the given ARGS. Report an error when COMMAND is not
|
|
|
|
|
found."
|
|
|
|
|
(define module
|
|
|
|
|
(catch 'misc-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(resolve-interface `(guix scripts ,command)))
|
|
|
|
|
(lambda -
|
2013-05-10 23:14:26 +02:00
|
|
|
|
(format (current-error-port)
|
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 15:57:02 +02:00
|
|
|
|
(G_ "guix: ~a: command not found~%") command)
|
2013-05-10 23:14:26 +02:00
|
|
|
|
(show-guix-usage))))
|
2013-05-10 12:14:01 +02:00
|
|
|
|
|
|
|
|
|
(let ((command-main (module-ref module
|
|
|
|
|
(symbol-append 'guix- command))))
|
|
|
|
|
(parameterize ((program-name command))
|
2016-09-03 00:17:27 +02:00
|
|
|
|
;; Disable canonicalization so we don't don't stat unreasonably.
|
|
|
|
|
(with-fluids ((%file-port-name-canonicalization #f))
|
2017-06-16 14:23:51 +02:00
|
|
|
|
(dynamic-wind
|
|
|
|
|
(const #f)
|
|
|
|
|
(lambda ()
|
|
|
|
|
(apply command-main args))
|
|
|
|
|
(lambda ()
|
|
|
|
|
;; Abuse 'exit-hook' (which is normally meant to be used by the
|
|
|
|
|
;; REPL) to run things like profiling hooks upon completion.
|
|
|
|
|
(run-hook exit-hook)))))))
|
2013-05-10 12:14:01 +02:00
|
|
|
|
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(define (run-guix . args)
|
|
|
|
|
"Run the 'guix' command defined by command line ARGS.
|
|
|
|
|
Unlike 'guix-main', this procedure assumes that locale, i18n support,
|
|
|
|
|
and signal handling has already been set up."
|
|
|
|
|
(define option? (cut string-prefix? "-" <>))
|
|
|
|
|
|
2017-06-15 21:58:17 +02:00
|
|
|
|
;; The default %LOAD-EXTENSIONS includes the empty string, which doubles the
|
|
|
|
|
;; number of 'stat' calls per entry in %LOAD-PATH. Shamelessly remove it.
|
|
|
|
|
(set! %load-extensions '(".scm"))
|
|
|
|
|
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(match args
|
|
|
|
|
(()
|
|
|
|
|
(format (current-error-port)
|
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 15:57:02 +02:00
|
|
|
|
(G_ "guix: missing command name~%"))
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(show-guix-usage))
|
|
|
|
|
((or ("-h") ("--help"))
|
|
|
|
|
(show-guix-help))
|
2018-07-07 06:41:35 +02:00
|
|
|
|
((or ("-V") ("--version"))
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(show-version-and-exit "guix"))
|
|
|
|
|
(((? option? o) args ...)
|
|
|
|
|
(format (current-error-port)
|
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 15:57:02 +02:00
|
|
|
|
(G_ "guix: unrecognized option '~a'~%") o)
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(show-guix-usage))
|
2015-11-10 22:24:38 +01:00
|
|
|
|
(("help" command)
|
|
|
|
|
(apply run-guix-command (string->symbol command)
|
|
|
|
|
'("--help")))
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(("help" args ...)
|
|
|
|
|
(show-guix-help))
|
|
|
|
|
((command args ...)
|
|
|
|
|
(apply run-guix-command
|
|
|
|
|
(string->symbol command)
|
|
|
|
|
args))))
|
|
|
|
|
|
2013-04-11 22:30:06 +02:00
|
|
|
|
(define guix-warning-port
|
|
|
|
|
(make-parameter (current-warning-port)))
|
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
(define (guix-main arg0 . args)
|
|
|
|
|
(initialize-guix)
|
2015-08-16 09:28:04 +02:00
|
|
|
|
(apply run-guix args))
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 10:15:25 +01:00
|
|
|
|
|
2012-11-01 00:50:01 +01:00
|
|
|
|
;;; ui.scm ends here
|