r35997 - in /trunk/libparse-cpan-meta-perl: Changes META.yml Makefile.PL debian/changelog 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:30:36 UTC 2009
Author: jawnsy-guest
Date: Wed May 20 22:30:31 2009
New Revision: 35997
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35997
Log:
* New upstream release (NO RELEASE NECESSARY)
* Only tests have changed, and they only affect Perl versions before 5.8.1
Modified:
trunk/libparse-cpan-meta-perl/Changes
trunk/libparse-cpan-meta-perl/META.yml
trunk/libparse-cpan-meta-perl/Makefile.PL
trunk/libparse-cpan-meta-perl/debian/changelog
trunk/libparse-cpan-meta-perl/lib/Parse/CPAN/Meta.pm
trunk/libparse-cpan-meta-perl/t/15_multibyte.t
Modified: trunk/libparse-cpan-meta-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-meta-perl/Changes?rev=35997&op=diff
==============================================================================
--- trunk/libparse-cpan-meta-perl/Changes (original)
+++ trunk/libparse-cpan-meta-perl/Changes Wed May 20 22:30:31 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: trunk/libparse-cpan-meta-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-meta-perl/META.yml?rev=35997&op=diff
==============================================================================
--- trunk/libparse-cpan-meta-perl/META.yml (original)
+++ trunk/libparse-cpan-meta-perl/META.yml Wed May 20 22:30:31 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: trunk/libparse-cpan-meta-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-meta-perl/Makefile.PL?rev=35997&op=diff
==============================================================================
--- trunk/libparse-cpan-meta-perl/Makefile.PL (original)
+++ trunk/libparse-cpan-meta-perl/Makefile.PL Wed May 20 22:30:31 2009
@@ -1,7 +1,7 @@
use strict;
BEGIN {
require 5.003_96;
- $main::VERSION = '1.38';
+ $main::VERSION = '1.39';
}
use ExtUtils::MakeMaker;
Modified: trunk/libparse-cpan-meta-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-meta-perl/debian/changelog?rev=35997&op=diff
==============================================================================
--- trunk/libparse-cpan-meta-perl/debian/changelog (original)
+++ trunk/libparse-cpan-meta-perl/debian/changelog Wed May 20 22:30:31 2009
@@ -1,3 +1,10 @@
+libparse-cpan-meta-perl (1.39-1) UNRELEASED; urgency=low
+
+ * New upstream release (NO RELEASE NECESSARY)
+ * Only tests have changed, and they only affect Perl versions before 5.8.1
+
+ -- Jonathan Yu <frequency at cpan.org> Wed, 20 May 2009 18:27:59 -0400
+
libparse-cpan-meta-perl (1.38-1) unstable; urgency=low
* New upstream release
Modified: trunk/libparse-cpan-meta-perl/lib/Parse/CPAN/Meta.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-meta-perl/lib/Parse/CPAN/Meta.pm?rev=35997&op=diff
==============================================================================
--- trunk/libparse-cpan-meta-perl/lib/Parse/CPAN/Meta.pm (original)
+++ trunk/libparse-cpan-meta-perl/lib/Parse/CPAN/Meta.pm Wed May 20 22:30:31 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: trunk/libparse-cpan-meta-perl/t/15_multibyte.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-meta-perl/t/15_multibyte.t?rev=35997&op=diff
==============================================================================
--- trunk/libparse-cpan-meta-perl/t/15_multibyte.t (original)
+++ trunk/libparse-cpan-meta-perl/t/15_multibyte.t Wed May 20 22:30:31 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