2009-04-17 11:19:42 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
# -*- scheme -*-
|
2014-04-24 11:16:21 +02:00
|
|
|
exec ${GUILE:-@installed_guile@} $GUILE_FLAGS -e '(@@ (guild) main)' -s "$0" "$@"
|
2009-04-17 11:19:42 +02:00
|
|
|
!#
|
|
|
|
|
|
2011-05-30 23:02:03 +02:00
|
|
|
;;;; guild --- running scripts bundled with Guile
|
2009-06-19 22:01:56 +02:00
|
|
|
;;;; Andy Wingo <wingo@pobox.com> --- April 2009
|
2009-04-17 11:19:42 +02:00
|
|
|
;;;;
|
2014-04-24 11:16:21 +02:00
|
|
|
;;;; Copyright (C) 2009, 2010, 2011, 2013, 2014 Free Software Foundation, Inc.
|
2009-04-17 11:19:42 +02:00
|
|
|
;;;;
|
|
|
|
|
;;;; This library is free software; you can redistribute it and/or
|
|
|
|
|
;;;; modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
;;;; License as published by the Free Software Foundation; either
|
2009-06-17 00:22:09 +01:00
|
|
|
;;;; version 3 of the License, or (at your option) any later version.
|
2009-04-17 11:19:42 +02:00
|
|
|
;;;;
|
|
|
|
|
;;;; This library is distributed in the hope that it will be useful,
|
|
|
|
|
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
;;;; Lesser General Public License for more details.
|
|
|
|
|
;;;;
|
|
|
|
|
;;;; You should have received a copy of the GNU Lesser General Public
|
2009-06-17 00:22:09 +01:00
|
|
|
;;;; License along with this library; if not, write to the Free
|
|
|
|
|
;;;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
;;;; Boston, MA 02110-1301 USA
|
2009-04-17 11:19:42 +02:00
|
|
|
|
2011-05-30 23:02:03 +02:00
|
|
|
(define-module (guild)
|
2011-05-08 22:51:07 +01:00
|
|
|
#:use-module (ice-9 getopt-long)
|
2011-07-23 18:24:16 +02:00
|
|
|
#:use-module (ice-9 command-line)
|
2011-01-27 18:18:10 +01:00
|
|
|
#:autoload (ice-9 format) (format))
|
2009-04-20 17:23:40 +02:00
|
|
|
|
2009-08-15 12:53:59 +02:00
|
|
|
;; Hack to provide scripts with the bug-report address.
|
|
|
|
|
(module-define! the-scm-module
|
|
|
|
|
'%guile-bug-report-address
|
|
|
|
|
"@PACKAGE_BUGREPORT@")
|
|
|
|
|
|
|
|
|
|
|
2011-01-27 11:15:01 +01:00
|
|
|
(define *option-grammar*
|
|
|
|
|
'((help (single-char #\h))
|
|
|
|
|
(version (single-char #\v))))
|
|
|
|
|
|
2010-09-04 11:00:33 -07:00
|
|
|
(define (display-version)
|
2011-07-23 22:43:08 +02:00
|
|
|
(version-etc "@PACKAGE_NAME@"
|
|
|
|
|
(version)
|
2011-07-23 18:24:16 +02:00
|
|
|
#:command-name "guild"
|
|
|
|
|
#:license *LGPLv3+*))
|
2010-09-04 11:00:33 -07:00
|
|
|
|
2009-04-17 11:19:42 +02:00
|
|
|
(define (find-script s)
|
2011-01-27 11:24:22 +01:00
|
|
|
(resolve-module (list 'scripts (string->symbol s)) #:ensure #f))
|
2009-04-17 11:19:42 +02:00
|
|
|
|
|
|
|
|
(define (main args)
|
Allow compilation with `--disable-posix'.
Reported by Dmitry Dzhus <dima@dzhus.org>.
* configure.ac: Remove `AC_LIBOBJ([filesys])'. Document
`--disable-posix' as omitting non-essential POSIX interfaces.
* libguile/Makefile.am (libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES):
Add `filesys.c'.
(DOT_DOC_FILES): Add `filesys.doc'.
(EXTRA_libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES): Remove
`filesys.c'.
* libguile/posix.c (scm_mkstemp, scm_access): Move to `filesys.c'.
(scm_init_posix): Move `R_OK' etc. to `filesys.c'.
* libguile/filesys.c (scm_chown, scm_chmod, scm_umask, scm_open_fdes,
scm_open, scm_close, scm_close_fdes, scm_link, scm_tc16_dir,
scm_directory_stream_p, scm_opendir, scm_readdir, scm_rewinddir,
scm_closedir, scm_dir_print, scm_dir_free, scm_chdir, scm_getcwd,
set_element, fill_select_type, get_element, retrieve_select_type,
scm_select, scm_fcntl, scm_fsync, scm_symlink, scm_readlink,
scm_lstat, scm_copy_file): Conditionalize on HAVE_POSIX.
(scm_mkstemp, scm_access): New functions.
(scm_init_filesys): Conditionalize `scm_tc16_dir', `O_RDONLY', etc. on
HAVE_POSIX. Define `R_OK', `W_OK', etc.
* libguile/fports.c (fport_print): Use `scm_ttyname' only when
HAVE_POSIX.
* libguile/i18n.c (lock_locale_mutex, unlock_locale_mutex): New
functions. Update users of `scm_i_locale_mutex' to use them.
* libguile/init.c (scm_i_init_guile): Always call `scm_init_filesys'.
* meta/guile-tools.in (main): Use `setlocale' only when it is defined.
* module/ice-9/boot-9.scm: Always load `ice-9/posix'.
2011-04-14 23:42:28 +02:00
|
|
|
(if (defined? 'setlocale)
|
2013-02-01 18:19:27 +01:00
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(setlocale LC_ALL ""))
|
|
|
|
|
(lambda args
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"warning: failed to install locale: ~a~%"
|
|
|
|
|
(strerror (system-error-errno args))))))
|
Allow compilation with `--disable-posix'.
Reported by Dmitry Dzhus <dima@dzhus.org>.
* configure.ac: Remove `AC_LIBOBJ([filesys])'. Document
`--disable-posix' as omitting non-essential POSIX interfaces.
* libguile/Makefile.am (libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES):
Add `filesys.c'.
(DOT_DOC_FILES): Add `filesys.doc'.
(EXTRA_libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES): Remove
`filesys.c'.
* libguile/posix.c (scm_mkstemp, scm_access): Move to `filesys.c'.
(scm_init_posix): Move `R_OK' etc. to `filesys.c'.
* libguile/filesys.c (scm_chown, scm_chmod, scm_umask, scm_open_fdes,
scm_open, scm_close, scm_close_fdes, scm_link, scm_tc16_dir,
scm_directory_stream_p, scm_opendir, scm_readdir, scm_rewinddir,
scm_closedir, scm_dir_print, scm_dir_free, scm_chdir, scm_getcwd,
set_element, fill_select_type, get_element, retrieve_select_type,
scm_select, scm_fcntl, scm_fsync, scm_symlink, scm_readlink,
scm_lstat, scm_copy_file): Conditionalize on HAVE_POSIX.
(scm_mkstemp, scm_access): New functions.
(scm_init_filesys): Conditionalize `scm_tc16_dir', `O_RDONLY', etc. on
HAVE_POSIX. Define `R_OK', `W_OK', etc.
* libguile/fports.c (fport_print): Use `scm_ttyname' only when
HAVE_POSIX.
* libguile/i18n.c (lock_locale_mutex, unlock_locale_mutex): New
functions. Update users of `scm_i_locale_mutex' to use them.
* libguile/init.c (scm_i_init_guile): Always call `scm_init_filesys'.
* meta/guile-tools.in (main): Use `setlocale' only when it is defined.
* module/ice-9/boot-9.scm: Always load `ice-9/posix'.
2011-04-14 23:42:28 +02:00
|
|
|
|
2011-07-23 18:24:16 +02:00
|
|
|
(let* ((options (getopt-long args *option-grammar*
|
|
|
|
|
#:stop-at-first-non-option #t))
|
|
|
|
|
(args (option-ref options '() '())))
|
2011-05-08 22:51:07 +01:00
|
|
|
(cond
|
|
|
|
|
((option-ref options 'help #f)
|
2011-07-23 18:24:16 +02:00
|
|
|
(apply (module-ref (resolve-module '(scripts help)) 'main) args)
|
2011-05-08 22:51:07 +01:00
|
|
|
(exit 0))
|
|
|
|
|
((option-ref options 'version #f)
|
|
|
|
|
(display-version)
|
|
|
|
|
(exit 0))
|
2011-07-23 18:24:16 +02:00
|
|
|
((find-script (if (null? args) "help" (car args)))
|
|
|
|
|
=> (lambda (mod)
|
|
|
|
|
(exit (apply (module-ref mod 'main) (if (null? args)
|
|
|
|
|
'()
|
|
|
|
|
(cdr args))))))
|
2011-05-08 22:51:07 +01:00
|
|
|
(else
|
2011-07-23 18:24:16 +02:00
|
|
|
(format (current-error-port)
|
|
|
|
|
"guild: unknown script ~s~%" (car args))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"Try `guild help' for more information.~%")
|
|
|
|
|
(exit 1)))))
|