texinfo-commits
[Top][All Lists]
Advanced

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

texinfo contrib/gdoc build-aux/compile build-au...


From: karl
Subject: texinfo contrib/gdoc build-aux/compile build-au...
Date: Wed, 02 Jan 2013 01:23:50 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     karl <karl>     13/01/02 01:23:50

Modified files:
        contrib        : gdoc 
        build-aux      : compile config.guess config.rpath config.sub 
                         depcomp mdate-sh texinfo.tex 

Log message:
        srclist update

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/contrib/gdoc?cvsroot=texinfo&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/compile?cvsroot=texinfo&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/config.guess?cvsroot=texinfo&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/config.rpath?cvsroot=texinfo&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/config.sub?cvsroot=texinfo&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/depcomp?cvsroot=texinfo&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/mdate-sh?cvsroot=texinfo&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/texinfo/build-aux/texinfo.tex?cvsroot=texinfo&r1=1.2&r2=1.3

Patches:
Index: contrib/gdoc
===================================================================
RCS file: /sources/texinfo/texinfo/contrib/gdoc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- contrib/gdoc        2 Jan 2013 01:00:21 -0000       1.1
+++ contrib/gdoc        2 Jan 2013 01:23:44 -0000       1.2
@@ -1,30 +1,37 @@
-#!/usr/bin/perl
-
-## Copyright (c) 2002, 2003 Simon Josefsson                      ##
-##                    added -texinfo, -listfunc                  ##
-##                    man page revamp                            ##
-##                    various improvements                       ##
-## Copyright (c) 1998 Michael Zucchi, All Rights Reserved        ##
-##                    hacked to allow -tex option --nmav         ##
-##                                                               ##
-## This software falls under the GNU Public License. Please read ##
-##              the COPYING file for more information            ##
-
+eval '(exit $?0)' && eval 'exec perl -S "$0" ${1+"$@"}'
+    & eval 'exec perl -S "$0" $argv:q'
+    if 0;
+
+## Copyright (c) 2002-2012 Simon Josefsson
+##                    added -texinfo, -listfunc, -pkg-name
+##                    man page revamp
+##                    various improvements
+## Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos
+##                    added -tex
+## Copyright (c) 1998 Michael Zucchi
+
+# This program is free software: you can redistribute it and/or modify
+# it 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.
+#
+# This program 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 General Public License for more details.
 #
-# This will read a 'c' file and scan for embedded comments in the
-# style of gnome comments (+minor extensions - see below).
-#
-# This program is modified by Nikos Mavroyanopoulos, for the gnutls
-# project.
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# Note: This only supports 'c'.
+# This will read a C source code file and scan for embedded comments
+# in the style of gnome comments (+minor extensions - see below).
 
 # usage:
 # gdoc [ -docbook | -html | -text | -man | -tex | -texinfo | -listfunc ]
-#      [ -sourceversion verno ] [ -includefuncprefix ] [ -bugsto address ]
+#      [ -sourceversion verno ] [ -include file | -includefuncprefix ]
+#      [ -bugsto address ] [ -pkg-name packagename ]
 #      [ -seeinfo infonode ] [ -copyright notice ] [ -verbatimcopying ]
-#      [ -function funcname [ -function funcname ...] ] c file(s)s > outputfil
-e
+#      [ -function funcname [ -function funcname ...] ] c file(s)s > outputfile
 #
 #  Set output format using one of -docbook, -html, -text, -man, -tex,
 #  -texinfo, or -listfunc.  Default is man.
@@ -33,15 +40,23 @@
 #       Version number for source code, e.g. '1.0.4'.  Used in 'man' headers.
 #       Defaults to using current date.
 #
+#  -include FILE
+#       For man pages, mention #include <FILE.h> in the synopsis.
+#
 #  -includefuncprefix
-#       For man pages, generate a #include <FILE.h> based on the function
-#       prefix.  For example, a function gss_init_sec_context will generate
-#       an include statement of #include <gss.h>.
+#       For man pages, mention a #include <FILE.h> in the synopsis.
+#       The FILE derived from the function prefix.  For example, a
+#       function gss_init_sec_context will generate an include
+#       statement of #include <gss.h>.
 #
 #  -bugsto address
 #       For man pages, include a section about reporting bugs and mention
 #       the given e-mail address, e.g 'address@hidden'.
 #
+#  -pkg-name packagename
+#       For man pages when -bugsto is used, also include help URLs to the
+#       the project's home page.  For example, "GNU Libidn".
+#
 #  -seeinfo infonode
 #       For man pages, include a section that point to an info manual
 #       for more information.
@@ -55,8 +70,7 @@
 #       add a licensing statement that say verbatim copying is permitted.
 #
 #  -function funcname
-#       If set, then only generate documentation for the given function(s).  A
-ll
+#      If set, then only generate documentation for the given function(s).  All
 #       other functions are ignored.
 #
 #  c files - list of 'c' files to process
@@ -99,16 +113,14 @@
 #  */
 # etc.
 #
-# All descriptions can be multiline, apart from the short function description
-.
+# All descriptions can be multiline, apart from the short function description.
 #
-# All descriptive text is further processed, scanning for the following specia
-l
+# All descriptive text is further processed, scanning for the following special
 # patterns, which are highlighted appropriately.
 #
 # 'funcname()' - function
-# '$ENVVAR' - environmental variable
-# '&struct_name' - name of a structure
+# '$ENVVAR' - environmental variable OBSOLETE (?)
+# '#struct_name' - name of a structure
 # '@parameter' - name of a parameter
 # '%CONST' - name of a constant.
 
@@ -125,7 +137,7 @@
 $type_constant = "\\\%(\\w+)";
 $type_func = "(\\w+\\(\\))";
 $type_param = "\\\@(\\w+)";
-$type_struct = "\\\&(\\w+)";
+$type_struct = "\\\#(\\w+)";
 $type_env = "(\\\$\\w+)";
 
 
@@ -139,7 +151,7 @@
                      $type_param, "<tt><b>\$1</b></tt>" );
 $blankline_html = "<p>";
 
-%highlights_texinfo = ( $type_constant, "address@hidden",
+%highlights_texinfo = ( $type_constant, "address@hidden",
                         $type_func, "address@hidden",
                         $type_struct, "address@hidden",
                         $type_param, "address@hidden" );
@@ -152,8 +164,7 @@
 $blankline_tex = "\\\\";
 
 # sgml, docbook format
-%highlights_sgml = ( $type_constant, "<replaceable class=\"option\">\$1</repla
-ceable>",
+%highlights_sgml = ( $type_constant, "<replaceable 
class=\"option\">\$1</replaceable>",
                      $type_func, "<function>\$1</function>",
                      $type_struct, "<structname>\$1</structname>",
                      $type_env, "<envar>\$1</envar>",
@@ -161,10 +172,10 @@
 $blankline_sgml = "</para><para>\n";
 
 # these are pretty rough
-%highlights_man = ( $type_constant, "\\n.I \\\"\$1\\\"\\n",
-                    $type_func, "\\n.B \\\"\$1\\\"\\n",
-                    $type_struct, "\\n.I \\\"\$1\\\"\\n",
-                    $type_param."([\.\, ]*)\n?", "\\n.I \\\"\$1\$2\\\"\\n" );
+%highlights_man = ( $type_constant, "\\\\fB\$1\\\\fP",
+                   $type_func, "\\\\fB\$1\\\\fP",
+                   $type_struct, "\\\\fB\$1\\\\fP",
+                   $type_param, "\\\\fI\$1\\\\fP" );
 $blankline_man = "";
 
 # text-mode
@@ -176,12 +187,10 @@
 
 
 sub usage {
-    print "Usage: $0 [ -v ] [ -docbook | -html | -text | -man | -tex | -texinf
-o  -listfunc ]\n";
-    print "         [ -sourceversion verno ] [ -includefuncprefix ]\n";
-    print "         [ -bugsto address ] [ -seeinfo infonode ] [ -copyright not
-ice]\n";
-    print "         [ -verbatimcopying ]\n";
+    print "Usage: $0 [ -v ] [ -docbook | -html | -text | -man | -tex | 
-texinfo  -listfunc ]\n";
+    print "         [ -sourceversion verno ] [ -include file | 
-includefuncprefix ]\n";
+    print "         [ -bugsto address ] [ -seeinfo infonode ] [ -copyright 
notice]\n";
+    print "         [ -verbatimcopying ] [ -pkg-name packagename ]\n";
     print "         [ -function funcname [ -function funcname ...] ]\n";
     print "         c source file(s) > outputfile\n";
     exit 1;
@@ -227,15 +236,18 @@
         $blankline = $blankline_sgml;
     } elsif ($cmd eq "-listfunc") {
         $output_mode = "listfunc";
-    } elsif ($cmd eq "-module") { # not needed for sgml, inherits from calling
- document
+    } elsif ($cmd eq "-module") { # not needed for sgml, inherits from calling 
document
         $modulename = shift @ARGV;
     } elsif ($cmd eq "-sourceversion") {
         $sourceversion = shift @ARGV;
+    } elsif ($cmd eq "-include") {
+       $include = shift @ARGV;
     } elsif ($cmd eq "-includefuncprefix") {
         $includefuncprefix = 1;
     } elsif ($cmd eq "-bugsto") {
         $bugsto = shift @ARGV;
+    } elsif ($cmd eq "-pkg-name") {
+       $pkgname = shift @ARGV;
     } elsif ($cmd eq "-copyright") {
         $copyright = shift @ARGV;
     } elsif ($cmd eq "-verbatimcopying") {
@@ -302,31 +314,11 @@
 
     eval "\$return = qq/$output/";
 
-#    print "pattern $pattern matched 1=$match1 2=$match2 3=$match3 4=$match4 r
-eplace $repl yielded $output interpolated $return\n";
+#    print "pattern $pattern matched 1=$match1 2=$match2 3=$match3 4=$match4 
replace $repl yielded $output interpolated $return\n";
 
     $return;
 }
 
-sub output_highlight {
-    my $contents = join "\n", @_;
-    my $line;
-
-    foreach $pattern (keys %highlights) {
-#       print "scanning pattern $pattern ($highlights{$pattern})\n";
-        $contents =~ s:$pattern:repstr($pattern, $highlights{$pattern}, $1, $2
-, $3, $4):gse;
-    }
-    foreach $line (split "\n", $contents) {
-        if ($line eq ""){
-            print $lineprefix, $blankline;
-        } else {
-            print $lineprefix, $line;
-        }
-        print "\n";
-    }
-}
-
 sub just_highlight {
     my $contents = join "\n", @_;
     my $line;
@@ -334,8 +326,7 @@
 
     foreach $pattern (keys %highlights) {
 #       print "scanning pattern $pattern ($highlights{$pattern})\n";
-        $contents =~ s:$pattern:repstr($pattern, $highlights{$pattern}, $1, $2
-, $3, $4):gse;
+       $contents =~ s:$pattern:repstr($pattern, $highlights{$pattern}, $1, $2, 
$3, $4):gse;
     }
     foreach $line (split "\n", $contents) {
         if ($line eq ""){
@@ -349,12 +340,18 @@
     return $ret;
 }
 
+sub output_highlight {
+    print (just_highlight (@_));
+}
+
 # output in texinfo
 sub output_texinfo {
     my %args = %{$_[0]};
     my ($parameter, $section);
     my $count;
 
+    print "address@hidden ".$args{'function'}."\n";
+    print "address@hidden".$args{'function'}."}\n";
     print "address@hidden {" . $args{'functiontype'} . "} ";
     print "{".$args{'function'}."} ";
     print "(";
@@ -387,16 +384,14 @@
     my %args = %{$_[0]};
     my ($parameter, $section);
     my $count;
-    print "\n\n<a name=\"". $args{'function'} . "\">&nbsp</a><h2>Function</h2>
-\n";
+    print "\n\n<a name=\"". $args{'function'} . 
"\">&nbsp</a><h2>Function</h2>\n";
 
     print "<i>".$args{'functiontype'}."</i>\n";
     print "<b>".$args{'function'}."</b>\n";
     print "(";
     $count = 0;
     foreach $parameter (@{$args{'parameterlist'}}) {
-        print "<i>".$args{'parametertypes'}{$parameter}."</i> <b>".$parameter.
-"</b>\n";
+       print "<i>".$args{'parametertypes'}{$parameter}."</i> 
<b>".$parameter."</b>\n";
         if ($count != $#{$args{'parameterlist'}}) {
             $count++;
             print ", ";
@@ -407,8 +402,7 @@
     print "<h3>Arguments</h3>\n";
     print "<dl>\n";
     foreach $parameter (@{$args{'parameterlist'}}) {
-        print "<dt><i>".$args{'parametertypes'}{$parameter}."</i> <b>".$parame
-ter."</b>\n";
+       print "<dt><i>".$args{'parametertypes'}{$parameter}."</i> 
<b>".$parameter."</b>\n";
         print "<dd>";
         output_highlight($args{'parameters'}{$parameter});
     }
@@ -436,8 +430,7 @@
 
     $func =~ s/_/\\_/g;
 
-    print "\n\n\\subsection{". $func . "}\n\\label{" . $args{'function'} . "}\
-n";
+    print "\n\n\\subsection{". $func . "}\n\\label{" . $args{'function'} . 
"}\n";
 
     $type = $args{'functiontype'};
     $type =~ s/_/\\_/g;
@@ -475,7 +468,7 @@
 #       print "\n";
 
         $param3 = $args{'parameters'}{$parameter};
-        $param3 =~ s/&([a-zA-Z\_]+)/{\\it \1}/g;
+       $param3 =~ s/#([a-zA-Z\_]+)/{\\it \1}/g;
 
         $out = just_highlight($param3);
         $out =~ s/_/\\_/g;
@@ -489,14 +482,14 @@
     foreach $section (@{$args{'sectionlist'}}) {
         $sec = $section;
         $sec =~ s/_/\\_/g;
-        $sec =~ s/&([a-zA-Z\_]+)/{\\it \1}/g;
+       $sec =~ s/#([a-zA-Z\_]+)/{\\it \1}/g;
 
         print "\n{\\large{$sec}}\\\\\n";
         print "\\begin{rmfamily}\n";
 
         $sec = $args{'sections'}{$section};
         $sec =~ s/\\:/:/g;
-        $sec =~ s/&([a-zA-Z\_]+)/{\\it \1}/g;
+       $sec =~ s/#([a-zA-Z\_]+)/{\\it \1}/g;
         $sec =~ s/->/\$\\rightarrow\$/g;
         $sec =~ s/([0-9]+)\^([0-9]+)/\$\{\1\}\^\{\2\}\$/g;
 
@@ -522,8 +515,7 @@
 
     print "<refentry>\n";
     print "<refmeta>\n";
-    print "<refentrytitle><phrase id=\"$id\">".$args{'function'}."</phrase></r
-efentrytitle>\n";
+    print "<refentrytitle><phrase 
id=\"$id\">".$args{'function'}."</phrase></refentrytitle>\n";
     print "</refmeta>\n";
     print "<refnamediv>\n";
     print " <refname>".$args{'function'}."</refname>\n";
@@ -565,8 +557,7 @@
     if ($#{$args{'parameterlist'}} >= 0) {
         print " <variablelist>\n";
         foreach $parameter (@{$args{'parameterlist'}}) {
-            print "  <varlistentry>\n   <term><parameter>$parameter</parameter
-></term>\n";
+           print "  <varlistentry>\n   
<term><parameter>$parameter</parameter></term>\n";
             print "   <listitem>\n    <para>\n";
             $lineprefix="     ";
             output_highlight($args{'parameters'}{$parameter});
@@ -604,14 +595,21 @@
     my ($parameter, $section);
     my $count;
 
-    print ".TH \"$args{'function'}\" 3 \"$args{'sourceversion'}\" \"". $args{'
-module'} . "\" \"". $args{'module'} . "\"\n";
+    print ".\\\" DO NOT MODIFY THIS FILE!  It was generated by gdoc.\n";
+    print ".TH \"$args{'function'}\" 3 \"$args{'sourceversion'}\" \"". 
$args{'module'} . "\" \"". $args{'module'} . "\"\n";
 
     print ".SH NAME\n";
 
-    print $args{'function'}."\n";
+    print $args{'function'};
+    if ($args{'purpose'}) {
+       print " \\- " . $args{'purpose'} . "\n";
+    } else {
+       print " \\- API function\n";
+    }
 
     print ".SH SYNOPSIS\n";
+    print ".B #include <". $args{'include'} . ">\n"
+       if $args{'include'};
     print ".B #include <". lc((split /_/, $args{'function'})[0]) . ".h>\n"
         if $args{'includefuncprefix'};
     print ".sp\n";
@@ -628,18 +626,26 @@
 
     print ".SH ARGUMENTS\n";
     foreach $parameter (@{$args{'parameterlist'}}) {
-        print ".IP \"".$args{'parametertypes'}{$parameter}." ".$parameter."\" 
-12\n";
-        output_highlight($args{'parameters'}{$parameter});
+       print ".IP \"".$args{'parametertypes'}{$parameter}." ".$parameter."\" 
12\n";
+       $param = $args{'parameters'}{$parameter};
+       $param =~ s/-/\\-/g;
+       output_highlight($param);
     }
     foreach $section (@{$args{'sectionlist'}}) {
         print ".SH \"" . uc($section) . "\"\n";
-        output_highlight($args{'sections'}{$section});
+       $sec = $args{'sections'}{$section};
+       $sec =~ s/-/\\-/g;
+       output_highlight($sec);
     }
 
     if ($args{'bugsto'}) {
         print ".SH \"REPORTING BUGS\"\n";
         print "Report bugs to <". $args{'bugsto'} . ">.\n";
+       if ($args{'pkgname'}) {
+           print $args{'pkgname'} . " home page: " .
+               "http://www.gnu.org/software/"; . $args{'module'} . "/\n";
+       }
+       print "General help using GNU software: http://www.gnu.org/gethelp/\n";;
     }
 
     if ($args{'copyright'}) {
@@ -647,11 +653,9 @@
         print "Copyright \\(co ". $args{'copyright'} . ".\n";
         if ($args{'verbatimcopying'}) {
             print ".br\n";
-            print "Permission is granted to make and distribute verbatim copie
-s of this\n";
-            print "manual provided the copyright notice and this permission no
-tice are\n";
-            print "preserved on all copies.\n";
+           print "Copying and distribution of this file, with or without 
modification,\n";
+           print "are permitted in any medium without royalty provided the 
copyright\n";
+           print "notice and this notice are preserved.\n";
         }
     }
 
@@ -714,8 +718,7 @@
         $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\)]*)\)/ ||
         $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\)]*)\)/ ||
         $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\)]*)\)/ ||
-        $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\)]*)\)/)
-  {
+       $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\)]*)\)/)  
{
         $return_type = $1;
         $function_name = $2;
         $args = $3;
@@ -745,8 +748,7 @@
 
             if ($parameters{$param} eq "" && $param != "void") {
                 $parameters{$param} = "-- undescribed --";
-                print STDERR "Warning($lineno): Function parameter '$param' no
-t described in '$function_name'\n";
+               print STDERR "warning: $lineno: Function parameter '$param' not 
described in '$function_name'\n";
             }
 
             push @parameterlist, $param;
@@ -755,8 +757,7 @@
 #           print STDERR "param = '$param', type = '$type'\n";
         }
     } else {
-        print STDERR "Error($lineno): cannot understand prototype: '$prototype
-'\n";
+       print STDERR "warning: $lineno: Cannot understand prototype: 
'$prototype'\n" if (!($prototype  =~ m,GSASL_VALID_MECHANISM_CHARACTERS,));
         return;
     }
 
@@ -764,8 +765,10 @@
         output_function({'function' => $function_name,
                          'module' => $modulename,
                          'sourceversion' => $sourceversion,
+                        'include' => $include,
                          'includefuncprefix' => $includefuncprefix,
                          'bugsto' => $bugsto,
+                        'pkgname' => $pkgname,
                          'copyright' => $copyright,
                          'verbatimcopying' => $verbatimcopying,
                          'seeinfo' => $seeinfo,
@@ -790,13 +793,13 @@
 $state = 0;
 $section = "";
 
-$doc_special = "address@hidden&";
+$doc_special = "address@hidden";
 
 $doc_start = "^/\\*\\*\$";
 $doc_end = "\\*/";
 $doc_com = "\\s*\\*\\s*";
 $doc_func = $doc_com."(\\w+):?";
-$doc_sect = $doc_com."([".$doc_special."[:upper:]][\\w ]+):(.*)";
+$doc_sect = $doc_com."([".$doc_special."[:upper:]][\\w ]+):\\s*(.*)";
 $doc_content = $doc_com."(.*)";
 
 %constants = ();
@@ -820,25 +823,22 @@
 
         if ($state == 0) {
             if (/$doc_start/o) {
-                $state = 1;             # next line is always the function nam
-e
+               $state = 1;             # next line is always the function name
             }
         } elsif ($state == 1) { # this line is the function name (always)
             if (/$doc_func/o) {
                 $function = $1;
                 $state = 2;
-                if (/-(.*)/) {
+               if (/-\s*(.*)/) {
                     $function_purpose = $1;
                 } else {
                     $function_purpose = "";
                 }
                 if ($verbose) {
-                    print STDERR "Info($lineno): Scanning doc for $function\n"
-;
+                   print STDERR "Info($lineno): Scanning doc for $function\n";
                 }
             } else {
-                print STDERR "WARN($lineno): Cannot understand $_ on line $lin
-eno",
+               print STDERR "warning: $lineno: Cannot understand $_ on line 
$lineno",
                 " - I thought it was a doc line\n";
                 $state = 0;
             }
@@ -880,7 +880,7 @@
                 }
             } else {
                 # i dont know - bad line?  ignore.
-                print STDERR "WARNING($lineno): bad line: $_"; 
+               print STDERR "warning: $lineno: Bad line: $_";
             }
         } elsif ($state == 3) { # scanning for function { (end of prototype)
             if (m#\s*/\*\s+MACDOC\s*#io) {
@@ -909,6 +909,3 @@
         }
     }
 }
-
-
-

Index: build-aux/compile
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/compile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- build-aux/compile   9 Nov 2012 16:36:11 -0000       1.4
+++ build-aux/compile   2 Jan 2013 01:23:44 -0000       1.5
@@ -3,7 +3,7 @@
 
 scriptversion=2012-10-14.11; # UTC
 
-# Copyright (C) 1999-2012 Free Software Foundation, Inc.
+# Copyright (C) 1999-2013 Free Software Foundation, Inc.
 # Written by Tom Tromey <address@hidden>.
 #
 # This program is free software; you can redistribute it and/or modify

Index: build-aux/config.guess
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/config.guess,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- build-aux/config.guess      29 Dec 2012 17:06:06 -0000      1.9
+++ build-aux/config.guess      2 Jan 2013 01:23:45 -0000       1.10
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
 #   2011, 2012, 2013 Free Software Foundation, Inc.
 
-timestamp='2012-12-29'
+timestamp='2012-12-30'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by

Index: build-aux/config.rpath
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/config.rpath,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- build-aux/config.rpath      15 May 2012 17:32:26 -0000      1.9
+++ build-aux/config.rpath      2 Jan 2013 01:23:47 -0000       1.10
@@ -2,7 +2,7 @@
 # Output a system dependent set of variables, describing how to set the
 # run time search path of shared libraries in an executable.
 #
-#   Copyright 1996-2012 Free Software Foundation, Inc.
+#   Copyright 1996-2013 Free Software Foundation, Inc.
 #   Taken from GNU libtool, 2001
 #   Originally by Gordon Matzigkeit <address@hidden>, 1996
 #

Index: build-aux/config.sub
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/config.sub,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- build-aux/config.sub        29 Dec 2012 17:06:06 -0000      1.10
+++ build-aux/config.sub        2 Jan 2013 01:23:48 -0000       1.11
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
 #   2011, 2012, 2013 Free Software Foundation, Inc.
 
-timestamp='2012-12-29'
+timestamp='2012-12-31'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -1500,9 +1500,6 @@
        -aros*)
                os=-aros
                ;;
-       -kaos*)
-               os=-kaos
-               ;;
        -zvmoe)
                os=-zvmoe
                ;;

Index: build-aux/depcomp
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/depcomp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- build-aux/depcomp   29 Dec 2012 17:06:06 -0000      1.9
+++ build-aux/depcomp   2 Jan 2013 01:23:48 -0000       1.10
@@ -3,7 +3,7 @@
 
 scriptversion=2012-10-18.11; # UTC
 
-# Copyright (C) 1999-2012 Free Software Foundation, Inc.
+# Copyright (C) 1999-2013 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

Index: build-aux/mdate-sh
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/mdate-sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- build-aux/mdate-sh  6 Jul 2012 23:19:44 -0000       1.5
+++ build-aux/mdate-sh  2 Jan 2013 01:23:50 -0000       1.6
@@ -3,7 +3,7 @@
 
 scriptversion=2010-08-21.06; # UTC
 
-# Copyright (C) 1995-2012 Free Software Foundation, Inc.
+# Copyright (C) 1995-2013 Free Software Foundation, Inc.
 # written by Ulrich Drepper <address@hidden>, June 1995
 #
 # This program is free software; you can redistribute it and/or modify

Index: build-aux/texinfo.tex
===================================================================
RCS file: /sources/texinfo/texinfo/build-aux/texinfo.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- build-aux/texinfo.tex       14 Nov 2012 00:20:39 -0000      1.2
+++ build-aux/texinfo.tex       2 Jan 2013 01:23:50 -0000       1.3
@@ -3,11 +3,11 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2012-11-08.11}
+\def\texinfoversion{2013-01-01.15}
 %
 % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
 % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-% 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
+% 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
 %
 % This texinfo.tex file is free software: you can redistribute it and/or
 % modify it under the terms of the GNU General Public License as
@@ -24,7 +24,8 @@
 %
 % As a special exception, when this file is read by TeX when processing
 % a Texinfo source document, you may use the result without
-% restriction.  (This has been our intent since Texinfo was invented.)
+% restriction. This Exception is an additional permission under section 7
+% of the GNU General Public License, version 3 ("GPLv3").
 %
 % Please try the latest version of texinfo.tex before submitting bug
 % reports; you can get the latest version from:



reply via email to

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