This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Updated Unicode-Normalize to CPAN version 1.13
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Mon, 25 Jul 2011 15:13:43 +0000 (16:13 +0100)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Mon, 25 Jul 2011 15:13:43 +0000 (16:13 +0100)
  [DELTA]

  1.13  Mon Jul 25 21:07:49 2011
    - tried fixing the tarball with world writable files.
      ( http://www.perlmonks.org/?node_id=731935 )

Porting/Maintainers.pl
cpan/Unicode-Normalize/Changes
cpan/Unicode-Normalize/Makefile.PL
cpan/Unicode-Normalize/Normalize.pm
cpan/Unicode-Normalize/README
pod/perldelta.pod

index fd3b1bb..69f09eb 100755 (executable)
@@ -1978,7 +1978,7 @@ use File::Glob qw(:case);
     'Unicode::Normalize' =>
        {
        'MAINTAINER'    => 'sadahiro',
-       'DISTRIBUTION'  => 'SADAHIRO/Unicode-Normalize-1.12-withoutworldwriteables.tar.gz',
+       'DISTRIBUTION'  => 'SADAHIRO/Unicode-Normalize-1.13.tar.gz',
        'FILES'         => q[cpan/Unicode-Normalize],
        'EXCLUDED'      => [ qw{MANIFEST.N Normalize.pmN disableXS enableXS }],
        'UPSTREAM'      => 'first-come',
index 881fdf6..789414c 100644 (file)
@@ -1,12 +1,16 @@
 Revision history for Perl extension Unicode::Normalize.
 
+1.13  Mon Jul 25 21:07:49 2011
+    - tried fixing the tarball with world writable files.
+      ( http://www.perlmonks.org/?node_id=731935 )
+
 1.12  Mon May 16 23:36:07 2011
-    - removed Normalize/CompExcl.pl and Composition Exclusions are coded;
+    - removed Normalize/CompExcl.pl and coded Composition Exclusions;
       how to load CompExcl.pl seems not good, but I'm not sure...
 
 1.11  Sun May 15 20:31:09 2011
     - As perl 5.14.0 has removed unicore/CompositionExclusions.txt
-      in the installation, Normalize/CompExcl.pl in this distribution
+      from the installation, Normalize/CompExcl.pl in this distribution
       is used instead. (see [rt.cpan.org #68106])
 
 1.10  Sun Jan 16 21:00:34 2011
index a04ca62..cf0644b 100644 (file)
@@ -12,7 +12,10 @@ if (-f "Normalize.xs") {
 }
 
 WriteMakefile(
+    'AUTHOR'           => 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>',
+    'ABSTRACT'         => 'Unicode Normalization Forms',
     'INSTALLDIRS'      => $] >= 5.007002 ? 'perl' : 'site',
+    'LICENSE'          => 'perl',
     'NAME'             => 'Unicode::Normalize',
     'VERSION_FROM'     => 'Normalize.pm', # finds $VERSION
     'clean'            => $clean,
index 3ca56ad..906f219 100644 (file)
@@ -13,7 +13,7 @@ use Carp;
 
 no warnings 'utf8';
 
-our $VERSION = '1.12';
+our $VERSION = '1.13';
 our $PACKAGE = __PACKAGE__;
 
 our @EXPORT = qw( NFC NFD NFKC NFKD );
index 3fc6c75..7ba3701 100644 (file)
@@ -1,4 +1,4 @@
-Unicode/Normalize version 1.12
+Unicode/Normalize version 1.13
 ===================================
 
 Unicode::Normalize - Unicode Normalization Forms
index 6996911..dea6dee 100644 (file)
@@ -134,6 +134,10 @@ stringification defined.
 
 L<Unicode::Collate> has been upgraded from version 0.77 to version 0.78
 
+=item *
+
+L<Unicode::Normalize> has been upgraded from version 1.12 to version 1.13
+
 =back
 
 =head2 Removed Modules and Pragmata