2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-11-11 15:30:58 +01:00
|
|
|
|
;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2014-09-27 16:16:23 +02:00
|
|
|
|
;;; Copyright © 2014 David Thompson <davet@gnu.org>
|
2012-11-04 19:38:31 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-04 19:38:31 +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-04 19:38:31 +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-04 19:38:31 +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-04 19:38:31 +01: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-module (guix scripts import)
|
2012-11-04 19:38:31 +01:00
|
|
|
|
#:use-module (guix ui)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module (srfi srfi-37)
|
2014-09-27 16:16:23 +02:00
|
|
|
|
#:use-module (ice-9 format)
|
2012-11-04 19:38:31 +01:00
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 pretty-print)
|
2014-09-27 16:16:23 +02:00
|
|
|
|
#:export (%standard-import-options
|
|
|
|
|
guix-import))
|
2012-11-04 19:38:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Helper.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (newline-rewriting-port output)
|
|
|
|
|
"Return an output port that rewrites strings containing the \\n escape
|
|
|
|
|
to an actual newline. This works around the behavior of `pretty-print'
|
|
|
|
|
and `write', which output these as \\n instead of actual newlines,
|
|
|
|
|
whereas we want the `description' field to contain actual newlines
|
|
|
|
|
rather than \\n."
|
|
|
|
|
(define (write-string str)
|
|
|
|
|
(let loop ((chars (string->list str)))
|
|
|
|
|
(match chars
|
|
|
|
|
(()
|
|
|
|
|
#t)
|
|
|
|
|
((#\\ #\n rest ...)
|
|
|
|
|
(newline output)
|
|
|
|
|
(loop rest))
|
|
|
|
|
((chr rest ...)
|
|
|
|
|
(write-char chr output)
|
|
|
|
|
(loop rest)))))
|
|
|
|
|
|
|
|
|
|
(make-soft-port (vector (cut write-char <>)
|
|
|
|
|
write-string
|
|
|
|
|
(lambda _ #t) ; flush
|
|
|
|
|
#f
|
|
|
|
|
(lambda _ #t) ; close
|
|
|
|
|
#f)
|
|
|
|
|
"w"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
2014-09-27 16:16:23 +02:00
|
|
|
|
;;; Command line options.
|
2012-11-04 19:38:31 +01:00
|
|
|
|
;;;
|
|
|
|
|
|
2014-09-27 16:16:23 +02:00
|
|
|
|
(define %standard-import-options '())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Entry point.
|
|
|
|
|
;;;
|
|
|
|
|
|
2015-07-24 16:49:57 +02:00
|
|
|
|
(define importers '("gnu" "nix" "pypi" "cpan" "hackage" "elpa" "gem" "cran"))
|
2014-09-27 16:16:23 +02:00
|
|
|
|
|
|
|
|
|
(define (resolve-importer name)
|
|
|
|
|
(let ((module (resolve-interface
|
|
|
|
|
`(guix scripts import ,(string->symbol name))))
|
|
|
|
|
(proc (string->symbol (string-append "guix-import-" name))))
|
|
|
|
|
(module-ref module proc)))
|
2012-11-04 19:38:31 +01:00
|
|
|
|
|
|
|
|
|
(define (show-help)
|
2014-09-27 16:16:23 +02:00
|
|
|
|
(display (_ "Usage: guix import IMPORTER ARGS ...
|
|
|
|
|
Run IMPORTER with ARGS.\n"))
|
|
|
|
|
(newline)
|
|
|
|
|
(display (_ "IMPORTER must be one of the importers listed below:\n"))
|
2015-06-07 10:46:06 +02:00
|
|
|
|
(newline)
|
2014-09-27 16:16:23 +02:00
|
|
|
|
(format #t "~{ ~a~%~}" importers)
|
2012-11-04 19:38:31 +01:00
|
|
|
|
(display (_ "
|
|
|
|
|
-h, --help display this help and exit"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-V, --version display version information and exit"))
|
|
|
|
|
(newline)
|
2013-01-05 15:55:47 +01:00
|
|
|
|
(show-bug-report-information))
|
2012-11-04 19:38:31 +01:00
|
|
|
|
|
|
|
|
|
(define (guix-import . args)
|
2014-09-27 16:16:23 +02:00
|
|
|
|
(match args
|
|
|
|
|
(()
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(_ "guix import: missing importer name~%")))
|
|
|
|
|
((or ("-h") ("--help"))
|
|
|
|
|
(show-help)
|
|
|
|
|
(exit 0))
|
|
|
|
|
(("--version")
|
|
|
|
|
(show-version-and-exit "guix import"))
|
|
|
|
|
((importer args ...)
|
|
|
|
|
(if (member importer importers)
|
|
|
|
|
(let ((expr (apply (resolve-importer importer) args)))
|
|
|
|
|
(pretty-print expr (newline-rewriting-port (current-output-port))))
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(_ "guix import: invalid importer~%"))))))
|