2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2012, 2013 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 10:15:25 +01:00
|
|
|
;;; Copyright © 2013 Mark H Weaver <mhw@netris.org>
|
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)
|
|
|
|
#: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)
|
2013-02-20 23:41:24 +01:00
|
|
|
#:use-module (guix derivations)
|
2013-02-01 13:16:27 +01:00
|
|
|
#:use-module ((guix licenses) #:select (license? license-name))
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
#:use-module (srfi srfi-11)
|
2012-11-01 00:50:01 +01:00
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
#:use-module (srfi srfi-34)
|
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)
|
2012-11-01 00:50:01 +01:00
|
|
|
#:export (_
|
|
|
|
N_
|
|
|
|
leave
|
2012-11-03 21:19:43 +01:00
|
|
|
show-version-and-exit
|
2013-01-05 15:55:47 +01:00
|
|
|
show-bug-report-information
|
2013-02-20 23:41:24 +01:00
|
|
|
show-what-to-build
|
2012-11-01 00:50:01 +01:00
|
|
|
call-with-error-handling
|
2012-11-19 23:02:59 +01:00
|
|
|
with-error-handling
|
2013-03-01 21:55:42 +01:00
|
|
|
read/eval-package-expression
|
2013-02-01 13:16:27 +01:00
|
|
|
location->string
|
2013-02-20 23:03:24 +01:00
|
|
|
call-with-temporary-output-file
|
|
|
|
switch-symlinks
|
2013-02-20 23:46:38 +01:00
|
|
|
config-directory
|
2013-02-01 13:16:27 +01: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 10:15:25 +01:00
|
|
|
package->recutils
|
|
|
|
run-guix-command
|
|
|
|
guix-main))
|
2012-11-01 00:50:01 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; User interface facilities for command-line tools.
|
|
|
|
;;;
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(define %gettext-domain
|
|
|
|
"guix")
|
|
|
|
|
|
|
|
(define _ (cut gettext <> %gettext-domain))
|
|
|
|
(define N_ (cut ngettext <> <> <> %gettext-domain))
|
|
|
|
|
2013-01-29 23:59:27 +01:00
|
|
|
(define (install-locale)
|
|
|
|
"Install the current locale settings."
|
|
|
|
(catch 'system-error
|
|
|
|
(lambda _
|
|
|
|
(setlocale LC_ALL ""))
|
|
|
|
(lambda args
|
|
|
|
(format (current-error-port)
|
|
|
|
(_ "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 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."
|
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)
|
|
|
|
(textdomain "guix")
|
|
|
|
(setvbuf (current-output-port) _IOLBF)
|
|
|
|
(setvbuf (current-error-port) _IOLBF))
|
|
|
|
|
2012-11-01 00:50:01 +01:00
|
|
|
(define-syntax-rule (leave fmt args ...)
|
|
|
|
"Format FMT and ARGS to the error port and exit."
|
|
|
|
(begin
|
|
|
|
(format (current-error-port) fmt args ...)
|
|
|
|
(exit 1)))
|
|
|
|
|
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)
|
|
|
|
(exit 0))
|
|
|
|
|
2013-01-05 15:55:47 +01: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))
|
|
|
|
|
2012-11-01 00:50:01 +01: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)))
|
|
|
|
(leave (_ "~a:~a:~a: error: package `~a' has an invalid input: ~s~%")
|
|
|
|
file line column
|
|
|
|
(package-full-name package) input)))
|
2013-03-07 19:29:12 +01:00
|
|
|
((nix-connection-error? c)
|
|
|
|
(leave (_ "error: failed to connect to `~a': ~a~%")
|
|
|
|
(nix-connection-error-file c)
|
|
|
|
(strerror (nix-connection-error-code c))))
|
2012-11-01 00:50:01 +01:00
|
|
|
((nix-protocol-error? c)
|
|
|
|
;; FIXME: Server-provided error messages aren't i18n'd.
|
|
|
|
(leave (_ "error: build failed: ~a~%")
|
|
|
|
(nix-protocol-error-message c))))
|
|
|
|
(thunk)))
|
|
|
|
|
2013-03-01 21:55:42 +01:00
|
|
|
(define (read/eval-package-expression str)
|
|
|
|
"Read and evaluate STR and return the package it refers to, or exit an
|
|
|
|
error."
|
|
|
|
(let ((exp (catch #t
|
|
|
|
(lambda ()
|
|
|
|
(call-with-input-string str read))
|
|
|
|
(lambda args
|
|
|
|
(leave (_ "failed to read expression ~s: ~s~%")
|
|
|
|
str args)))))
|
|
|
|
(let ((p (catch #t
|
|
|
|
(lambda ()
|
|
|
|
(eval exp the-scm-module))
|
|
|
|
(lambda args
|
|
|
|
(leave (_ "failed to evaluate expression `~a': ~s~%")
|
|
|
|
exp args)))))
|
|
|
|
(if (package? p)
|
|
|
|
p
|
|
|
|
(leave (_ "expression `~s' does not evaluate to a package~%")
|
|
|
|
exp)))))
|
|
|
|
|
2013-02-20 23:41:24 +01:00
|
|
|
(define* (show-what-to-build store drv #:optional dry-run?)
|
|
|
|
"Show what will or would (depending on DRY-RUN?) be built in realizing the
|
2013-02-22 21:08:06 +01:00
|
|
|
derivations listed in DRV. Return #t if there's something to build, #f
|
|
|
|
otherwise."
|
2013-02-20 23:41:24 +01:00
|
|
|
(let* ((req (append-map (lambda (drv-path)
|
|
|
|
(let ((d (call-with-input-file drv-path
|
|
|
|
read-derivation)))
|
|
|
|
(derivation-prerequisites-to-build
|
|
|
|
store d)))
|
|
|
|
drv))
|
|
|
|
(req* (delete-duplicates
|
|
|
|
(append (remove (compose (cute valid-path? store <>)
|
|
|
|
derivation-path->output-path)
|
|
|
|
drv)
|
|
|
|
(map derivation-input-path req)))))
|
|
|
|
(if dry-run?
|
|
|
|
(format (current-error-port)
|
|
|
|
(N_ "~:[the following derivation would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
"~:[the following derivations would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
(length req*))
|
|
|
|
(null? req*) req*)
|
|
|
|
(format (current-error-port)
|
|
|
|
(N_ "~:[the following derivation will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
"~:[the following derivations will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
(length req*))
|
2013-02-22 21:08:06 +01:00
|
|
|
(null? req*) req*))
|
|
|
|
(pair? req*)))
|
2013-02-20 23:41:24 +01: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
|
|
|
|
(#f (_ "<unknown location>"))
|
|
|
|
(($ <location> file line column)
|
|
|
|
(format #f "~a:~a:~a" file line column))))
|
|
|
|
|
2013-02-20 23:03:24 +01:00
|
|
|
(define (call-with-temporary-output-file proc)
|
|
|
|
"Call PROC with a name of a temporary file and open output port to that
|
|
|
|
file; close the file and delete it when leaving the dynamic extent of this
|
|
|
|
call."
|
|
|
|
(let* ((template (string-copy "guix-file.XXXXXX"))
|
|
|
|
(out (mkstemp! template)))
|
|
|
|
(dynamic-wind
|
|
|
|
(lambda ()
|
|
|
|
#t)
|
|
|
|
(lambda ()
|
|
|
|
(proc template out))
|
|
|
|
(lambda ()
|
|
|
|
(false-if-exception (close out))
|
|
|
|
(false-if-exception (delete-file template))))))
|
|
|
|
|
|
|
|
(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 23:46:38 +01: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 ()
|
|
|
|
(mkdir dir)
|
|
|
|
dir)
|
|
|
|
(lambda args
|
|
|
|
(match (system-error-errno args)
|
|
|
|
((or EEXIST 0)
|
|
|
|
dir)
|
|
|
|
(err
|
|
|
|
(leave (_ "failed to create configuration directory `~a': ~a~%")
|
|
|
|
dir (strerror err))))))))
|
|
|
|
|
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
|
|
|
|
(let ((chars (case newlines
|
|
|
|
((0) chars)
|
|
|
|
((1) (cons #\space chars))
|
|
|
|
(else
|
|
|
|
(append (make-list newlines #\newline) chars))))
|
|
|
|
(column (case newlines
|
|
|
|
((0) column)
|
|
|
|
((1) (+ 1 column))
|
|
|
|
(else 0))))
|
|
|
|
(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
|
|
|
|
(append before (cons #\newline (cdr after)))))
|
|
|
|
`(,column 0 ,chars))) ; unbreakable
|
|
|
|
`(,column 0 ,chars)))))))))
|
|
|
|
|
|
|
|
(match (string-fold maybe-break
|
|
|
|
`(,column 0 ())
|
|
|
|
str)
|
|
|
|
((_ _ chars)
|
|
|
|
(list->string (reverse chars)))))
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(let ((str (_ str)))
|
|
|
|
(string->recutils
|
|
|
|
(fill-paragraph str width
|
|
|
|
(string-length "description: ")))))
|
|
|
|
|
|
|
|
;; 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))
|
|
|
|
(format port "location: ~a~%"
|
|
|
|
(or (and=> (package-location p) location->string)
|
|
|
|
(_ "unknown")))
|
|
|
|
(format port "home-page: ~a~%" (package-home-page p))
|
|
|
|
(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))
|
|
|
|
(or (and=> (package-synopsis p) _)
|
|
|
|
"")))
|
|
|
|
(format port "description: ~a~%"
|
|
|
|
(and=> (package-description p) description->recutils))
|
|
|
|
(newline 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 (show-guix-usage)
|
|
|
|
;; TODO: Dynamically generate a summary of available commands.
|
|
|
|
(format (current-error-port)
|
|
|
|
(_ "Usage: guix COMMAND ARGS...~%")))
|
|
|
|
|
|
|
|
(define (run-guix-command command . args)
|
|
|
|
;; TODO: Gracefully report errors
|
|
|
|
(let* ((module (resolve-interface `(guix scripts ,command)))
|
|
|
|
(command-main (module-ref module
|
|
|
|
(symbol-append 'guix- command))))
|
|
|
|
(apply command-main args)))
|
|
|
|
|
|
|
|
(define (guix-main arg0 . args)
|
|
|
|
(initialize-guix)
|
|
|
|
(let ()
|
|
|
|
(define (option? str) (string-prefix? "-" str))
|
|
|
|
(match args
|
|
|
|
(() (show-guix-usage) (exit 1))
|
|
|
|
(("--help") (show-guix-usage))
|
|
|
|
(("--version") (show-version-and-exit "guix"))
|
|
|
|
(((? option? arg1) args ...) (show-guix-usage) (exit 1))
|
|
|
|
((command args ...)
|
|
|
|
(apply run-guix-command
|
|
|
|
(string->symbol command)
|
|
|
|
args)))))
|
|
|
|
|
2012-11-01 00:50:01 +01:00
|
|
|
;;; ui.scm ends here
|