This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Unicode-Normalize to CPAN version 1.24
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Thu, 3 Dec 2015 15:56:35 +0000 (15:56 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Thu, 3 Dec 2015 15:56:35 +0000 (15:56 +0000)
  [DELTA]

1.24  Sun Nov 29 05:48:44 UTC 2015
    - Updated to use most recent GNU license file.
      ( https://rt.cpan.org/Public/Bug/Display.html?id=108003 )
    - Silence compiler warning message
      ( https://rt.cpan.org/Public/Bug/Display.html?id=109577 )
    - Add kwalitee suggested changes.

Porting/Maintainers.pl
cpan/Unicode-Normalize/Makefile.PL
cpan/Unicode-Normalize/Normalize.pm
cpan/Unicode-Normalize/Normalize.xs

index 35e7ece..8587054 100755 (executable)
@@ -1219,7 +1219,7 @@ use File::Glob qw(:case);
     },
 
     'Unicode::Normalize' => {
-        'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.23.tar.gz',
+        'DISTRIBUTION' => 'KHW/Unicode-Normalize-1.24.tar.gz',
         'FILES'        => q[cpan/Unicode-Normalize],
     },
 
index d25e92d..44a4b8d 100644 (file)
@@ -38,6 +38,7 @@ WriteMakefile(
         warnings        => 0,
         SelectSaver     => 0,
     },
+    ($mm_ver < 6.48 ? () : MIN_PERL_VERSION => 5.6.0),
     ($mm_ver < 6.46 ? () : (META_MERGE => {
         'meta-spec' => { version => 2 },
         resources       => {
index 62c02b1..61b04ea 100644 (file)
@@ -16,7 +16,7 @@ use Carp;
 
 no warnings 'utf8';
 
-our $VERSION = '1.23';
+our $VERSION = '1.24';
 our $PACKAGE = __PACKAGE__;
 
 our @EXPORT = qw( NFC NFD NFKC NFKD );
@@ -597,6 +597,8 @@ Currently maintained by <perl5-porters@perl.org>
 
 Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.
 
+=head1 LICENSE
+
 This module is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.
 
index 36e20b0..fd67a19 100644 (file)
@@ -810,8 +810,8 @@ isComp2nd(uv)
   ALIAS:
     isNFC_MAYBE  = 1
     isNFKC_MAYBE = 2
-
-
+  INIT:
+    PERL_UNUSED_VAR(ix);
 
 SV*
 isNFD_NO(uv)