2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-02-06 18:46:34 +01:00
|
|
|
;;; Copyright © 2012, 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
2016-01-22 05:09:42 +01:00
|
|
|
;;; Copyright © 2014, 2016 Eric Bavier <bavier@member.fsf.org>
|
2015-07-10 20:35:23 +02:00
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2012-11-13 21:46:10 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-13 21:46:10 +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-13 21:46:10 +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-13 21:46:10 +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-13 21:46:10 +01:00
|
|
|
|
2013-01-18 01:06:24 +01:00
|
|
|
(define-module (gnu packages texinfo)
|
distro: Use (guix licenses) instead of strings.
* distro/packages/acl.scm, distro/packages/attr.scm,
distro/packages/autotools.scm, distro/packages/base.scm,
distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/bison.scm, distro/packages/bootstrap.scm,
distro/packages/compression.scm, distro/packages/cpio.scm,
distro/packages/ddrescue.scm, distro/packages/ed.scm,
distro/packages/flex.scm, distro/packages/gawk.scm,
distro/packages/gdbm.scm, distro/packages/gettext.scm,
distro/packages/gnupg.scm, distro/packages/gnutls.scm,
distro/packages/gperf.scm, distro/packages/guile.scm,
distro/packages/help2man.scm, distro/packages/less.scm,
distro/packages/libffi.scm, distro/packages/libsigsegv.scm,
distro/packages/libunistring.scm, distro/packages/linux.scm,
distro/packages/lout.scm, distro/packages/lsh.scm,
distro/packages/m4.scm, distro/packages/multiprecision.scm,
distro/packages/nano.scm, distro/packages/ncurses.scm,
distro/packages/nettle.scm, distro/packages/perl.scm,
distro/packages/pkg-config.scm, distro/packages/pth.scm,
distro/packages/readline.scm, distro/packages/recutils.scm,
distro/packages/shishi.scm, distro/packages/system.scm,
distro/packages/texinfo.scm, distro/packages/time.scm,
distro/packages/wget.scm, distro/packages/which.scm,
distro/packages/zile.scm: Use (guix licenses).
2012-12-14 16:14:04 +01:00
|
|
|
#:use-module (guix licenses)
|
2012-11-13 21:46:10 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
2014-07-25 23:37:44 +02:00
|
|
|
#:use-module (gnu packages)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages compression)
|
2013-02-17 15:01:52 +01:00
|
|
|
#:use-module (gnu packages perl)
|
2015-07-11 06:56:39 +02:00
|
|
|
#:use-module (gnu packages linux)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages ncurses))
|
2012-11-13 21:46:10 +01:00
|
|
|
|
|
|
|
(define-public texinfo
|
|
|
|
(package
|
|
|
|
(name "texinfo")
|
2016-09-30 12:06:46 +02:00
|
|
|
(version "6.3")
|
2013-02-17 15:01:52 +01:00
|
|
|
(source (origin
|
2015-07-10 20:35:23 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/texinfo/texinfo-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-09-30 12:06:46 +02:00
|
|
|
"0fpr9kdjjl6nj2pc50k2zr7134hvqz8bi8pfqa7131a9lpzz6v14"))))
|
2012-11-13 21:46:10 +01:00
|
|
|
(build-system gnu-build-system)
|
2015-07-11 06:56:39 +02:00
|
|
|
(native-inputs `(("procps" ,procps))) ;one of the tests needs pgrep
|
2013-02-20 21:06:57 +01:00
|
|
|
(inputs `(("ncurses" ,ncurses)
|
2013-05-15 00:15:25 +02:00
|
|
|
("perl" ,perl)))
|
2015-10-03 12:31:21 +02:00
|
|
|
|
|
|
|
(native-search-paths
|
|
|
|
;; This is the variable used by the standalone Info reader.
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "INFOPATH")
|
|
|
|
(files '("share/info")))))
|
|
|
|
|
2017-03-30 00:48:16 +02:00
|
|
|
(home-page "https://www.gnu.org/software/texinfo/")
|
gnu: Use synopses from the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/gawk.scm,
gnu/packages/gcc.scm,
packages/gcc.scm, b/gnu/packages/gcc.scm,
4b982 100644
s/gcc.scm,
s/gcc.scm,
@@
%standard-phases)))))
`((gcc-libc . ,(assoc-ref inputs "libc"))))
The GNU Compiler Collection")
GNU Compiler Collection")
n
ompiler Collection includes compiler front ends for C, C++,
tran, OpenMP for C/C++/Fortran, Java, and Ada, as well as
gnu/packages/gdb.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/glib.scm,
gnu/packages/global.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mailutils.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm: Use synopses from the Womb.
2013-04-17 18:04:25 +02:00
|
|
|
(synopsis "The GNU documentation format")
|
2012-11-13 21:46:10 +01:00
|
|
|
(description
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 16:14:23 +02:00
|
|
|
"Texinfo is the official documentation format of the GNU project. It
|
2013-12-01 22:33:23 +01:00
|
|
|
uses a single source file using explicit commands to produce a final document
|
|
|
|
in any of several supported output formats, such as HTML or PDF. This
|
|
|
|
package includes both the tools necessary to produce Info documents from
|
|
|
|
their source and the command-line Info reader. The emphasis of the language
|
|
|
|
is on expressing the content semantically, avoiding physical markup commands.")
|
distro: Use (guix licenses) instead of strings.
* distro/packages/acl.scm, distro/packages/attr.scm,
distro/packages/autotools.scm, distro/packages/base.scm,
distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/bison.scm, distro/packages/bootstrap.scm,
distro/packages/compression.scm, distro/packages/cpio.scm,
distro/packages/ddrescue.scm, distro/packages/ed.scm,
distro/packages/flex.scm, distro/packages/gawk.scm,
distro/packages/gdbm.scm, distro/packages/gettext.scm,
distro/packages/gnupg.scm, distro/packages/gnutls.scm,
distro/packages/gperf.scm, distro/packages/guile.scm,
distro/packages/help2man.scm, distro/packages/less.scm,
distro/packages/libffi.scm, distro/packages/libsigsegv.scm,
distro/packages/libunistring.scm, distro/packages/linux.scm,
distro/packages/lout.scm, distro/packages/lsh.scm,
distro/packages/m4.scm, distro/packages/multiprecision.scm,
distro/packages/nano.scm, distro/packages/ncurses.scm,
distro/packages/nettle.scm, distro/packages/perl.scm,
distro/packages/pkg-config.scm, distro/packages/pth.scm,
distro/packages/readline.scm, distro/packages/recutils.scm,
distro/packages/shishi.scm, distro/packages/system.scm,
distro/packages/texinfo.scm, distro/packages/time.scm,
distro/packages/wget.scm, distro/packages/which.scm,
distro/packages/zile.scm: Use (guix licenses).
2012-12-14 16:14:04 +01:00
|
|
|
(license gpl3+)))
|
2014-02-10 08:04:38 +01:00
|
|
|
|
2015-07-10 20:35:23 +02:00
|
|
|
(define-public texinfo-5
|
|
|
|
(package (inherit texinfo)
|
|
|
|
(version "5.2")
|
2015-06-29 14:41:42 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/texinfo/texinfo-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-07-11 06:56:39 +02:00
|
|
|
"1njfwh2z34r2c4r0iqa7v24wmjzvsfyz4vplzry8ln3479lfywal"))))
|
|
|
|
(native-inputs '())))
|
2015-06-29 14:41:42 +02:00
|
|
|
|
2014-02-10 08:04:38 +01:00
|
|
|
(define-public texinfo-4
|
|
|
|
(package (inherit texinfo)
|
|
|
|
(version "4.13a")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://gnu/texinfo/texinfo-"
|
|
|
|
version
|
|
|
|
".tar.lzma"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d"))))
|
2015-07-11 06:56:39 +02:00
|
|
|
(native-inputs '())
|
2014-02-10 08:04:38 +01:00
|
|
|
(inputs `(("ncurses" ,ncurses) ("xz" ,xz)))))
|
2014-07-25 23:37:44 +02:00
|
|
|
|
2016-03-24 22:19:44 +01:00
|
|
|
(define-public info-reader
|
|
|
|
;; The idea of this package is to have the standalone Info reader without
|
|
|
|
;; the dependency on Perl that 'makeinfo' drags.
|
|
|
|
(package
|
2016-04-06 14:20:09 +02:00
|
|
|
(inherit texinfo)
|
2016-03-24 22:19:44 +01:00
|
|
|
(name "info-reader")
|
|
|
|
(arguments
|
2016-04-06 14:20:09 +02:00
|
|
|
`(#:disallowed-references ,(assoc-ref (package-inputs texinfo)
|
2016-03-24 22:19:44 +01:00
|
|
|
"perl")
|
|
|
|
|
|
|
|
#:modules ((ice-9 ftw) (srfi srfi-1)
|
|
|
|
,@%gnu-build-system-modules)
|
|
|
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(add-after 'install 'keep-only-info-reader
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Remove everything but 'bin/info' and associated
|
|
|
|
;; files.
|
|
|
|
(define (files)
|
|
|
|
(scandir "." (lambda (file)
|
|
|
|
(not (member file '("." ".."))))))
|
|
|
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(with-directory-excursion out
|
|
|
|
(for-each delete-file-recursively
|
|
|
|
(fold delete (files) '("bin" "share"))))
|
|
|
|
(with-directory-excursion (string-append out "/bin")
|
|
|
|
(for-each delete-file (delete "info" (files))))
|
|
|
|
(with-directory-excursion (string-append out "/share")
|
|
|
|
(for-each delete-file-recursively
|
|
|
|
(fold delete (files)
|
|
|
|
'("info" "locale"))))
|
|
|
|
#t))))))
|
|
|
|
(synopsis "Standalone Info documentation reader")))
|
|
|
|
|
2014-07-25 23:37:44 +02:00
|
|
|
(define-public texi2html
|
|
|
|
(package
|
|
|
|
(name "texi2html")
|
|
|
|
(version "5.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/" name "/" name "-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1yprv64vrlcbksqv25asplnjg07mbq38lfclp1m5lj8cw878pag8"))
|
2014-08-12 15:44:40 +02:00
|
|
|
(patches
|
2016-04-08 14:18:13 +02:00
|
|
|
(search-patches "texi2html-document-encoding.patch"
|
|
|
|
"texi2html-i18n.patch"))
|
2014-08-12 15:44:40 +02:00
|
|
|
(snippet
|
|
|
|
;; This file is modified by the patch above, but reset its
|
|
|
|
;; timestamp so we don't trigger the rule to update PO files,
|
|
|
|
;; which would require Gettext.
|
|
|
|
;; See <http://bugs.gnu.org/18247>.
|
|
|
|
'(utime "texi2html.pl" 0 0 0 0))))
|
2014-07-25 23:37:44 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("perl" ,perl)))
|
2016-01-22 05:09:42 +01:00
|
|
|
(arguments
|
|
|
|
;; Tests fail because of warnings on stderr from Perl 5.22. Adjusting
|
|
|
|
;; texi2html.pl to avoid the warnings seems non-trivial, so we simply
|
|
|
|
;; disable the tests.
|
|
|
|
'(#:tests? #f))
|
2014-07-25 23:37:44 +02:00
|
|
|
(home-page "http://www.nongnu.org/texi2html/")
|
|
|
|
(synopsis "Convert Texinfo to HTML")
|
|
|
|
(description
|
|
|
|
"Texi2HTML is a Perl script which converts Texinfo source files to HTML
|
|
|
|
output. It now supports many advanced features, such as internationalization
|
|
|
|
and extremely configurable output formats.
|
|
|
|
|
|
|
|
Development of Texi2HTML moved to the GNU Texinfo repository in 2010, since it
|
|
|
|
was meant to replace the makeinfo implementation in GNU Texinfo. The route
|
|
|
|
forward for authors is, in most cases, to alter manuals and build processes as
|
|
|
|
necessary to use the new features of the makeinfo/texi2any implementation of
|
|
|
|
GNU Texinfo. The Texi2HTML maintainers (one of whom is the principal author
|
|
|
|
of the GNU Texinfo implementation) do not intend to make further releases of
|
|
|
|
Texi2HTML.")
|
|
|
|
;; Files in /lib under lgpl2.1+ and x11
|
|
|
|
(license gpl2+)))
|