summaryrefslogtreecommitdiff
path: root/meta/guild.in
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-07-23 18:24:16 +0200
committerAndy Wingo <wingo@pobox.com>2011-07-23 18:24:16 +0200
commitf4a76a315ad8f1f6f4dbdfbd2f030c6b299cb5a4 (patch)
treecbeb502ad36171433eedaa431ca202523357a751 /meta/guild.in
parenta1a2ed534278b968767727485f84e5957c039c23 (diff)
add (scripts help)
* meta/guild.in (display-version): Use (ice-9 command-line)'s version-etc. (main): Dispatch --help to guild help. * module/scripts/help.scm: New file, a copy of list.scm, but with a better name. * module/Makefile.am: Add help.scm to the list. * module/scripts/list.scm: Change to be an alias to "help". (list-scripts): Restore this API.
Diffstat (limited to 'meta/guild.in')
-rwxr-xr-xmeta/guild.in52
1 files changed, 19 insertions, 33 deletions
diff --git a/meta/guild.in b/meta/guild.in
index bb9c37e05..be4e5b5a3 100755
--- a/meta/guild.in
+++ b/meta/guild.in
@@ -25,6 +25,7 @@ exec guile $GUILE_FLAGS -e '(@@ (guild) main)' -s "$0" "$@"
(define-module (guild)
#:use-module (ice-9 getopt-long)
+ #:use-module (ice-9 command-line)
#:autoload (ice-9 format) (format))
;; Hack to provide scripts with the bug-report address.
@@ -37,23 +38,11 @@ exec guile $GUILE_FLAGS -e '(@@ (guild) main)' -s "$0" "$@"
'((help (single-char #\h))
(version (single-char #\v))))
-(define (display-help)
- (display "\
-Usage: guild --version
- guild --help
- guild PROGRAM [ARGS]
-
-If PROGRAM is \"list\" or omitted, display available scripts, otherwise
-PROGRAM is run with ARGS.
-"))
-
(define (display-version)
- (format #t "guild (GNU Guile ~A) ~A
-Copyright (C) 2010 Free Software Foundation, Inc.
-License LGPLv3+: GNU LGPL version 3 or later <http://gnu.org/licenses/lgpl.html>
-This is free software: you are free to change and redistribute it.
-There is NO WARRANTY, to the extent permitted by law.
-" (version) (effective-version)))
+ (version-etc "GNU Guile"
+ (effective-version)
+ #:command-name "guild"
+ #:license *LGPLv3+*))
(define (find-script s)
(resolve-module (list 'scripts (string->symbol s)) #:ensure #f))
@@ -62,27 +51,24 @@ There is NO WARRANTY, to the extent permitted by law.
(if (defined? 'setlocale)
(setlocale LC_ALL ""))
- (let ((options (getopt-long args *option-grammar*
- #:stop-at-first-non-option #t)))
+ (let* ((options (getopt-long args *option-grammar*
+ #:stop-at-first-non-option #t))
+ (args (option-ref options '() '())))
(cond
((option-ref options 'help #f)
- (display-help)
+ (apply (module-ref (resolve-module '(scripts help)) 'main) args)
(exit 0))
((option-ref options 'version #f)
(display-version)
(exit 0))
+ ((find-script (if (null? args) "help" (car args)))
+ => (lambda (mod)
+ (exit (apply (module-ref mod 'main) (if (null? args)
+ '()
+ (cdr args))))))
(else
- (let ((args (option-ref options '() '())))
- (cond ((find-script (if (null? args)
- "list"
- (car args)))
- => (lambda (mod)
- (exit (apply (module-ref mod 'main) (if (null? args)
- '()
- (cdr args))))))
- (else
- (format (current-error-port)
- "guild: unknown script ~s~%" (car args))
- (format (current-error-port)
- "Try `guild --help' for more information.~%")
- (exit 1))))))))
+ (format (current-error-port)
+ "guild: unknown script ~s~%" (car args))
+ (format (current-error-port)
+ "Try `guild help' for more information.~%")
+ (exit 1)))))