r5381 - in /packages/libmodule-corelist-perl/branches/upstream/current: Changes META.yml README corelist lib/Module/CoreList.pm

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu May 10 15:01:48 UTC 2007


Author: eloy
Date: Thu May 10 15:01:47 2007
New Revision: 5381

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5381
Log:
[svn-upgrade] Integrating new upstream version, libmodule-corelist-perl (2.10)

Modified:
    packages/libmodule-corelist-perl/branches/upstream/current/Changes
    packages/libmodule-corelist-perl/branches/upstream/current/META.yml
    packages/libmodule-corelist-perl/branches/upstream/current/README
    packages/libmodule-corelist-perl/branches/upstream/current/corelist
    packages/libmodule-corelist-perl/branches/upstream/current/lib/Module/CoreList.pm

Modified: packages/libmodule-corelist-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-corelist-perl/branches/upstream/current/Changes?rev=5381&op=diff
==============================================================================
--- packages/libmodule-corelist-perl/branches/upstream/current/Changes (original)
+++ packages/libmodule-corelist-perl/branches/upstream/current/Changes Thu May 10 15:01:47 2007
@@ -1,3 +1,7 @@
+2.10	Wed May  9 2007
+	- Add versioning for the Unicode Character Database bundled
+	  with Perl (H. Merijn Brand)
+
 2.09	Thu Oct  5 2006
 	- Make the dependency on version.pm optional
 	- Improve doc of corelist(1)

Modified: packages/libmodule-corelist-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-corelist-perl/branches/upstream/current/META.yml?rev=5381&op=diff
==============================================================================
--- packages/libmodule-corelist-perl/branches/upstream/current/META.yml (original)
+++ packages/libmodule-corelist-perl/branches/upstream/current/META.yml Thu May 10 15:01:47 2007
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Module-CoreList
-version:      2.09
+version:      2.10
 version_from: lib/Module/CoreList.pm
 installdirs:  site
 requires:

Modified: packages/libmodule-corelist-perl/branches/upstream/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-corelist-perl/branches/upstream/current/README?rev=5381&op=diff
==============================================================================
--- packages/libmodule-corelist-perl/branches/upstream/current/README (original)
+++ packages/libmodule-corelist-perl/branches/upstream/current/README Thu May 10 15:01:47 2007
@@ -1,4 +1,4 @@
-README for Module::CoreList 2.09
+README for Module::CoreList 2.10
 
 =head1 NAME
 

Modified: packages/libmodule-corelist-perl/branches/upstream/current/corelist
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-corelist-perl/branches/upstream/current/corelist?rev=5381&op=diff
==============================================================================
--- packages/libmodule-corelist-perl/branches/upstream/current/corelist (original)
+++ packages/libmodule-corelist-perl/branches/upstream/current/corelist Thu May 10 15:01:47 2007
@@ -64,6 +64,10 @@
 In module filtering context, it can be used as Perl version filter.
 
 =back
+
+As a special case, if you specify the module name C<Unicode>, you'll get
+the version number of the Unicode Character Database bundled with the
+requested perl versions.
 
 =cut
 
@@ -249,10 +253,9 @@
 
 =head1 COPYRIGHT
 
-Copyright (c) 2002-2006 by D.H. aka PodMaster
-
-Current maintainer : Rafael Garcia-Suarez E<lt>rgarciasuarez at gmail dot
-comE<gt>
+Copyright (c) 2002-2007 by D.H. aka PodMaster
+
+Currently maintained by the perl 5 porters E<lt>perl5-porters at perl.orgE<gt>.
 
 This program is distributed under the same terms as perl itself.
 See http://perl.org/ or http://cpan.org/ for more info on that.

Modified: packages/libmodule-corelist-perl/branches/upstream/current/lib/Module/CoreList.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-corelist-perl/branches/upstream/current/lib/Module/CoreList.pm?rev=5381&op=diff
==============================================================================
--- packages/libmodule-corelist-perl/branches/upstream/current/lib/Module/CoreList.pm (original)
+++ packages/libmodule-corelist-perl/branches/upstream/current/lib/Module/CoreList.pm Thu May 10 15:01:47 2007
@@ -1,7 +1,7 @@
 package Module::CoreList;
 use strict;
 use vars qw/$VERSION %released %patchlevel %version %families/;
-$VERSION = '2.09';
+$VERSION = '2.10';
 
 =head1 NAME
 
@@ -30,7 +30,7 @@
 =head1 DESCRIPTION
 
 Module::CoreList contains the hash of hashes
-%Module::CoreList::version, this is keyed on perl version as indicated
+%Module::CoreList::version, that is keyed on perl version as indicated
 in $].  The second level hash is module => version pairs.
 
 Note, it is possible for the version of a module to be unspecified,
@@ -46,6 +46,9 @@
 In 2.01 %Module::CoreList::patchlevel contains the branch and patchlevel
 corresponding to the specified perl version in the Perforce repository where
 the perl sources are kept.
+
+The special module name C<Unicode> refers to the version of the Unicode
+Character Database bundled with Perl.
 
 =head1 CAVEATS
 
@@ -66,14 +69,14 @@
 
 =head1 COPYRIGHT
 
-Copyright (C) 2002-2006 Richard Clamp.  All Rights Reserved.
+Copyright (C) 2002-2007 Richard Clamp.  All Rights Reserved.
 
 This module is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 
 =head1 SEE ALSO
 
-L<Module::Info>, L<perl>
+L<corelist>, L<Module::Info>, L<perl>
 
 =cut
 
@@ -97,7 +100,7 @@
 
     my @perls = $version
         ? grep { exists $version{$_}{ $module } &&
-                        $version{$_}{ $module } >= $version } keys %version
+                        $version{$_}{ $module } ge $version } keys %version
         : grep { exists $version{$_}{ $module }             } keys %version;
 
     return unless @perls;
@@ -132,12 +135,12 @@
     5.00405  => '1999-04-29',
     5.006    => '2000-03-22',
     5.006001 => '2001-04-08',
-    5.006002 => '2003-11-15',
     5.007003 => '2002-03-05',
     5.008    => '2002-07-19',
     5.008001 => '2003-09-25',
+    5.009    => '2003-10-27',
     5.008002 => '2003-11-05',
-    5.009    => '2003-10-27',
+    5.006002 => '2003-11-15',
     5.008003 => '2004-01-14',
     5.00504  => '2004-02-23',
     5.009001 => '2004-03-16',
@@ -1957,6 +1960,7 @@
         'Time::Local'           => undef, #lib/Time/Local.pm
         'Time::localtime'       => '1.01', #lib/Time/localtime.pm
         'Time::tm'              => undef, #lib/Time/tm.pm
+        'Unicode'               => '3.0.1', # lib/unicore/version
         'UNIVERSAL'             => undef, #lib/UNIVERSAL.pm
         'User::grent'           => undef, #lib/User/grent.pm
         'User::pwent'           => undef, #lib/User/pwent.pm
@@ -2607,6 +2611,7 @@
         'Time::Local'           => '1.04', #./lib/Time/Local.pm
         'Time::localtime'       => '1.02', #./lib/Time/localtime.pm
         'Time::tm'              => '1.00', #./lib/Time/tm.pm
+        'Unicode'               => '3.2.0', # lib/unicore/version
         'Unicode::Collate'      => '0.12', #./lib/Unicode/Collate.pm
         'Unicode::Normalize'    => '0.17', #./ext/Unicode/Normalize/Normalize.pm
         'Unicode::UCD'          => '0.2', #./lib/Unicode/UCD.pm
@@ -2963,6 +2968,7 @@
         'Time::Local'           => '1.07', #./lib/Time/Local.pm
         'Time::localtime'       => '1.02', #./lib/Time/localtime.pm
         'Time::tm'              => '1.00', #./lib/Time/tm.pm
+        'Unicode'               => '4.0.0', # lib/unicore/version
         'Unicode::Collate'      => '0.28', #./lib/Unicode/Collate.pm
         'Unicode::Normalize'    => '0.23', #./lib/Unicode/Normalize.pm
         'Unicode::UCD'          => '0.21', #./lib/Unicode/UCD.pm
@@ -3318,6 +3324,7 @@
         'Time::Local' => 1.07,  #Time\Local.pm
         'Time::localtime' => 1.02, #Time\localtime.pm
         'Time::tm' => '1.00',     #Time\tm.pm
+        'Unicode' => '4.0.0', # lib/unicore/version
         'Unicode::Collate' => '0.30', #Unicode\Collate.pm
         'Unicode::Normalize' => 0.25, #Unicode\Normalize.pm
         'Unicode::UCD' => 0.21, #Unicode\UCD.pm
@@ -3675,6 +3682,7 @@
         'Time::Local'           => '1.07',  #lib/Time/Local.pm
         'Time::localtime'       => '1.02',  #lib/Time/localtime.pm
         'Time::tm'              => '1.00',  #lib/Time/tm.pm
+        'Unicode'               => '4.0.0', # lib/unicore/version
         'Unicode::Collate'      => '0.33',  #lib/Unicode/Collate.pm
         'Unicode::Normalize'    => '0.28',  #lib/Unicode/Normalize.pm
         'Unicode::UCD'          => '0.21',  #lib/Unicode/UCD.pm
@@ -4033,6 +4041,7 @@
         'Time::Local'           => '1.07',  #lib/Time/Local.pm
         'Time::localtime'       => '1.02',  #lib/Time/localtime.pm
         'Time::tm'              => '1.00',  #lib/Time/tm.pm
+        'Unicode'               => '4.0.0', #lib/unicore/version
         'Unicode::Collate'      => '0.28',  #lib/Unicode/Collate.pm
         'Unicode::Normalize'    => '0.23',  #lib/Unicode/Normalize.pm
         'Unicode::UCD'          => '0.21',  #lib/Unicode/UCD.pm
@@ -4399,6 +4408,7 @@
         'Time::Local'           => '1.07_94',  #lib/Time/Local.pm
         'Time::localtime'       => '1.02',  #lib/Time/localtime.pm
         'Time::tm'              => '1.00',  #lib/Time/tm.pm
+        'Unicode'               => '4.0.0', #lib/unicore/version
         'Unicode::Collate'      => '0.33',  #lib/Unicode/Collate.pm
         'Unicode::Normalize'    => '0.28',  #lib/Unicode/Normalize.pm
         'Unicode::UCD'          => '0.21',  #lib/Unicode/UCD.pm
@@ -5065,6 +5075,7 @@
         'Time::localtime'       => '1.02',  #lib/Time/localtime.pm
         'Time::tm'              => '1.00',  #lib/Time/tm.pm
         'Time::HiRes'           => '1.59',  #lib/Time/HiRes.pm
+        'Unicode'               => '4.0.1', # lib/unicore/version
         'Unicode::Collate'      => '0.40',  #lib/Unicode/Collate.pm
         'Unicode::UCD'          => '0.22',  #lib/Unicode/UCD.pm
         'Unicode::Normalize'    => '0.30',  #lib/Unicode/Normalize.pm
@@ -5820,6 +5831,7 @@
 	'Time::localtime'       => '1.02',
 	'Time::tm'              => '1.00',
 	'UNIVERSAL'             => '1.02',
+        'Unicode'               => '4.0.1',
 	'Unicode::Collate'      => '0.40',
 	'Unicode::Normalize'    => '0.30',
 	'Unicode::UCD'          => '0.22',
@@ -6182,6 +6194,7 @@
 	'Time::localtime'       => '1.02',
 	'Time::tm'              => '1.00',
 	'UNIVERSAL'             => '1.01',
+        'Unicode'               => '4.1.0', # lib/unicore/version
 	'Unicode::Collate'      => '0.40',
 	'Unicode::Normalize'    => '0.32',
 	'Unicode::UCD'          => '0.23',
@@ -6624,6 +6637,7 @@
 	'Time::localtime'       => '1.02',
 	'Time::tm'              => '1.00',
 	'UNIVERSAL'             => '1.03',
+        'Unicode'               => '4.1.0',
 	'Unicode::Collate'      => '0.52',
 	'Unicode::Normalize'    => '0.32',
 	'Unicode::UCD'          => '0.24',
@@ -6996,6 +7010,7 @@
 	'Time::localtime'       => '1.02',
 	'Time::tm'              => '1.00',
 	'UNIVERSAL'             => '1.01',
+        'Unicode'               => '4.1.0',
 	'Unicode::Collate'      => '0.52',
 	'Unicode::Normalize'    => '0.32',
 	'Unicode::UCD'          => '0.24',
@@ -7469,6 +7484,7 @@
 	'Time::localtime'       => '1.02',
 	'Time::tm'              => '1.00',
 	'UNIVERSAL'             => '1.04',
+        'Unicode'               => '4.1.0',
 	'Unicode::Collate'      => '0.52',
 	'Unicode::Normalize'    => '1.01',
 	'Unicode::UCD'          => '0.24',




More information about the Pkg-perl-cvs-commits mailing list