texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog util/texi2dvi


From: Karl Berry
Subject: texinfo ChangeLog util/texi2dvi
Date: Mon, 20 Apr 2009 21:35:46 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       09/04/20 21:35:45

Modified files:
        .              : ChangeLog 
        util           : texi2dvi 

Log message:
        reestablish pdf support for texinfo

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1006&r2=1.1007
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texi2dvi?cvsroot=texinfo&r1=1.151&r2=1.152

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1006
retrieving revision 1.1007
diff -u -b -r1.1006 -r1.1007
--- ChangeLog   15 Apr 2009 15:26:15 -0000      1.1006
+++ ChangeLog   20 Apr 2009 21:35:44 -0000      1.1007
@@ -1,12 +1,16 @@
+2009-04-20  Akim Demaille  <address@hidden>
+
+       * util/texi2dvi (run_tex): pdf output for texinfo is supported.
+
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: use texindy if available.
-       * bin/texi2dvi (run_index): Use texindy if available.
+       * util/texi2dvi (run_index): Use texindy if available.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: initial support for tex4ht.
-       * bin/texi2dvi ($latex2html, --tex4ht, run_tex4ht, destdir): New.
+       * util/texi2dvi ($latex2html, --tex4ht, run_tex4ht, destdir): New.
        (run_tex): Accept an HTML output.
        (run_tex_suite): Call run_tex4ht.
        Install the output if needed.
@@ -18,17 +22,17 @@
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: make $expand a regular Boolean variable.
-       * bin/texi2dvi ($expand): Use true/false instead of t/''.
+       * util/texi2dvi ($expand): Use true/false instead of t/''.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: fix comments.
-       * bin/texi2dvi: here.
+       * util/texi2dvi: here.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: simplify move_to_dest.
-       * bin/texi2dvi (move_to_dest): Exit immediately if there is
+       * util/texi2dvi (move_to_dest): Exit immediately if there is
        nothing to do.
        This allows to simplify the body of the loop, as we no longer have
        to check whether something has to be done.
@@ -38,23 +42,23 @@
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: avoid creating invisible temporary files.
-       * bin/texi2dvi ($t2ddir): Strip leading `./'.
+       * util/texi2dvi ($t2ddir): Strip leading `./'.
        Call sed once.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: complete --help.
-       * bin/texi2dvi (usage): Document --html.
+       * util/texi2dvi (usage): Document --html.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: fix error invocations.
-       * bin/texi2dvi: error already reports $0, don't do it again.
+       * util/texi2dvi: error already reports $0, don't do it again.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: simplify the handling of --no-line-error.
-       * bin/texi2dvi (no_line_error): Remove, rather use
+       * util/texi2dvi (no_line_error): Remove, rather use
        line_error=false.
        (run_tex): Adjust.
        By the way, don't call tex --help if !$line_error.
@@ -62,11 +66,11 @@
 2009-04-15  Akim Demaille  <address@hidden>
 
        texi2dvi: be robust to a failing latex --help.
-       * bin/texi2dvi (run_tex): here.
+       * util/texi2dvi (run_tex): here.
 
 2009-04-15  Akim Demaille  <address@hidden>
 
-       * bin/texi2dvi (out_lang_set): New.
+       * util/texi2dvi (out_lang_set): New.
        Use it.
        (usage): Document --html, --info, --text, --ps, DVIPS and DVIPDF.
        (run_tex_suite): Honor DVIPS.
@@ -75,7 +79,7 @@
 
 2009-04-15  Akim Demaille  <address@hidden>
 
-       * bin/texi2dvi (ensure_dir): Die only if we could not create the
+       * util/texi2dvi (ensure_dir): Die only if we could not create the
        directory at all.
 
 2009-04-12  Karl Berry  <address@hidden>
@@ -1098,7 +1102,7 @@
 2008-02-28  Akim Demaille  <address@hidden>
 
        Let texi2dvi keep the trailing //.
-       * bin/texi2dvi ($space, $tab): New.
+       * util/texi2dvi ($space, $tab): New.
        ($IFS): Use them to be robust to zealous white space cleanups.
        (absolute): Preserve the trailing slashes.
        (tex_envvars): Add MPINPUTS, MFINPUTS, and TFMFONTS.

Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -b -r1.151 -r1.152
--- util/texi2dvi       15 Apr 2009 15:26:15 -0000      1.151
+++ util/texi2dvi       20 Apr 2009 21:35:45 -0000      1.152
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.151 2009/04/15 15:26:15 akim Exp $
+# $Id: texi2dvi,v 1.152 2009/04/20 21:35:45 karl Exp $
 #
 # Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
 # 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -33,7 +33,7 @@
 set -e
 
 # This string is expanded automatically when this file is checked out.
-rcs_revision='$Revision: 1.151 $'
+rcs_revision='$Revision: 1.152 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 
@@ -933,7 +933,7 @@
          *latex) tex=tex;; # don't bother trying to find etex
               *) tex=$TEX
        esac;;
-    texinfo:pdf) tex=$PDFTEX;;
+    texinfo:*:pdf) tex=$PDFTEX;;
 
     *) error 1 "$out_lang not supported for $in_lang";;
   esac




reply via email to

[Prev in Thread] Current Thread [Next in Thread]