texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: pretest 6.7.90


From: Gavin D. Smith
Subject: branch master updated: pretest 6.7.90
Date: Tue, 23 Feb 2021 15:53:02 -0500

This is an automated email from the git hooks/post-receive script.

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new b6e8258  pretest 6.7.90
b6e8258 is described below

commit b6e8258f064bfd0392dfdeb8baa483cc8c2d7fb9
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Tue Feb 23 20:51:57 2021 +0000

    pretest 6.7.90
    
    * configure.ac, util/texi2dvi, util/texi2pdf: Version.
    * info/info.c (main), install-info/install-info.c (main): 2021
    * README-hacking: Edit release instructions.
    
    * info/dir.c (dir_entry_of_infodir): Do not call
    info_check_compressed with a null argument.
---
 ChangeLog                         | 11 +++++++++++
 README-hacking                    | 32 +++++++++++++++-----------------
 configure.ac                      |  2 +-
 info/dir.c                        |  2 +-
 info/info.c                       |  4 ++--
 tp/Texinfo/Common.pm              |  2 +-
 tp/Texinfo/Convert/Converter.pm   |  2 +-
 tp/Texinfo/Convert/DocBook.pm     |  2 +-
 tp/Texinfo/Convert/HTML.pm        |  2 +-
 tp/Texinfo/Convert/IXIN.pm        |  2 +-
 tp/Texinfo/Convert/IXINSXML.pm    |  2 +-
 tp/Texinfo/Convert/Info.pm        |  2 +-
 tp/Texinfo/Convert/Paragraph.pm   |  2 +-
 tp/Texinfo/Convert/Plaintext.pm   |  2 +-
 tp/Texinfo/Convert/Texinfo.pm     |  2 +-
 tp/Texinfo/Convert/TexinfoSXML.pm |  2 +-
 tp/Texinfo/Convert/TexinfoXML.pm  |  2 +-
 tp/Texinfo/Convert/Text.pm        |  2 +-
 tp/Texinfo/MiscXS.pm              |  2 +-
 tp/Texinfo/Parser.pm              |  2 +-
 tp/Texinfo/ParserNonXS.pm         |  2 +-
 tp/Texinfo/Structuring.pm         |  2 +-
 tp/Texinfo/XSLoader.pm            |  2 +-
 util/pdftexi2dvi                  |  4 ++--
 util/texi2dvi                     |  6 +++---
 util/texi2pdf                     |  4 ++--
 26 files changed, 55 insertions(+), 46 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c334f26..8a1195e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2021-02-23  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       pretest 6.7.90
+
+       * configure.ac, util/texi2dvi, util/texi2pdf: Version.
+       * info/info.c (main), install-info/install-info.c (main): 2021
+       * README-hacking: Edit release instructions.
+       
+       * info/dir.c (dir_entry_of_infodir): Do not call
+       info_check_compressed with a null argument.
+
 2021-02-23  Patrice Dumas  <pertusus@free.fr>
 
        * tp/texi2any.pl: use a special value if 'FORMAT_MENU' is set on
diff --git a/README-hacking b/README-hacking
index da38010..ad9f23e 100644
--- a/README-hacking
+++ b/README-hacking
@@ -211,6 +211,10 @@ util/srclist-txi          # for pretest, to sync files 
with other sources
 
 - Final (easy) checks:
 
+Check that translations have been updated, e.g.:
+  rsync  -Lrtzv  translationproject.org::tp/latest/texinfo/ po
+  rsync  -Lrtzv  translationproject.org::tp/latest/texinfo_document/ \
+                 po_document # note the trailing slashes in these commands
 check OpenCSW build reports at
   https://buildfarm.opencsw.org/buildbot/waterfall?category=texinfo
 Ensure texinfo.tex, texi2dvi, and htmlxref.cnf are updated on ftp.gnu.org.
@@ -226,12 +230,22 @@ Update copyright years in many files for release; best to 
grep -r for
   the previous year.  See also ChangeLog entries for "copyright years".
   No need (though it's ok) to change every source file at once, just the
   ones relevant to --version calls, etc., such as texindex.awk and info.c.
+update version in configure.ac, notice in ChangeLog.
+(cd tp && ./maintain/change_perl_modules_version.sh auto)
+  -- this updates all the version numbers in the Perl modules
+check that texindex version is updated properly
+  (rm texindex.awk ; make)
+make
+make update-po            # both po and po_document needed, build a dist first
+(cd tp ; maintain/regenerate_file_lists.pl) # list all test results
+make distcheck
+(export MALLOC_CHECK_=2; make distcheck)  # repeat until clean
+git commit and push
 
 after uploading distribution,
 pretest announcement -> bug-texinfo / beebe / platform-testers to try.
 bcc coordinator@translationproject.org.
 
-
 - Official releases only:
 version and date in NEWS.
 version number in texi2any.pl, texi2dvi, texi2pdf, txirefcard.tex.
@@ -240,22 +254,6 @@ version number in texi2any.pl, texi2dvi, texi2pdf, 
txirefcard.tex.
 
 make V=1 pdf and fix underfull/overfull boxes.
 
-- Changes to sources:
-update version in configure.ac, notice in ChangeLog.
-(cd tp && ./maintain/change_perl_modules_version.sh auto)
-  -- this updates all the version numbers in the Perl modules
-check that texindex version is updated properly
-  (rm texindex.awk ; make)
-Check that translations have been updated, e.g.:
-  rsync  -Lrtzv  translationproject.org::tp/latest/texinfo/ po
-  rsync  -Lrtzv  translationproject.org::tp/latest/texinfo_document/ \
-                 po_document # note the trailing slashes in these commands
-
-make
-make update-po            # both po and po_document needed, build a dist first
-TEXINFO_XS_PARSER=1 make distcheck # to check XS parser is good
-(export MALLOC_CHECK_=2; make distcheck)  # repeat until clean
-git commit and push
 
 - To do the actual upload:
 pkg=texinfo
diff --git a/configure.ac b/configure.ac
index a79bc2a..6040a4a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@
 # 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.7dev], [bug-texinfo@gnu.org])
+AC_INIT([GNU Texinfo], [6.7.90], [bug-texinfo@gnu.org])
 
 dnl Must come before AM_INIT_AUTOMAKE.
 AC_CONFIG_AUX_DIR([build-aux])
diff --git a/info/dir.c b/info/dir.c
index 1a95918..d92e4ce 100644
--- a/info/dir.c
+++ b/info/dir.c
@@ -258,7 +258,7 @@ dir_entry_of_infodir (char *label, char *searchdir)
       free (dir_fullpath);
       dir_fullpath = tmp;
     }
-  result = info_check_compressed (dir_fullpath, NULL);
+  result = info_check_compressed (dir_fullpath, &dummy);
   if (!result)
     {
       free (dir_fullpath);
diff --git a/info/info.c b/info/info.c
index 4d2137f..0727825 100644
--- a/info/info.c
+++ b/info/info.c
@@ -1,6 +1,6 @@
 /* info.c -- Display nodes of Info files in multiple windows.
 
-   Copyright 1993-2019 Free Software Foundation, Inc.
+   Copyright 1993-2021 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
@@ -860,7 +860,7 @@ main (int argc, char *argv[])
 License GPLv3+: GNU GPL version 3 or later 
<http://gnu.org/licenses/gpl.html>\n\
 This is free software: you are free to change and redistribute it.\n\
 There is NO WARRANTY, to the extent permitted by law.\n"),
-             "2019");
+             "2021");
       exit (EXIT_SUCCESS);
     }
 
diff --git a/tp/Texinfo/Common.pm b/tp/Texinfo/Common.pm
index f0a7f52..1987ad0 100644
--- a/tp/Texinfo/Common.pm
+++ b/tp/Texinfo/Common.pm
@@ -64,7 +64,7 @@ valid_tree_transformation
 __ __p print_tree
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 # i18n
 sub N__($)
diff --git a/tp/Texinfo/Convert/Converter.pm b/tp/Texinfo/Convert/Converter.pm
index b231ee7..2d092fc 100644
--- a/tp/Texinfo/Convert/Converter.pm
+++ b/tp/Texinfo/Convert/Converter.pm
@@ -49,7 +49,7 @@ xml_accents
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 my %defaults = (
   'ENABLE_ENCODING'      => 1,
diff --git a/tp/Texinfo/Convert/DocBook.pm b/tp/Texinfo/Convert/DocBook.pm
index dd0ea16..3726446 100644
--- a/tp/Texinfo/Convert/DocBook.pm
+++ b/tp/Texinfo/Convert/DocBook.pm
@@ -47,7 +47,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 my $nbsp = '&#'.hex('00A0').';';
 my $mdash = '&#'.hex('2014').';';
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 9db5b59..13d3daf 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -83,7 +83,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 # misc commands that are of use for formatting.
 my %formatting_misc_commands = 
%Texinfo::Convert::Text::formatting_misc_commands;
diff --git a/tp/Texinfo/Convert/IXIN.pm b/tp/Texinfo/Convert/IXIN.pm
index 17f51d1..4a32de6 100644
--- a/tp/Texinfo/Convert/IXIN.pm
+++ b/tp/Texinfo/Convert/IXIN.pm
@@ -47,7 +47,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 my $ixin_version = 1;
 
diff --git a/tp/Texinfo/Convert/IXINSXML.pm b/tp/Texinfo/Convert/IXINSXML.pm
index a1366b2..f7b20b8 100644
--- a/tp/Texinfo/Convert/IXINSXML.pm
+++ b/tp/Texinfo/Convert/IXINSXML.pm
@@ -46,7 +46,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 my %defaults = (
   'ENABLE_ENCODING'      => 0,
diff --git a/tp/Texinfo/Convert/Info.pm b/tp/Texinfo/Convert/Info.pm
index 2c33f3a..c36b1e2 100644
--- a/tp/Texinfo/Convert/Info.pm
+++ b/tp/Texinfo/Convert/Info.pm
@@ -43,7 +43,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 my $STDIN_DOCU_NAME = 'stdin';
 
diff --git a/tp/Texinfo/Convert/Paragraph.pm b/tp/Texinfo/Convert/Paragraph.pm
index 1e1f98a..8b1697a 100644
--- a/tp/Texinfo/Convert/Paragraph.pm
+++ b/tp/Texinfo/Convert/Paragraph.pm
@@ -20,7 +20,7 @@ use 5.00405;
 use strict;
 use warnings;
 
-our $VERSION = '6.7dev';
+our $VERSION = '6.7.90';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm
index 07eb215..4a1df04 100644
--- a/tp/Texinfo/Convert/Plaintext.pm
+++ b/tp/Texinfo/Convert/Plaintext.pm
@@ -61,7 +61,7 @@ sub import {
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 # misc commands that are of use for formatting.
 my %formatting_misc_commands = 
%Texinfo::Convert::Text::formatting_misc_commands;
diff --git a/tp/Texinfo/Convert/Texinfo.pm b/tp/Texinfo/Convert/Texinfo.pm
index 85b150b..07bb506 100644
--- a/tp/Texinfo/Convert/Texinfo.pm
+++ b/tp/Texinfo/Convert/Texinfo.pm
@@ -40,7 +40,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 my %misc_commands            = %Texinfo::Common::misc_commands;
 my %brace_commands           = %Texinfo::Common::brace_commands;    
diff --git a/tp/Texinfo/Convert/TexinfoSXML.pm 
b/tp/Texinfo/Convert/TexinfoSXML.pm
index 6d00db3..8f7c77d 100644
--- a/tp/Texinfo/Convert/TexinfoSXML.pm
+++ b/tp/Texinfo/Convert/TexinfoSXML.pm
@@ -43,7 +43,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 # SXML specific
 my %defaults = (
diff --git a/tp/Texinfo/Convert/TexinfoXML.pm b/tp/Texinfo/Convert/TexinfoXML.pm
index a27f677..dcd86ec 100644
--- a/tp/Texinfo/Convert/TexinfoXML.pm
+++ b/tp/Texinfo/Convert/TexinfoXML.pm
@@ -45,7 +45,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 # XML specific
 my %defaults = (
diff --git a/tp/Texinfo/Convert/Text.pm b/tp/Texinfo/Convert/Text.pm
index fcdad1c..d5b87b0 100644
--- a/tp/Texinfo/Convert/Text.pm
+++ b/tp/Texinfo/Convert/Text.pm
@@ -48,7 +48,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 # this is in fact not needed for 'footnote', 'shortcaption', 'caption'
 # when they have no brace_command_arg, see below.
diff --git a/tp/Texinfo/MiscXS.pm b/tp/Texinfo/MiscXS.pm
index 52a6f2e..f291956 100644
--- a/tp/Texinfo/MiscXS.pm
+++ b/tp/Texinfo/MiscXS.pm
@@ -22,7 +22,7 @@ use 5.00405;
 use strict;
 use warnings;
 
-our $VERSION = '6.7dev';
+our $VERSION = '6.7.90';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm
index f38b79f..ce29fda 100644
--- a/tp/Texinfo/Parser.pm
+++ b/tp/Texinfo/Parser.pm
@@ -20,7 +20,7 @@ use 5.00405;
 use strict;
 use warnings;
 
-our $VERSION = '6.7dev';
+our $VERSION = '6.7.90';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index a22d154..a0784df 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -96,7 +96,7 @@ sub import {
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 sub N__($)
 {
diff --git a/tp/Texinfo/Structuring.pm b/tp/Texinfo/Structuring.pm
index f0a84d7..fe36e2f 100644
--- a/tp/Texinfo/Structuring.pm
+++ b/tp/Texinfo/Structuring.pm
@@ -65,7 +65,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 @EXPORT = qw(
 );
 
-$VERSION = '6.7dev';
+$VERSION = '6.7.90';
 
 
 my %types_to_enter;
diff --git a/tp/Texinfo/XSLoader.pm b/tp/Texinfo/XSLoader.pm
index bfede5f..fe1c3b3 100644
--- a/tp/Texinfo/XSLoader.pm
+++ b/tp/Texinfo/XSLoader.pm
@@ -23,7 +23,7 @@ use warnings;
 
 our $TEXINFO_XS;
 
-our $VERSION = '6.7dev';
+our $VERSION = '6.7.90';
 
 our $disable_XS;
 
diff --git a/util/pdftexi2dvi b/util/pdftexi2dvi
index ff82322..bc82e86 100755
--- a/util/pdftexi2dvi
+++ b/util/pdftexi2dvi
@@ -24,9 +24,9 @@ rcs_version=`set - $rcs_revision; echo $2`
 # obliged to.
 if test "x$1" = x--version; then
   cat <<EOF
-texi2pdf (GNU Texinfo 6.7) $rcs_version
+texi2pdf (GNU Texinfo 6.7.90) $rcs_version
 
-Copyright (C) 2019 Free Software Foundation, Inc.
+Copyright (C) 2021 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.
diff --git a/util/texi2dvi b/util/texi2dvi
index a05e7a8..ededbc3 100755
--- a/util/texi2dvi
+++ b/util/texi2dvi
@@ -1,7 +1,7 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
 #
-# Copyright 1992-2019 Free Software Foundation, Inc.
+# Copyright 1992-2021 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
@@ -198,9 +198,9 @@ EOF
 version ()
 {
   cat <<EOF
-texi2dvi (GNU Texinfo 6.7dev)
+texi2dvi (GNU Texinfo 6.7.90)
 
-Copyright (C) 2019 Free Software Foundation, Inc.
+Copyright (C) 2021 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.
diff --git a/util/texi2pdf b/util/texi2pdf
index ff82322..bc82e86 100755
--- a/util/texi2pdf
+++ b/util/texi2pdf
@@ -24,9 +24,9 @@ rcs_version=`set - $rcs_revision; echo $2`
 # obliged to.
 if test "x$1" = x--version; then
   cat <<EOF
-texi2pdf (GNU Texinfo 6.7) $rcs_version
+texi2pdf (GNU Texinfo 6.7.90) $rcs_version
 
-Copyright (C) 2019 Free Software Foundation, Inc.
+Copyright (C) 2021 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.



reply via email to

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