Change 34530 by [EMAIL PROTECTED] on 2008/10/20 14:43:37

        Integrate:
        [ 34365]
        Bump VERSIONs in all non-dual-lived modules that have changed
        since 5.8.8, ready for merging into maint-5.8 prior to 5.8.9.
        (Many (all?) of these should really have been changed prior to
        5.10.0, but better late than never.)
        
        Also modify cmpVERSION.pl to skip uninstalled test modules whose
        VERSIONs don't really matter.
        
        [ 34369]
        Bump $O::VERSION, to reflect change 32626, a doc change that is the only
        change to O.pm since 2001.
        
        [ 34370]
        Bump $ExtUtils::Constant::Utils::VERSION.

Affected files ...

... //depot/maint-5.10/perl/Porting/cmpVERSION.pl#3 integrate
... //depot/maint-5.10/perl/ext/B/O.pm#2 integrate
... //depot/maint-5.10/perl/ext/Opcode/ops.pm#2 integrate
... //depot/maint-5.10/perl/ext/XS/Typemap/Typemap.pm#2 integrate
... //depot/maint-5.10/perl/lib/DBM_Filter/compress.pm#2 integrate
... //depot/maint-5.10/perl/lib/DBM_Filter/encode.pm#2 integrate
... //depot/maint-5.10/perl/lib/DBM_Filter/int32.pm#2 integrate
... //depot/maint-5.10/perl/lib/DBM_Filter/null.pm#2 integrate
... //depot/maint-5.10/perl/lib/DBM_Filter/utf8.pm#2 integrate
... //depot/maint-5.10/perl/lib/ExtUtils/Constant/Utils.pm#2 integrate
... //depot/maint-5.10/perl/lib/File/CheckTree.pm#2 integrate
... //depot/maint-5.10/perl/lib/Getopt/Std.pm#2 integrate
... //depot/maint-5.10/perl/lib/IPC/Open3.pm#2 integrate
... //depot/maint-5.10/perl/lib/PerlIO.pm#2 integrate
... //depot/maint-5.10/perl/lib/Tie/Handle.pm#2 integrate
... //depot/maint-5.10/perl/lib/Tie/Hash.pm#3 integrate
... //depot/maint-5.10/perl/lib/Tie/Scalar.pm#2 integrate
... //depot/maint-5.10/perl/lib/blib.pm#2 integrate
... //depot/maint-5.10/perl/os2/OS2/Process/Process.pm#2 integrate
... //depot/maint-5.10/perl/vms/ext/Stdio/Stdio.pm#2 integrate

Differences ...

==== //depot/maint-5.10/perl/Porting/cmpVERSION.pl#3 (text) ====
Index: perl/Porting/cmpVERSION.pl
--- perl/Porting/cmpVERSION.pl#2~34527~ 2008-10-20 07:09:36.000000000 -0700
+++ perl/Porting/cmpVERSION.pl  2008-10-20 07:43:37.000000000 -0700
@@ -30,10 +30,12 @@
     './lib/Exporter/Heavy.pm',
     './win32/FindExt.pm'
 } = ();
+my $skip_dirs = qr|^\./t/lib|;
 
 my @wanted;
 find(
      sub { /\.pm$/ &&
+              $File::Find::dir !~ $skip_dirs &&
               ! exists $skip{$File::Find::name}
               &&
               do { my $file2 =

==== //depot/maint-5.10/perl/ext/B/O.pm#2 (text) ====
Index: perl/ext/B/O.pm
--- perl/ext/B/O.pm#1~32694~    2007-12-22 01:23:09.000000000 -0800
+++ perl/ext/B/O.pm     2008-10-20 07:43:37.000000000 -0700
@@ -1,6 +1,6 @@
 package O;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 use B qw(minus_c save_BEGINs);
 use Carp;

==== //depot/maint-5.10/perl/ext/Opcode/ops.pm#2 (text) ====
Index: perl/ext/Opcode/ops.pm
--- perl/ext/Opcode/ops.pm#1~32694~     2007-12-22 01:23:09.000000000 -0800
+++ perl/ext/Opcode/ops.pm      2008-10-20 07:43:37.000000000 -0700
@@ -1,6 +1,6 @@
 package ops;
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 use Opcode qw(opmask_add opset invert_opset);
 

==== //depot/maint-5.10/perl/ext/XS/Typemap/Typemap.pm#2 (text) ====
Index: perl/ext/XS/Typemap/Typemap.pm
--- perl/ext/XS/Typemap/Typemap.pm#1~32694~     2007-12-22 01:23:09.000000000 
-0800
+++ perl/ext/XS/Typemap/Typemap.pm      2008-10-20 07:43:37.000000000 -0700
@@ -36,7 +36,7 @@
 
 use vars qw/ $VERSION @EXPORT /;
 
-$VERSION = '0.02';
+$VERSION = '0.03';
 
 @EXPORT = (qw/
           T_SV

==== //depot/maint-5.10/perl/lib/DBM_Filter/compress.pm#2 (text) ====
Index: perl/lib/DBM_Filter/compress.pm
--- perl/lib/DBM_Filter/compress.pm#1~32694~    2007-12-22 01:23:09.000000000 
-0800
+++ perl/lib/DBM_Filter/compress.pm     2008-10-20 07:43:37.000000000 -0700
@@ -4,7 +4,7 @@
 use warnings;
 use Carp;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 BEGIN
 {

==== //depot/maint-5.10/perl/lib/DBM_Filter/encode.pm#2 (text) ====
Index: perl/lib/DBM_Filter/encode.pm
--- perl/lib/DBM_Filter/encode.pm#1~32694~      2007-12-22 01:23:09.000000000 
-0800
+++ perl/lib/DBM_Filter/encode.pm       2008-10-20 07:43:37.000000000 -0700
@@ -4,7 +4,7 @@
 use warnings;
 use Carp;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 BEGIN
 {

==== //depot/maint-5.10/perl/lib/DBM_Filter/int32.pm#2 (text) ====
Index: perl/lib/DBM_Filter/int32.pm
--- perl/lib/DBM_Filter/int32.pm#1~32694~       2007-12-22 01:23:09.000000000 
-0800
+++ perl/lib/DBM_Filter/int32.pm        2008-10-20 07:43:37.000000000 -0700
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 # todo get Filter to figure endian.
 

==== //depot/maint-5.10/perl/lib/DBM_Filter/null.pm#2 (text) ====
Index: perl/lib/DBM_Filter/null.pm
--- perl/lib/DBM_Filter/null.pm#1~32694~        2007-12-22 01:23:09.000000000 
-0800
+++ perl/lib/DBM_Filter/null.pm 2008-10-20 07:43:37.000000000 -0700
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub Store
 {

==== //depot/maint-5.10/perl/lib/DBM_Filter/utf8.pm#2 (text) ====
Index: perl/lib/DBM_Filter/utf8.pm
--- perl/lib/DBM_Filter/utf8.pm#1~32694~        2007-12-22 01:23:09.000000000 
-0800
+++ perl/lib/DBM_Filter/utf8.pm 2008-10-20 07:43:37.000000000 -0700
@@ -4,7 +4,7 @@
 use warnings;
 use Carp;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 BEGIN
 {

==== //depot/maint-5.10/perl/lib/ExtUtils/Constant/Utils.pm#2 (text) ====
Index: perl/lib/ExtUtils/Constant/Utils.pm
--- perl/lib/ExtUtils/Constant/Utils.pm#1~32694~        2007-12-22 
01:23:09.000000000 -0800
+++ perl/lib/ExtUtils/Constant/Utils.pm 2008-10-20 07:43:37.000000000 -0700
@@ -6,7 +6,7 @@
 
 @ISA = 'Exporter';
 @EXPORT_OK = qw(C_stringify perl_stringify);
-$VERSION = '0.01';
+$VERSION = '0.02';
 
 $is_perl56 = ($] < 5.007 && $] > 5.005_50);
 

==== //depot/maint-5.10/perl/lib/File/CheckTree.pm#2 (text) ====
Index: perl/lib/File/CheckTree.pm
--- perl/lib/File/CheckTree.pm#1~32694~ 2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/File/CheckTree.pm  2008-10-20 07:43:37.000000000 -0700
@@ -7,7 +7,7 @@
 use warnings;
 use strict;
 
-our $VERSION = '4.3';
+our $VERSION = '4.4';
 our @ISA     = qw(Exporter);
 our @EXPORT  = qw(validate);
 

==== //depot/maint-5.10/perl/lib/Getopt/Std.pm#2 (text) ====
Index: perl/lib/Getopt/Std.pm
--- perl/lib/Getopt/Std.pm#1~32694~     2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/Getopt/Std.pm      2008-10-20 07:43:37.000000000 -0700
@@ -72,7 +72,7 @@
 
 @ISA = qw(Exporter);
 @EXPORT = qw(getopt getopts);
-$VERSION = '1.05';
+$VERSION = '1.06';
 # uncomment the next line to disable 1.03-backward compatibility paranoia
 # $STANDARD_HELP_VERSION = 1;
 

==== //depot/maint-5.10/perl/lib/IPC/Open3.pm#2 (text) ====
Index: perl/lib/IPC/Open3.pm
--- perl/lib/IPC/Open3.pm#1~32694~      2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/IPC/Open3.pm       2008-10-20 07:43:37.000000000 -0700
@@ -9,7 +9,7 @@
 use Carp;
 use Symbol qw(gensym qualify);
 
-$VERSION       = 1.02;
+$VERSION       = 1.03;
 @ISA           = qw(Exporter);
 @EXPORT                = qw(open3);
 

==== //depot/maint-5.10/perl/lib/PerlIO.pm#2 (text) ====
Index: perl/lib/PerlIO.pm
--- perl/lib/PerlIO.pm#1~32694~ 2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/PerlIO.pm  2008-10-20 07:43:37.000000000 -0700
@@ -1,6 +1,6 @@
 package PerlIO;
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 
 # Map layer name to package that defines it
 our %alias;

==== //depot/maint-5.10/perl/lib/Tie/Handle.pm#2 (text) ====
Index: perl/lib/Tie/Handle.pm
--- perl/lib/Tie/Handle.pm#1~32694~     2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/Tie/Handle.pm      2008-10-20 07:43:37.000000000 -0700
@@ -1,7 +1,7 @@
 package Tie::Handle;
 
 use 5.006_001;
-our $VERSION = '4.1';
+our $VERSION = '4.2';
 
 # Tie::StdHandle used to be inside Tie::Handle.  For backwards compatibility
 # loading Tie::Handle has to make Tie::StdHandle available.

==== //depot/maint-5.10/perl/lib/Tie/Hash.pm#3 (text) ====
Index: perl/lib/Tie/Hash.pm
--- perl/lib/Tie/Hash.pm#2~33884~       2008-05-20 08:07:58.000000000 -0700
+++ perl/lib/Tie/Hash.pm        2008-10-20 07:43:37.000000000 -0700
@@ -1,6 +1,6 @@
 package Tie::Hash;
 
-our $VERSION = '1.02';
+our $VERSION = '1.03';
 
 =head1 NAME
 

==== //depot/maint-5.10/perl/lib/Tie/Scalar.pm#2 (text) ====
Index: perl/lib/Tie/Scalar.pm
--- perl/lib/Tie/Scalar.pm#1~32694~     2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/Tie/Scalar.pm      2008-10-20 07:43:37.000000000 -0700
@@ -1,6 +1,6 @@
 package Tie::Scalar;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 

==== //depot/maint-5.10/perl/lib/blib.pm#2 (text) ====
Index: perl/lib/blib.pm
--- perl/lib/blib.pm#1~32694~   2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/blib.pm    2008-10-20 07:43:37.000000000 -0700
@@ -40,7 +40,7 @@
 use File::Spec;
 
 use vars qw($VERSION $Verbose);
-$VERSION = '1.03';
+$VERSION = '1.04';
 $Verbose = 0;
 
 sub import

==== //depot/maint-5.10/perl/os2/OS2/Process/Process.pm#2 (text) ====
Index: perl/os2/OS2/Process/Process.pm
--- perl/os2/OS2/Process/Process.pm#1~32694~    2007-12-22 01:23:09.000000000 
-0800
+++ perl/os2/OS2/Process/Process.pm     2008-10-20 07:43:37.000000000 -0700
@@ -20,7 +20,7 @@
   #require AutoLoader;
 
   our @ISA = qw(Exporter);
-  our $VERSION = "1.02";
+  our $VERSION = "1.03";
   XSLoader::load('OS2::Process', $VERSION);
 }
 

==== //depot/maint-5.10/perl/vms/ext/Stdio/Stdio.pm#2 (text) ====
Index: perl/vms/ext/Stdio/Stdio.pm
--- perl/vms/ext/Stdio/Stdio.pm#1~32694~        2007-12-22 01:23:09.000000000 
-0800
+++ perl/vms/ext/Stdio/Stdio.pm 2008-10-20 07:43:37.000000000 -0700
@@ -13,7 +13,7 @@
 use DynaLoader ();
 use Exporter ();
  
-$VERSION = '2.3';
+$VERSION = '2.4';
 @ISA = qw( Exporter DynaLoader IO::File );
 @EXPORT = qw( &O_APPEND &O_CREAT &O_EXCL  &O_NDELAY &O_NOWAIT
               &O_RDONLY &O_RDWR  &O_TRUNC &O_WRONLY );
End of Patch.

Reply via email to