2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-01-09 18:39:59 -05:00
|
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
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 04:15:25 -05:00
|
|
|
|
;;; Copyright © 2013 Mark H Weaver <mhw@netris.org>
|
2013-04-21 04:08:40 -04:00
|
|
|
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2014-10-08 09:29:01 -04:00
|
|
|
|
;;; Copyright © 2014 Alex Kost <alezost@gmail.com>
|
2015-02-25 18:02:51 -05:00
|
|
|
|
;;; Copyright © 2014 Deck Pickard <deck.r.pickard@gmail.com>
|
2012-10-31 19:50:01 -04:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-10-31 19:50:01 -04:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-10-31 19:50:01 -04: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-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-10-31 19:50:01 -04: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-05 18:47:50 -05:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-10-31 19:50:01 -04:00
|
|
|
|
|
|
|
|
|
(define-module (guix ui)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (guix store)
|
2012-11-03 16:19:43 -04:00
|
|
|
|
#:use-module (guix config)
|
2012-10-31 19:50:01 -04:00
|
|
|
|
#:use-module (guix packages)
|
2014-10-08 09:15:49 -04:00
|
|
|
|
#:use-module (guix profiles)
|
2013-02-20 17:41:24 -05:00
|
|
|
|
#:use-module (guix derivations)
|
2015-02-08 12:30:20 -05:00
|
|
|
|
#:use-module (guix build-system)
|
|
|
|
|
#:use-module (guix serialization)
|
2014-09-14 09:33:38 -04:00
|
|
|
|
#:use-module ((guix build utils) #:select (mkdir-p))
|
2013-02-01 07:16:27 -05:00
|
|
|
|
#:use-module ((guix licenses) #:select (license? license-name))
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
2013-09-19 07:07:39 -04:00
|
|
|
|
#:use-module (srfi srfi-19)
|
2012-10-31 19:50:01 -04:00
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module (srfi srfi-34)
|
2014-02-21 11:45:04 -05:00
|
|
|
|
#:use-module (srfi srfi-35)
|
2013-04-27 10:46:39 -04:00
|
|
|
|
#:use-module (srfi srfi-37)
|
2013-05-10 06:33:18 -04:00
|
|
|
|
#:autoload (ice-9 ftw) (scandir)
|
2012-11-19 17:02:59 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
2013-02-20 17:41:24 -05:00
|
|
|
|
#:use-module (ice-9 format)
|
2013-09-19 07:07:39 -04:00
|
|
|
|
#:use-module (ice-9 regex)
|
2012-10-31 19:50:01 -04:00
|
|
|
|
#:export (_
|
|
|
|
|
N_
|
2014-06-13 11:30:40 -04:00
|
|
|
|
P_
|
2015-01-22 16:43:46 -05:00
|
|
|
|
report-error
|
2012-10-31 19:50:01 -04:00
|
|
|
|
leave
|
2012-11-03 16:19:43 -04:00
|
|
|
|
show-version-and-exit
|
2013-01-05 09:55:47 -05:00
|
|
|
|
show-bug-report-information
|
2013-05-20 12:14:55 -04:00
|
|
|
|
string->number*
|
2014-04-08 16:01:44 -04:00
|
|
|
|
size->number
|
2013-02-20 17:41:24 -05:00
|
|
|
|
show-what-to-build
|
2014-10-08 09:15:49 -04:00
|
|
|
|
show-manifest-transaction
|
2012-10-31 19:50:01 -04:00
|
|
|
|
call-with-error-handling
|
2012-11-19 17:02:59 -05:00
|
|
|
|
with-error-handling
|
2013-11-18 17:08:20 -05:00
|
|
|
|
read/eval
|
2013-03-01 15:55:42 -05:00
|
|
|
|
read/eval-package-expression
|
2013-02-01 07:16:27 -05:00
|
|
|
|
location->string
|
2013-02-20 17:03:24 -05:00
|
|
|
|
switch-symlinks
|
2013-02-20 17:46:38 -05:00
|
|
|
|
config-directory
|
2013-02-01 07:16:27 -05:00
|
|
|
|
fill-paragraph
|
|
|
|
|
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 04:15:25 -05:00
|
|
|
|
package->recutils
|
2013-11-01 11:57:48 -04:00
|
|
|
|
package-specification->name+version+output
|
2013-09-19 07:07:39 -04:00
|
|
|
|
string->generations
|
|
|
|
|
string->duration
|
2013-04-27 10:46:39 -04:00
|
|
|
|
args-fold*
|
2015-02-25 17:31:51 -05:00
|
|
|
|
parse-command-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 04:15:25 -05:00
|
|
|
|
run-guix-command
|
2013-04-11 16:30:06 -04:00
|
|
|
|
program-name
|
|
|
|
|
guix-warning-port
|
|
|
|
|
warning
|
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 04:15:25 -05:00
|
|
|
|
guix-main))
|
2012-10-31 19:50:01 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; User interface facilities for command-line tools.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(define %gettext-domain
|
2014-06-13 11:30:40 -04:00
|
|
|
|
;; Text domain for strings used in the tools.
|
2012-10-31 19:50:01 -04:00
|
|
|
|
"guix")
|
|
|
|
|
|
2014-06-13 11:30:40 -04:00
|
|
|
|
(define %package-text-domain
|
|
|
|
|
;; Text domain for package synopses and descriptions.
|
|
|
|
|
"guix-packages")
|
|
|
|
|
|
2012-10-31 19:50:01 -04:00
|
|
|
|
(define _ (cut gettext <> %gettext-domain))
|
|
|
|
|
(define N_ (cut ngettext <> <> <> %gettext-domain))
|
2014-06-13 11:30:40 -04:00
|
|
|
|
(define P_ (cut gettext <> %package-text-domain))
|
2012-10-31 19:50:01 -04:00
|
|
|
|
|
2013-04-22 07:24:16 -04:00
|
|
|
|
(define-syntax-rule (define-diagnostic name prefix)
|
|
|
|
|
"Create a diagnostic macro (i.e., NAME), which will prepend PREFIX to all
|
|
|
|
|
messages."
|
|
|
|
|
(define-syntax name
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(define (augmented-format-string fmt)
|
|
|
|
|
(string-append "~:[~*~;guix ~a: ~]~a" (syntax->datum fmt)))
|
|
|
|
|
|
2013-05-29 18:49:34 -04:00
|
|
|
|
(syntax-case x ()
|
|
|
|
|
((name (underscore fmt) args (... ...))
|
|
|
|
|
(and (string? (syntax->datum #'fmt))
|
|
|
|
|
(free-identifier=? #'underscore #'_))
|
2013-04-22 07:24:16 -04:00
|
|
|
|
(with-syntax ((fmt* (augmented-format-string #'fmt))
|
|
|
|
|
(prefix (datum->syntax x prefix)))
|
|
|
|
|
#'(format (guix-warning-port) (gettext fmt*)
|
|
|
|
|
(program-name) (program-name) prefix
|
|
|
|
|
args (... ...))))
|
2013-05-29 18:49:34 -04:00
|
|
|
|
((name (N-underscore singular plural n) args (... ...))
|
2013-04-22 07:24:16 -04:00
|
|
|
|
(and (string? (syntax->datum #'singular))
|
2013-05-29 18:49:34 -04:00
|
|
|
|
(string? (syntax->datum #'plural))
|
|
|
|
|
(free-identifier=? #'N-underscore #'N_))
|
2013-04-22 07:24:16 -04:00
|
|
|
|
(with-syntax ((s (augmented-format-string #'singular))
|
|
|
|
|
(p (augmented-format-string #'plural))
|
|
|
|
|
(prefix (datum->syntax x prefix)))
|
|
|
|
|
#'(format (guix-warning-port)
|
|
|
|
|
(ngettext s p n %gettext-domain)
|
|
|
|
|
(program-name) (program-name) prefix
|
|
|
|
|
args (... ...))))))))
|
|
|
|
|
|
|
|
|
|
(define-diagnostic warning "warning: ") ; emit a warning
|
|
|
|
|
|
|
|
|
|
(define-diagnostic report-error "error: ")
|
|
|
|
|
(define-syntax-rule (leave args ...)
|
|
|
|
|
"Emit an error message and exit."
|
|
|
|
|
(begin
|
|
|
|
|
(report-error args ...)
|
|
|
|
|
(exit 1)))
|
|
|
|
|
|
|
|
|
|
(define (install-locale)
|
|
|
|
|
"Install the current locale settings."
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda _
|
|
|
|
|
(setlocale LC_ALL ""))
|
|
|
|
|
(lambda args
|
|
|
|
|
(warning (_ "failed to install locale: ~a~%")
|
|
|
|
|
(strerror (system-error-errno 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 04:15:25 -05:00
|
|
|
|
(define (initialize-guix)
|
2013-02-17 09:38:02 -05:00
|
|
|
|
"Perform the usual initialization for stand-alone Guix commands."
|
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 04:15:25 -05:00
|
|
|
|
(install-locale)
|
2013-10-12 10:37:28 -04:00
|
|
|
|
(textdomain %gettext-domain)
|
2013-07-12 17:01:07 -04:00
|
|
|
|
|
|
|
|
|
;; Ignore SIGPIPE. If the daemon closes the connection, we prefer to be
|
|
|
|
|
;; notified via an EPIPE later.
|
|
|
|
|
(sigaction SIGPIPE SIG_IGN)
|
|
|
|
|
|
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 04:15:25 -05:00
|
|
|
|
(setvbuf (current-output-port) _IOLBF)
|
|
|
|
|
(setvbuf (current-error-port) _IOLBF))
|
|
|
|
|
|
2012-11-03 16:19:43 -04: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)
|
2015-01-28 13:06:33 -05:00
|
|
|
|
(display (_ "Copyright (C) 2015 the Guix authors
|
2013-11-03 17:09:30 -05: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 16:19:43 -04:00
|
|
|
|
(exit 0))
|
|
|
|
|
|
2013-01-05 09:55:47 -05:00
|
|
|
|
(define (show-bug-report-information)
|
|
|
|
|
(format #t (_ "
|
|
|
|
|
Report bugs to: ~a.") %guix-bug-report-address)
|
|
|
|
|
(format #t (_ "
|
|
|
|
|
~a home page: <~a>") %guix-package-name %guix-home-page-url)
|
|
|
|
|
(display (_ "
|
|
|
|
|
General help using GNU software: <http://www.gnu.org/gethelp/>"))
|
|
|
|
|
(newline))
|
|
|
|
|
|
2013-05-20 12:14:55 -04:00
|
|
|
|
(define (string->number* str)
|
|
|
|
|
"Like `string->number', but error out with an error message on failure."
|
|
|
|
|
(or (string->number str)
|
|
|
|
|
(leave (_ "~a: invalid number~%") str)))
|
|
|
|
|
|
2014-04-08 16:01:44 -04: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
|
|
|
|
|
(leave (_ "invalid number: ~a~%") numstr))
|
|
|
|
|
|
|
|
|
|
((compose inexact->exact round)
|
|
|
|
|
(* num
|
|
|
|
|
(match unit
|
2014-10-03 07:35:14 -04: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 16:01:44 -04:00
|
|
|
|
("MB" (expt 10 6))
|
|
|
|
|
("GB" (expt 10 9))
|
|
|
|
|
("TB" (expt 10 12))
|
2014-10-03 07:35:14 -04:00
|
|
|
|
("PB" (expt 10 15))
|
|
|
|
|
("EB" (expt 10 18))
|
|
|
|
|
("ZB" (expt 10 21))
|
|
|
|
|
("YB" (expt 10 24))
|
2014-04-08 16:01:44 -04:00
|
|
|
|
("" 1)
|
|
|
|
|
(_
|
|
|
|
|
(leave (_ "unknown unit: ~a~%") unit)))))))
|
|
|
|
|
|
2012-10-31 19:50:01 -04:00
|
|
|
|
(define (call-with-error-handling thunk)
|
|
|
|
|
"Call THUNK within a user-friendly error handler."
|
|
|
|
|
(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)))
|
2013-04-21 04:08:40 -04:00
|
|
|
|
(leave (_ "~a:~a:~a: package `~a' has an invalid input: ~s~%")
|
2012-10-31 19:50:01 -04:00
|
|
|
|
file line column
|
|
|
|
|
(package-full-name package) input)))
|
2013-05-27 17:41:35 -04:00
|
|
|
|
((package-cross-build-system-error? c)
|
|
|
|
|
(let* ((package (package-error-package c))
|
|
|
|
|
(loc (package-location package))
|
|
|
|
|
(system (package-build-system package)))
|
|
|
|
|
(leave (_ "~a: ~a: build system `~a' does not support cross builds~%")
|
|
|
|
|
(location->string loc)
|
|
|
|
|
(package-full-name package)
|
|
|
|
|
(build-system-name system))))
|
2014-10-08 09:29:01 -04:00
|
|
|
|
((profile-not-found-error? c)
|
|
|
|
|
(leave (_ "profile '~a' does not exist~%")
|
|
|
|
|
(profile-error-profile c)))
|
|
|
|
|
((missing-generation-error? c)
|
|
|
|
|
(leave (_ "generation ~a of profile '~a' does not exist~%")
|
|
|
|
|
(missing-generation-error-generation c)
|
|
|
|
|
(profile-error-profile c)))
|
2015-02-08 12:30:20 -05:00
|
|
|
|
((nar-error? c)
|
|
|
|
|
(let ((file (nar-error-file c))
|
|
|
|
|
(port (nar-error-port c)))
|
|
|
|
|
(if file
|
|
|
|
|
(leave (_ "corrupt input while restoring '~a' from ~s~%")
|
|
|
|
|
file (or (port-filename port) port))
|
|
|
|
|
(leave (_ "corrupt input while restoring archive from ~s~%")
|
|
|
|
|
(or (port-filename port) port)))))
|
2013-03-07 13:29:12 -05:00
|
|
|
|
((nix-connection-error? c)
|
2013-04-21 04:08:40 -04:00
|
|
|
|
(leave (_ "failed to connect to `~a': ~a~%")
|
2013-03-07 13:29:12 -05:00
|
|
|
|
(nix-connection-error-file c)
|
|
|
|
|
(strerror (nix-connection-error-code c))))
|
2012-10-31 19:50:01 -04:00
|
|
|
|
((nix-protocol-error? c)
|
|
|
|
|
;; FIXME: Server-provided error messages aren't i18n'd.
|
2013-04-21 04:08:40 -04:00
|
|
|
|
(leave (_ "build failed: ~a~%")
|
2014-02-21 11:45:04 -05:00
|
|
|
|
(nix-protocol-error-message c)))
|
2015-01-24 16:50:40 -05:00
|
|
|
|
((derivation-missing-output-error? c)
|
|
|
|
|
(leave (_ "reference to invalid output '~a' of derivation '~a'~%")
|
|
|
|
|
(derivation-missing-output c)
|
|
|
|
|
(derivation-file-name (derivation-error-derivation c))))
|
2014-02-21 11:45:04 -05:00
|
|
|
|
((message-condition? c)
|
|
|
|
|
;; Normally '&message' error conditions have an i18n'd message.
|
2014-10-09 17:50:16 -04:00
|
|
|
|
(leave (_ "~a~%")
|
|
|
|
|
(gettext (condition-message c) %gettext-domain))))
|
2013-07-12 17:01:07 -04:00
|
|
|
|
;; Catch EPIPE and the likes.
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
thunk
|
2014-04-04 14:37:27 -04:00
|
|
|
|
(lambda (key proc format-string format-args . rest)
|
|
|
|
|
(leave (_ "~a: ~a~%") proc
|
|
|
|
|
(apply format #f format-string format-args))))))
|
2012-10-31 19:50:01 -04:00
|
|
|
|
|
2014-06-14 16:37:24 -04:00
|
|
|
|
(define %guix-user-module
|
|
|
|
|
;; Module in which user expressions are evaluated.
|
2014-06-14 17:23:56 -04: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 16:37:24 -04:00
|
|
|
|
|
2013-11-18 17:08:20 -05:00
|
|
|
|
(define (read/eval str)
|
|
|
|
|
"Read and evaluate STR, raising an error if something goes wrong."
|
2013-03-01 15:55:42 -05:00
|
|
|
|
(let ((exp (catch #t
|
|
|
|
|
(lambda ()
|
|
|
|
|
(call-with-input-string str read))
|
|
|
|
|
(lambda args
|
|
|
|
|
(leave (_ "failed to read expression ~s: ~s~%")
|
|
|
|
|
str args)))))
|
2013-11-18 17:08:20 -05:00
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
2014-06-14 17:23:56 -04:00
|
|
|
|
(eval exp (force %guix-user-module)))
|
2013-11-18 17:08:20 -05:00
|
|
|
|
(lambda args
|
|
|
|
|
(leave (_ "failed to evaluate expression `~a': ~s~%")
|
|
|
|
|
exp args)))))
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
|
(_
|
|
|
|
|
(leave (_ "expression ~s does not evaluate to a package~%")
|
|
|
|
|
str))))
|
2013-03-01 15:55:42 -05:00
|
|
|
|
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(define* (show-what-to-build store drv
|
|
|
|
|
#:key dry-run? (use-substitutes? #t))
|
2013-02-20 17:41:24 -05:00
|
|
|
|
"Show what will or would (depending on DRY-RUN?) be built in realizing the
|
2013-02-22 15:08:06 -05:00
|
|
|
|
derivations listed in DRV. Return #t if there's something to build, #f
|
2013-04-16 18:06:59 -04:00
|
|
|
|
otherwise. When USE-SUBSTITUTES?, check and report what is prerequisites are
|
|
|
|
|
available for download."
|
2015-01-09 18:39:59 -05:00
|
|
|
|
(define substitutable?
|
|
|
|
|
;; 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?
|
|
|
|
|
(substitution-oracle store drv)
|
|
|
|
|
(const #f)))
|
|
|
|
|
|
2014-05-19 17:08:43 -04:00
|
|
|
|
(define (built-or-substitutable? drv)
|
2015-01-24 16:50:40 -05:00
|
|
|
|
(or (null? (derivation-outputs drv))
|
|
|
|
|
(let ((out (derivation->output-path drv))) ;XXX: assume "out" exists
|
2014-05-19 17:08:43 -04:00
|
|
|
|
(or (valid-path? store out)
|
2015-01-09 18:39:59 -05:00
|
|
|
|
(substitutable? out)))))
|
2014-05-19 17:08:43 -04:00
|
|
|
|
|
2013-04-16 18:06:59 -04: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 11:01:40 -04:00
|
|
|
|
(fold2 (lambda (drv build download)
|
|
|
|
|
(let-values (((b d)
|
|
|
|
|
(derivation-prerequisites-to-build
|
|
|
|
|
store drv
|
2015-01-09 18:39:59 -05:00
|
|
|
|
#:substitutable? substitutable?)))
|
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 11:01:40 -04:00
|
|
|
|
(values (append b build)
|
|
|
|
|
(append d download))))
|
2013-04-16 18:06:59 -04: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 11:01:40 -04:00
|
|
|
|
(append (map derivation-file-name
|
2014-05-19 17:08:43 -04:00
|
|
|
|
(remove built-or-substitutable? drv))
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(map derivation-input-path build))))
|
|
|
|
|
((download) ; add the references of DOWNLOAD
|
2013-06-30 18:29:22 -04:00
|
|
|
|
(if use-substitutes?
|
|
|
|
|
(delete-duplicates
|
|
|
|
|
(append download
|
|
|
|
|
(remove (cut valid-path? store <>)
|
|
|
|
|
(append-map
|
|
|
|
|
substitutable-references
|
|
|
|
|
(substitutable-path-info store
|
|
|
|
|
download)))))
|
|
|
|
|
download)))
|
2013-09-02 17:30:07 -04:00
|
|
|
|
;; TODO: Show the installed size of DOWNLOAD.
|
2013-02-20 17:41:24 -05:00
|
|
|
|
(if dry-run?
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(begin
|
|
|
|
|
(format (current-error-port)
|
2013-05-07 07:28:11 -04:00
|
|
|
|
(N_ "~:[The following derivation would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following derivations would be built:~%~{ ~a~%~}~;~]"
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(length build))
|
|
|
|
|
(null? build) build)
|
|
|
|
|
(format (current-error-port)
|
2013-05-07 07:28:11 -04:00
|
|
|
|
(N_ "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following files would be downloaded:~%~{ ~a~%~}~;~]"
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(length download))
|
|
|
|
|
(null? download) download))
|
|
|
|
|
(begin
|
|
|
|
|
(format (current-error-port)
|
2013-05-07 07:28:11 -04:00
|
|
|
|
(N_ "~:[The following derivation will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following derivations will be built:~%~{ ~a~%~}~;~]"
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(length build))
|
|
|
|
|
(null? build) build)
|
|
|
|
|
(format (current-error-port)
|
2013-05-07 07:28:11 -04:00
|
|
|
|
(N_ "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[The following files will be downloaded:~%~{ ~a~%~}~;~]"
|
2013-04-16 18:06:59 -04:00
|
|
|
|
(length download))
|
|
|
|
|
(null? download) download)))
|
|
|
|
|
(pair? build)))
|
2013-02-20 17:41:24 -05:00
|
|
|
|
|
2014-10-08 09:15:49 -04:00
|
|
|
|
(define (right-arrow port)
|
|
|
|
|
"Return either a string containing the 'RIGHT ARROW' character, or an ASCII
|
|
|
|
|
replacement if PORT is not Unicode-capable."
|
|
|
|
|
(with-fluids ((%default-port-encoding (port-encoding port)))
|
|
|
|
|
(let ((arrow "→"))
|
|
|
|
|
(catch 'encoding-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(call-with-output-string
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(set-port-conversion-strategy! port 'error)
|
|
|
|
|
(display arrow port))))
|
|
|
|
|
(lambda (key . args)
|
|
|
|
|
"->")))))
|
|
|
|
|
|
|
|
|
|
(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 12:52:00 -05:00
|
|
|
|
(let-values (((remove install upgrade downgrade)
|
2014-10-08 09:15:49 -04: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))))
|
|
|
|
|
(_ #f))
|
2015-02-08 12:52:00 -05: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))))
|
|
|
|
|
(_ #f))
|
2014-10-08 09:15:49 -04: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))))
|
|
|
|
|
(_ #f))
|
|
|
|
|
(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))))
|
|
|
|
|
(_ #f))))
|
|
|
|
|
|
2012-10-31 19:50:01 -04: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 17:02:59 -05:00
|
|
|
|
(define (location->string loc)
|
|
|
|
|
"Return a human-friendly, GNU-standard representation of LOC."
|
|
|
|
|
(match loc
|
|
|
|
|
(#f (_ "<unknown location>"))
|
|
|
|
|
(($ <location> file line column)
|
|
|
|
|
(format #f "~a:~a:~a" file line column))))
|
|
|
|
|
|
2013-02-20 17:03:24 -05:00
|
|
|
|
(define (switch-symlinks link target)
|
|
|
|
|
"Atomically switch LINK, a symbolic link, to point to TARGET. Works
|
|
|
|
|
both when LINK already exists and when it does not."
|
|
|
|
|
(let ((pivot (string-append link ".new")))
|
|
|
|
|
(symlink target pivot)
|
|
|
|
|
(rename-file pivot link)))
|
|
|
|
|
|
2013-02-20 17:46:38 -05:00
|
|
|
|
(define (config-directory)
|
|
|
|
|
"Return the name of the configuration directory, after making sure that it
|
|
|
|
|
exists. Honor the XDG specs,
|
|
|
|
|
<http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html>."
|
|
|
|
|
(let ((dir (and=> (or (getenv "XDG_CONFIG_HOME")
|
|
|
|
|
(and=> (getenv "HOME")
|
|
|
|
|
(cut string-append <> "/.config")))
|
|
|
|
|
(cut string-append <> "/guix"))))
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
2014-09-14 09:33:38 -04:00
|
|
|
|
(mkdir-p dir)
|
2013-02-20 17:46:38 -05:00
|
|
|
|
dir)
|
|
|
|
|
(lambda args
|
2014-09-14 09:33:38 -04:00
|
|
|
|
(let ((err (system-error-errno args)))
|
|
|
|
|
;; ERR is necessarily different from EEXIST.
|
|
|
|
|
(leave (_ "failed to create configuration directory `~a': ~a~%")
|
|
|
|
|
dir (strerror err)))))))
|
2013-02-20 17:46:38 -05:00
|
|
|
|
|
2013-02-01 07:16:27 -05: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-26 18:53:16 -04: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 07:16:27 -05: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-26 18:53:16 -04:00
|
|
|
|
(append before
|
|
|
|
|
(cons #\newline
|
|
|
|
|
(drop-while (cut eqv? #\space <>)
|
|
|
|
|
after)))))
|
2013-02-01 07:16:27 -05:00
|
|
|
|
`(,column 0 ,chars))) ; unbreakable
|
|
|
|
|
`(,column 0 ,chars)))))))))
|
|
|
|
|
|
|
|
|
|
(match (string-fold maybe-break
|
|
|
|
|
`(,column 0 ())
|
|
|
|
|
str)
|
|
|
|
|
((_ _ chars)
|
|
|
|
|
(list->string (reverse chars)))))
|
|
|
|
|
|
2013-11-01 11:57:48 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Packages.
|
|
|
|
|
;;;
|
|
|
|
|
|
2013-02-01 07:16:27 -05: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)))
|
|
|
|
|
|
|
|
|
|
(define* (package->recutils p port
|
|
|
|
|
#:optional (width (or (and=> (getenv "WIDTH")
|
|
|
|
|
string->number)
|
|
|
|
|
80)))
|
|
|
|
|
"Write to PORT a `recutils' record of package P, arranging to fit within
|
|
|
|
|
WIDTH columns."
|
|
|
|
|
(define (description->recutils str)
|
2014-06-13 11:30:40 -04:00
|
|
|
|
(let ((str (P_ str)))
|
2013-02-01 07:16:27 -05:00
|
|
|
|
(string->recutils
|
|
|
|
|
(fill-paragraph str width
|
|
|
|
|
(string-length "description: ")))))
|
|
|
|
|
|
2014-07-24 18:29:47 -04:00
|
|
|
|
(define (dependencies->recutils packages)
|
|
|
|
|
(let ((list (string-join (map package-full-name
|
|
|
|
|
(sort packages package<?)) " ")))
|
|
|
|
|
(string->recutils
|
|
|
|
|
(fill-paragraph list width
|
|
|
|
|
(string-length "dependencies: ")))))
|
|
|
|
|
|
2014-07-16 09:38:34 -04:00
|
|
|
|
(define (package<? p1 p2)
|
|
|
|
|
(string<? (package-full-name p1) (package-full-name p2)))
|
|
|
|
|
|
2013-02-01 07:16:27 -05: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))
|
2014-07-16 09:38:34 -04:00
|
|
|
|
(format port "dependencies: ~a~%"
|
|
|
|
|
(match (package-direct-inputs p)
|
2014-07-25 08:38:20 -04:00
|
|
|
|
(((labels inputs . _) ...)
|
|
|
|
|
(dependencies->recutils (filter package? inputs)))))
|
2013-02-01 07:16:27 -05:00
|
|
|
|
(format port "location: ~a~%"
|
|
|
|
|
(or (and=> (package-location p) location->string)
|
|
|
|
|
(_ "unknown")))
|
2014-01-13 12:49:26 -05: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 07:16:27 -05:00
|
|
|
|
(format port "license: ~a~%"
|
|
|
|
|
(match (package-license p)
|
|
|
|
|
(((? license? licenses) ...)
|
|
|
|
|
(string-join (map license-name licenses)
|
|
|
|
|
", "))
|
|
|
|
|
((? license? license)
|
|
|
|
|
(license-name license))
|
|
|
|
|
(x
|
|
|
|
|
(_ "unknown"))))
|
|
|
|
|
(format port "synopsis: ~a~%"
|
|
|
|
|
(string-map (match-lambda
|
|
|
|
|
(#\newline #\space)
|
|
|
|
|
(chr chr))
|
2014-06-13 11:30:40 -04:00
|
|
|
|
(or (and=> (package-synopsis p) P_)
|
2013-02-01 07:16:27 -05:00
|
|
|
|
"")))
|
|
|
|
|
(format port "description: ~a~%"
|
|
|
|
|
(and=> (package-description p) description->recutils))
|
|
|
|
|
(newline port))
|
|
|
|
|
|
2013-09-19 07:07:39 -04: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)))))
|
|
|
|
|
|
|
|
|
|
(cond ((string-match "^([0-9]+)d$" str)
|
|
|
|
|
=>
|
|
|
|
|
(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)))
|
|
|
|
|
|
2013-11-01 11:57:48 -04: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
|
|
|
|
|
guile-2.0.9
|
|
|
|
|
guile:debug
|
|
|
|
|
guile-2.0.9:debug
|
|
|
|
|
"
|
|
|
|
|
(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.
|
|
|
|
|
;;;
|
|
|
|
|
|
2013-04-27 10:46:39 -04:00
|
|
|
|
(define (args-fold* options unrecognized-option-proc operand-proc . seeds)
|
|
|
|
|
"A wrapper on top of `args-fold' that does proper user-facing error
|
|
|
|
|
reporting."
|
|
|
|
|
(catch 'misc-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(apply args-fold options unrecognized-option-proc
|
|
|
|
|
operand-proc seeds))
|
|
|
|
|
(lambda (key proc msg args . rest)
|
|
|
|
|
;; XXX: MSG is not i18n'd.
|
|
|
|
|
(leave (_ "invalid argument: ~a~%")
|
|
|
|
|
(apply format #f msg args)))))
|
|
|
|
|
|
2014-11-30 11:47:22 -05:00
|
|
|
|
(define (environment-build-options)
|
|
|
|
|
"Return additional build options passed as environment variables."
|
|
|
|
|
(arguments-from-environment-variable "GUIX_BUILD_OPTIONS"))
|
|
|
|
|
|
2015-02-25 17:31:51 -05:00
|
|
|
|
(define %default-argument-handler
|
|
|
|
|
;; The default handler for non-option command-line arguments.
|
|
|
|
|
(lambda (arg result)
|
|
|
|
|
(alist-cons 'argument arg result)))
|
|
|
|
|
|
|
|
|
|
(define* (parse-command-line args options seeds
|
|
|
|
|
#:key
|
|
|
|
|
(argument-handler %default-argument-handler))
|
|
|
|
|
"Parse the command-line arguments ARGS as well as arguments passed via the
|
|
|
|
|
'GUIX_BUILD_OPTIONS' environment variable according to OPTIONS (a list of
|
|
|
|
|
SRFI-37 options) and return the result, seeded by SEEDS.
|
|
|
|
|
Command-line options take precedence those passed via 'GUIX_BUILD_OPTIONS'.
|
|
|
|
|
|
|
|
|
|
ARGUMENT-HANDLER is called for non-option arguments, like the 'operand-proc'
|
|
|
|
|
parameter of 'args-fold'."
|
2015-02-25 18:00:04 -05:00
|
|
|
|
(define (parse-options-from args seeds)
|
2015-02-25 17:31:51 -05:00
|
|
|
|
;; Actual parsing takes place here.
|
|
|
|
|
(apply args-fold* args options
|
|
|
|
|
(lambda (opt name arg . rest)
|
|
|
|
|
(leave (_ "~A: unrecognized option~%") name))
|
|
|
|
|
argument-handler
|
|
|
|
|
seeds))
|
|
|
|
|
|
2015-02-25 18:00:04 -05:00
|
|
|
|
(call-with-values
|
|
|
|
|
(lambda ()
|
|
|
|
|
(parse-options-from (environment-build-options) seeds))
|
|
|
|
|
(lambda seeds
|
|
|
|
|
;; ARGS take precedence over what the environment variable specifies.
|
|
|
|
|
(parse-options-from args seeds))))
|
2015-02-25 17:31:51 -05: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 04:15:25 -05:00
|
|
|
|
(define (show-guix-usage)
|
|
|
|
|
(format (current-error-port)
|
2013-05-10 17:14:26 -04:00
|
|
|
|
(_ "Try `guix --help' for more information.~%"))
|
|
|
|
|
(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 04:15:25 -05:00
|
|
|
|
|
2013-05-10 06:33:18 -04: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 07:37:21 -04:00
|
|
|
|
(define dot-scm?
|
|
|
|
|
(cut string-suffix? ".scm" <>))
|
|
|
|
|
|
|
|
|
|
;; In Guile 2.0.5 `scandir' would return "." and ".." regardless even though
|
|
|
|
|
;; they don't match `dot-scm?'. Work around it by doing additional
|
|
|
|
|
;; filtering.
|
2013-05-10 06:33:18 -04:00
|
|
|
|
(if directory
|
2013-05-14 07:37:21 -04:00
|
|
|
|
(filter dot-scm? (scandir directory dot-scm?))
|
2013-05-10 06:33:18 -04: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 17:31:17 -05:00
|
|
|
|
(define (internal? command)
|
2015-03-25 05:34:27 -04:00
|
|
|
|
(member command '("substitute" "authenticate" "offload")))
|
2014-01-06 17:31:17 -05:00
|
|
|
|
|
2013-05-10 06:33:18 -04:00
|
|
|
|
(format #t (_ "Usage: guix COMMAND ARGS...
|
|
|
|
|
Run COMMAND with ARGS.\n"))
|
|
|
|
|
(newline)
|
|
|
|
|
(format #t (_ "COMMAND must be one of the sub-commands listed below:\n"))
|
|
|
|
|
(newline)
|
|
|
|
|
;; TODO: Display a synopsis of each command.
|
2014-01-06 17:31:17 -05:00
|
|
|
|
(format #t "~{ ~a~%~}" (sort (remove internal? (commands))
|
|
|
|
|
string<?))
|
2013-05-10 06:33:18 -04:00
|
|
|
|
(show-bug-report-information))
|
|
|
|
|
|
2013-04-11 16:30:06 -04:00
|
|
|
|
(define program-name
|
|
|
|
|
;; Name of the command-line program currently executing, or #f.
|
|
|
|
|
(make-parameter #f))
|
|
|
|
|
|
2013-05-10 06:14:01 -04: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 17:14:26 -04:00
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(_ "guix: ~a: command not found~%") command)
|
|
|
|
|
(show-guix-usage))))
|
2013-05-10 06:14:01 -04:00
|
|
|
|
|
|
|
|
|
(let ((command-main (module-ref module
|
|
|
|
|
(symbol-append 'guix- command))))
|
|
|
|
|
(parameterize ((program-name command))
|
|
|
|
|
(apply command-main args))))
|
|
|
|
|
|
2013-04-11 16:30:06 -04: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 04:15:25 -05:00
|
|
|
|
(define (guix-main arg0 . args)
|
|
|
|
|
(initialize-guix)
|
|
|
|
|
(let ()
|
|
|
|
|
(define (option? str) (string-prefix? "-" str))
|
|
|
|
|
(match args
|
2013-05-10 17:14:26 -04:00
|
|
|
|
(()
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(_ "guix: missing command name~%"))
|
|
|
|
|
(show-guix-usage))
|
2013-08-15 15:03:32 -04:00
|
|
|
|
((or ("-h") ("--help"))
|
2013-05-10 17:14:26 -04:00
|
|
|
|
(show-guix-help))
|
|
|
|
|
(("--version")
|
|
|
|
|
(show-version-and-exit "guix"))
|
|
|
|
|
(((? option? o) args ...)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(_ "guix: unrecognized option '~a'~%") o)
|
|
|
|
|
(show-guix-usage))
|
2015-04-03 16:10:02 -04:00
|
|
|
|
(("help" args ...)
|
|
|
|
|
(show-guix-help))
|
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 04:15:25 -05:00
|
|
|
|
((command args ...)
|
2013-05-10 06:14:01 -04:00
|
|
|
|
(apply run-guix-command
|
|
|
|
|
(string->symbol command)
|
|
|
|
|
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 04:15:25 -05:00
|
|
|
|
|
2012-10-31 19:50:01 -04:00
|
|
|
|
;;; ui.scm ends here
|