This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [PATCH] Version tango
authorYitzchak Scott-Thoennes <sthoenna@efn.org>
Mon, 27 May 2002 13:20:56 +0000 (06:20 -0700)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 27 May 2002 20:42:47 +0000 (20:42 +0000)
Message-ID: <oUp88gzkgy+T092yn@efn.org>

p4raw-id: //depot/perl@16822

13 files changed:
ext/Devel/Peek/Peek.pm
ext/Errno/Errno_pm.PL
ext/IO/lib/IO/Dir.pm
ext/IO/lib/IO/Handle.pm
ext/IO/lib/IO/Seekable.pm
ext/IO/lib/IO/Socket/UNIX.pm
ext/IPC/SysV/Msg.pm
ext/IPC/SysV/Semaphore.pm
ext/IPC/SysV/SysV.pm
ext/List/Util/lib/List/Util.pm
ext/Time/HiRes/HiRes.pm
lib/Tie/RefHash.pm
lib/attributes.pm

index 3b4b845..37e01a4 100644 (file)
@@ -5,6 +5,8 @@ package Devel::Peek;
 
 # Underscore to allow older Perls to access older version from CPAN
 $VERSION = '1.00_03';
 
 # Underscore to allow older Perls to access older version from CPAN
 $VERSION = '1.00_03';
+$XS_VERSION = $VERSION;
+$VERSION = eval $VERSION;
 
 require Exporter;
 use XSLoader ();
 
 require Exporter;
 use XSLoader ();
index e4f756e..41560d5 100644 (file)
@@ -287,6 +287,7 @@ use strict;
        die "Errno architecture ($Config{'archname'}-$Config{'osvers'}) does not match executable architecture (\$Config{'archname'}-\$Config{'osvers'})";
 
 \$VERSION = "$VERSION";
        die "Errno architecture ($Config{'archname'}-$Config{'osvers'}) does not match executable architecture (\$Config{'archname'}-\$Config{'osvers'})";
 
 \$VERSION = "$VERSION";
+\$VERSION = eval \$VERSION;
 \@ISA = qw(Exporter);
 
 EDQ
 \@ISA = qw(Exporter);
 
 EDQ
index 4ac2638..ccae4f0 100644 (file)
@@ -20,6 +20,7 @@ use File::Spec;
 
 @ISA = qw(Tie::Hash Exporter);
 $VERSION = "1.03_00";
 
 @ISA = qw(Tie::Hash Exporter);
 $VERSION = "1.03_00";
+$VERSION = eval $VERSION;
 @EXPORT_OK = qw(DIR_UNLINK);
 
 sub DIR_UNLINK () { 1 }
 @EXPORT_OK = qw(DIR_UNLINK);
 
 sub DIR_UNLINK () { 1 }
index 74f9b21..81bec5a 100644 (file)
@@ -259,6 +259,7 @@ require Exporter;
 @ISA = qw(Exporter);
 
 $VERSION = "1.21_00";
 @ISA = qw(Exporter);
 
 $VERSION = "1.21_00";
+$VERSION = eval $VERSION;
 
 @EXPORT_OK = qw(
     autoflush
 
 @EXPORT_OK = qw(
     autoflush
index 684b8bc..2ddee4d 100644 (file)
@@ -108,6 +108,7 @@ require Exporter;
 @ISA = qw(Exporter);
 
 $VERSION = "1.08_00";
 @ISA = qw(Exporter);
 
 $VERSION = "1.08_00";
+$VERSION = eval $VERSION;
 
 sub seek {
     @_ == 3 or croak 'usage: $io->seek(POS, WHENCE)';
 
 sub seek {
     @_ == 3 or croak 'usage: $io->seek(POS, WHENCE)';
index f9651cb..bbc2a44 100644 (file)
@@ -14,6 +14,7 @@ use Carp;
 
 @ISA = qw(IO::Socket);
 $VERSION = "1.20_00";
 
 @ISA = qw(IO::Socket);
 $VERSION = "1.20_00";
+$VERSION = eval $VERSION;
 
 IO::Socket::UNIX->register_domain( AF_UNIX );
 
 
 IO::Socket::UNIX->register_domain( AF_UNIX );
 
index 59d44b5..c92eb55 100644 (file)
@@ -12,6 +12,7 @@ use vars qw($VERSION);
 use Carp;
 
 $VERSION = "1.00_00";
 use Carp;
 
 $VERSION = "1.00_00";
+$VERSION = eval $VERSION;
 
 {
     package IPC::Msg::stat;
 
 {
     package IPC::Msg::stat;
index 3c71ad9..cdbfb77 100644 (file)
@@ -13,6 +13,7 @@ use vars qw($VERSION);
 use Carp;
 
 $VERSION = "1.00_00";
 use Carp;
 
 $VERSION = "1.00_00";
+$VERSION = eval $VERSION;
 
 {
     package IPC::Semaphore::stat;
 
 {
     package IPC::Semaphore::stat;
index 9b62bbf..d4c51af 100644 (file)
@@ -7,7 +7,7 @@
 package IPC::SysV;
 
 use strict;
 package IPC::SysV;
 
 use strict;
-use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION $XS_VERSION);
 use Carp;
 use Config;
 
 use Carp;
 use Config;
 
@@ -15,6 +15,8 @@ require Exporter;
 @ISA = qw(Exporter);
 
 $VERSION = "1.03_00";
 @ISA = qw(Exporter);
 
 $VERSION = "1.03_00";
+$XS_VERSION = $VERSION;
+$VERSION = eval $VERSION;
 
 @EXPORT_OK = qw(
        GETALL GETNCNT GETPID GETVAL GETZCNT
 
 @EXPORT_OK = qw(
        GETALL GETNCNT GETPID GETVAL GETZCNT
@@ -53,7 +55,7 @@ BOOT_XS: {
 
     do {
        __PACKAGE__->can('bootstrap') || \&DynaLoader::bootstrap
 
     do {
        __PACKAGE__->can('bootstrap') || \&DynaLoader::bootstrap
-    }->(__PACKAGE__, $VERSION);
+    }->(__PACKAGE__, $XS_VERSION);
 }
 
 1;
 }
 
 1;
index 1843873..7686ffe 100644 (file)
@@ -12,8 +12,10 @@ require DynaLoader;
 our @ISA       = qw(Exporter DynaLoader);
 our @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle);
 our $VERSION   = "1.07_00";
 our @ISA       = qw(Exporter DynaLoader);
 our @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle);
 our $VERSION   = "1.07_00";
+our $XS_VERSION = $VERSION;
+$VERSION = eval $VERSION;
 
 
-bootstrap List::Util $VERSION;
+bootstrap List::Util $XS_VERSION;
 
 1;
 
 
 1;
 
index 455775f..6337532 100644 (file)
@@ -1,7 +1,7 @@
 package Time::HiRes;
 
 use strict;
 package Time::HiRes;
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use vars qw($VERSION $XS_VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
 
 require Exporter;
 use XSLoader;
 
 require Exporter;
 use XSLoader;
@@ -13,6 +13,8 @@ use XSLoader;
                 getitimer setitimer ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF);
 
 $VERSION = '1.20_00';
                 getitimer setitimer ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF);
 
 $VERSION = '1.20_00';
+$XS_VERSION = $VERSION;
+$VERSION = eval $VERSION;
 
 sub AUTOLOAD {
     my $constname;
 
 sub AUTOLOAD {
     my $constname;
@@ -29,7 +31,7 @@ sub AUTOLOAD {
     goto &$AUTOLOAD;
 }
 
     goto &$AUTOLOAD;
 }
 
-XSLoader::load 'Time::HiRes', $VERSION;
+XSLoader::load 'Time::HiRes', $XS_VERSION;
 
 # Preloaded methods go here.
 
 
 # Preloaded methods go here.
 
index ef7d2b7..8ef85ca 100644 (file)
@@ -1,6 +1,6 @@
 package Tie::RefHash;
 
 package Tie::RefHash;
 
-our $VERSION = '1.3_00';
+our $VERSION = 1.30;
 
 =head1 NAME
 
 
 =head1 NAME
 
@@ -59,7 +59,7 @@ Gurusamy Sarathy        gsar@activestate.com
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 1.3
+Version 1.30
 
 =head1 SEE ALSO
 
 
 =head1 SEE ALSO
 
index 4f6eef0..40b35b8 100644 (file)
@@ -1,6 +1,6 @@
 package attributes;
 
 package attributes;
 
-our $VERSION = '0.04_01';
+our $VERSION = 0.05;
 
 @EXPORT_OK = qw(get reftype);
 @EXPORT = ();
 
 @EXPORT_OK = qw(get reftype);
 @EXPORT = ();