texinfo-commits
[Top][All Lists]
Advanced

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

[7921] commit changes for 6.4.90 pretest


From: gavinsmith0123
Subject: [7921] commit changes for 6.4.90 pretest
Date: Sun, 16 Jul 2017 14:52:25 -0400 (EDT)

Revision: 7921
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7921
Author:   gavin
Date:     2017-07-16 14:52:25 -0400 (Sun, 16 Jul 2017)
Log Message:
-----------
commit changes for 6.4.90 pretest

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/configure.ac
    trunk/info/Makefile.am
    trunk/tp/Texinfo/Common.pm
    trunk/tp/Texinfo/Convert/Converter.pm
    trunk/tp/Texinfo/Convert/DocBook.pm
    trunk/tp/Texinfo/Convert/HTML.pm
    trunk/tp/Texinfo/Convert/IXIN.pm
    trunk/tp/Texinfo/Convert/IXINSXML.pm
    trunk/tp/Texinfo/Convert/Info.pm
    trunk/tp/Texinfo/Convert/Paragraph.pm
    trunk/tp/Texinfo/Convert/Plaintext.pm
    trunk/tp/Texinfo/Convert/Texinfo.pm
    trunk/tp/Texinfo/Convert/TexinfoSXML.pm
    trunk/tp/Texinfo/Convert/TexinfoXML.pm
    trunk/tp/Texinfo/Convert/Text.pm
    trunk/tp/Texinfo/Convert/XSParagraph/config.in
    trunk/tp/Texinfo/MiscXS.pm
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/Texinfo/Structuring.pm
    trunk/tp/Texinfo/XSLoader.pm

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/ChangeLog     2017-07-16 18:52:25 UTC (rev 7921)
@@ -1,5 +1,15 @@
 2017-07-10  Gavin Smith  <address@hidden>
 
+       * pretest 6.4.90
+       * configure.ac: Update version.  Add dist-xz to options.
+
+2017-07-10  Gavin Smith  <address@hidden>
+
+       * tp/Texinfo/Convert/XSParagraph: Run gnulib-tool --add-import.
+       * (top-level): Run gnulib-tool --add-import.
+
+2017-07-10  Gavin Smith  <address@hidden>
+
        * doc/Makefile.am (wwwdoc-build): Remove commands that could
        build the "info" manual.
 

Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac  2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/configure.ac  2017-07-16 18:52:25 UTC (rev 7921)
@@ -12,13 +12,13 @@
 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-AC_INIT([GNU Texinfo], [6.4dev], address@hidden)
+AC_INIT([GNU Texinfo], [6.4.90], address@hidden)
 
 dnl Must come before AM_INIT_AUTOMAKE.
 AC_CONFIG_AUX_DIR([build-aux])
 dnl tar-ustar because we have long filenames for some test files.
 dnl parallel-tests as recommended by stefano.
-AM_INIT_AUTOMAKE([1.14
+AM_INIT_AUTOMAKE([1.14 dist-xz
                  info-in-builddir parallel-tests readme-alpha tar-ustar])
 
 # Where to generate output; srcdir location.

Modified: trunk/info/Makefile.am
===================================================================
--- trunk/info/Makefile.am      2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/info/Makefile.am      2017-07-16 18:52:25 UTC (rev 7921)
@@ -169,7 +169,7 @@
 
 EXTRA_DIST += $(TESTS) $(XFAIL_TESTS) \
   t/README t/infodir \
-  t/Init-inter.inc t/Init-test.inc t/Timeout-test.inc \
+  t/Init-inter.inc t/Init-test.inc \
   t/Infokey-config t/node-target
 dist-hook:
        rm -rf `find $(distdir)/t/infodir -name '*~'`

Modified: trunk/tp/Texinfo/Common.pm
===================================================================
--- trunk/tp/Texinfo/Common.pm  2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Common.pm  2017-07-16 18:52:25 UTC (rev 7921)
@@ -71,7 +71,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 # i18n
 sub N__($)

Modified: trunk/tp/Texinfo/Convert/Converter.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Converter.pm       2017-07-10 18:43:07 UTC (rev 
7920)
+++ trunk/tp/Texinfo/Convert/Converter.pm       2017-07-16 18:52:25 UTC (rev 
7921)
@@ -60,7 +60,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 my %defaults = (
   'ENABLE_ENCODING'      => 1,

Modified: trunk/tp/Texinfo/Convert/DocBook.pm
===================================================================
--- trunk/tp/Texinfo/Convert/DocBook.pm 2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Convert/DocBook.pm 2017-07-16 18:52:25 UTC (rev 7921)
@@ -55,7 +55,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 my $nbsp = '&#'.hex('00A0').';';
 my $mdash = '&#'.hex('2014').';';

Modified: trunk/tp/Texinfo/Convert/HTML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/HTML.pm    2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Convert/HTML.pm    2017-07-16 18:52:25 UTC (rev 7921)
@@ -64,7 +64,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 # misc commands that are of use for formatting.
 my %formatting_misc_commands = 
%Texinfo::Convert::Text::formatting_misc_commands;

Modified: trunk/tp/Texinfo/Convert/IXIN.pm
===================================================================
--- trunk/tp/Texinfo/Convert/IXIN.pm    2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Convert/IXIN.pm    2017-07-16 18:52:25 UTC (rev 7921)
@@ -54,7 +54,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 my $ixin_version = 1;
 

Modified: trunk/tp/Texinfo/Convert/IXINSXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/IXINSXML.pm        2017-07-10 18:43:07 UTC (rev 
7920)
+++ trunk/tp/Texinfo/Convert/IXINSXML.pm        2017-07-16 18:52:25 UTC (rev 
7921)
@@ -53,7 +53,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 my %defaults = (
   'ENABLE_ENCODING'      => 0,

Modified: trunk/tp/Texinfo/Convert/Info.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Info.pm    2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Convert/Info.pm    2017-07-16 18:52:25 UTC (rev 7921)
@@ -49,7 +49,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 my $STDIN_DOCU_NAME = 'stdin';
 

Modified: trunk/tp/Texinfo/Convert/Paragraph.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Paragraph.pm       2017-07-10 18:43:07 UTC (rev 
7920)
+++ trunk/tp/Texinfo/Convert/Paragraph.pm       2017-07-16 18:52:25 UTC (rev 
7921)
@@ -20,7 +20,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '6.4dev';
+our $VERSION = '6.4.90';
 
 use Texinfo::XSLoader;
 

Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm       2017-07-10 18:43:07 UTC (rev 
7920)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm       2017-07-16 18:52:25 UTC (rev 
7921)
@@ -70,7 +70,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 # misc commands that are of use for formatting.
 my %formatting_misc_commands = 
%Texinfo::Convert::Text::formatting_misc_commands;

Modified: trunk/tp/Texinfo/Convert/Texinfo.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Texinfo.pm 2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Convert/Texinfo.pm 2017-07-16 18:52:25 UTC (rev 7921)
@@ -47,7 +47,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 my %misc_commands            = %Texinfo::Common::misc_commands;
 my %brace_commands           = %Texinfo::Common::brace_commands;    

Modified: trunk/tp/Texinfo/Convert/TexinfoSXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/TexinfoSXML.pm     2017-07-10 18:43:07 UTC (rev 
7920)
+++ trunk/tp/Texinfo/Convert/TexinfoSXML.pm     2017-07-16 18:52:25 UTC (rev 
7921)
@@ -50,7 +50,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 # SXML specific
 my %defaults = (

Modified: trunk/tp/Texinfo/Convert/TexinfoXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/TexinfoXML.pm      2017-07-10 18:43:07 UTC (rev 
7920)
+++ trunk/tp/Texinfo/Convert/TexinfoXML.pm      2017-07-16 18:52:25 UTC (rev 
7921)
@@ -52,7 +52,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 # XML specific
 my %defaults = (

Modified: trunk/tp/Texinfo/Convert/Text.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Text.pm    2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Convert/Text.pm    2017-07-16 18:52:25 UTC (rev 7921)
@@ -53,7 +53,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 # this is in fact not needed for 'footnote', 'shortcaption', 'caption'
 # when they have no brace_command_arg, see below.

Modified: trunk/tp/Texinfo/Convert/XSParagraph/config.in
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/config.in      2017-07-10 18:43:07 UTC 
(rev 7920)
+++ trunk/tp/Texinfo/Convert/XSParagraph/config.in      2017-07-16 18:52:25 UTC 
(rev 7921)
@@ -609,6 +609,9 @@
 /* Define to 1 if you need to in order for 'stat' and other things to work. */
 #undef _POSIX_SOURCE
 
+/* For standard stat data types on VMS. */
+#undef _USE_STD_STAT
+
 /* Define to 1 if the system <stdint.h> predates C++11. */
 #undef __STDC_CONSTANT_MACROS
 

Modified: trunk/tp/Texinfo/MiscXS.pm
===================================================================
--- trunk/tp/Texinfo/MiscXS.pm  2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/MiscXS.pm  2017-07-16 18:52:25 UTC (rev 7921)
@@ -22,7 +22,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '6.4dev';
+our $VERSION = '6.4.90';
 
 use Texinfo::XSLoader;
 

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Parser.pm  2017-07-16 18:52:25 UTC (rev 7921)
@@ -106,7 +106,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 sub N__($)
 {

Modified: trunk/tp/Texinfo/Structuring.pm
===================================================================
--- trunk/tp/Texinfo/Structuring.pm     2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/Structuring.pm     2017-07-16 18:52:25 UTC (rev 7921)
@@ -70,7 +70,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4dev';
+$VERSION = '6.4.90';
 
 
 my %types_to_enter;

Modified: trunk/tp/Texinfo/XSLoader.pm
===================================================================
--- trunk/tp/Texinfo/XSLoader.pm        2017-07-10 18:43:07 UTC (rev 7920)
+++ trunk/tp/Texinfo/XSLoader.pm        2017-07-16 18:52:25 UTC (rev 7921)
@@ -23,7 +23,7 @@
 
 our $TEXINFO_XS;
 
-our $VERSION = '6.4dev';
+our $VERSION = '6.4.90';
 
 our $disable_XS;
 




reply via email to

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