r35995 - in /branches/upstream/libparse-cpan-meta-perl/current: Changes META.yml Makefile.PL lib/Parse/CPAN/Meta.pm t/15_multibyte.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed May 20 22:27:33 UTC 2009


Author: jawnsy-guest
Date: Wed May 20 22:27:28 2009
New Revision: 35995

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35995
Log:
[svn-upgrade] Integrating new upstream version, libparse-cpan-meta-perl (1.39)

Modified:
    branches/upstream/libparse-cpan-meta-perl/current/Changes
    branches/upstream/libparse-cpan-meta-perl/current/META.yml
    branches/upstream/libparse-cpan-meta-perl/current/Makefile.PL
    branches/upstream/libparse-cpan-meta-perl/current/lib/Parse/CPAN/Meta.pm
    branches/upstream/libparse-cpan-meta-perl/current/t/15_multibyte.t

Modified: branches/upstream/libparse-cpan-meta-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparse-cpan-meta-perl/current/Changes?rev=35995&op=diff
==============================================================================
--- branches/upstream/libparse-cpan-meta-perl/current/Changes (original)
+++ branches/upstream/libparse-cpan-meta-perl/current/Changes Wed May 20 22:27:28 2009
@@ -1,4 +1,8 @@
-Revision history for Perl extension Parse-CPAN-Meta
+Changes for Perl programming language extension Parse-CPAN-Meta
+
+1.39 Thu 21 May 2009
+	- Even though utf8 starts at 5.7+ there's no is_utf till
+	  5.8.1 so skip in the tests if needed (ADAMK)
 
 1.38 Sat 16 May 2009
 	- Synchorised version numbers with YAML::Tiny

Modified: branches/upstream/libparse-cpan-meta-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparse-cpan-meta-perl/current/META.yml?rev=35995&op=diff
==============================================================================
--- branches/upstream/libparse-cpan-meta-perl/current/META.yml (original)
+++ branches/upstream/libparse-cpan-meta-perl/current/META.yml Wed May 20 22:27:28 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Parse-CPAN-Meta
-version:            1.38
+version:            1.39
 abstract:           Parse META.yml and other similar CPAN metadata files
 author:
     - Adam Kennedy <adamk at cpan.org>

Modified: branches/upstream/libparse-cpan-meta-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparse-cpan-meta-perl/current/Makefile.PL?rev=35995&op=diff
==============================================================================
--- branches/upstream/libparse-cpan-meta-perl/current/Makefile.PL (original)
+++ branches/upstream/libparse-cpan-meta-perl/current/Makefile.PL Wed May 20 22:27:28 2009
@@ -1,7 +1,7 @@
 use strict;
 BEGIN {
 	require 5.003_96;
-	$main::VERSION = '1.38';
+	$main::VERSION = '1.39';
 }
 use ExtUtils::MakeMaker;
 

Modified: branches/upstream/libparse-cpan-meta-perl/current/lib/Parse/CPAN/Meta.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparse-cpan-meta-perl/current/lib/Parse/CPAN/Meta.pm?rev=35995&op=diff
==============================================================================
--- branches/upstream/libparse-cpan-meta-perl/current/lib/Parse/CPAN/Meta.pm (original)
+++ branches/upstream/libparse-cpan-meta-perl/current/lib/Parse/CPAN/Meta.pm Wed May 20 22:27:28 2009
@@ -15,7 +15,7 @@
 	# Class structure
 	require 5.004;
 	require Exporter;
-	$Parse::CPAN::Meta::VERSION   = '1.38';
+	$Parse::CPAN::Meta::VERSION   = '1.39';
 	@Parse::CPAN::Meta::ISA       = qw{ Exporter      };
 	@Parse::CPAN::Meta::EXPORT_OK = qw{ Load LoadFile };
 }

Modified: branches/upstream/libparse-cpan-meta-perl/current/t/15_multibyte.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparse-cpan-meta-perl/current/t/15_multibyte.t?rev=35995&op=diff
==============================================================================
--- branches/upstream/libparse-cpan-meta-perl/current/t/15_multibyte.t (original)
+++ branches/upstream/libparse-cpan-meta-perl/current/t/15_multibyte.t Wed May 20 22:27:28 2009
@@ -48,6 +48,12 @@
 }
 
 SKIP: {
-	skip "no utf8 support", 1 unless Parse::CPAN::Meta::HAVE_UTF8();
+	unless ( Parse::CPAN::Meta::HAVE_UTF8() ) {
+		skip("no utf8 support", 1 );
+	}
+	eval { utf8::is_utf8('') };
+	if ( $@ ) {
+		skip("no is_utf8 to test with until 5.8.1", 1);
+	}
 	ok( utf8::is_utf8($yaml[0]->{author}), "utf8 decoded" );
 }




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