r64096 - in /branches/upstream/libdata-dump-perl/current: Changes META.yml Makefile.PL lib/Data/Dump.pm t/quote-unicode.t t/vstring.t

jotamjr-guest at users.alioth.debian.org jotamjr-guest at users.alioth.debian.org
Thu Oct 21 03:42:45 UTC 2010


Author: jotamjr-guest
Date: Thu Oct 21 03:40:32 2010
New Revision: 64096

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=64096
Log:
[svn-upgrade] new version libdata-dump-perl (1.19)

Modified:
    branches/upstream/libdata-dump-perl/current/Changes
    branches/upstream/libdata-dump-perl/current/META.yml
    branches/upstream/libdata-dump-perl/current/Makefile.PL
    branches/upstream/libdata-dump-perl/current/lib/Data/Dump.pm
    branches/upstream/libdata-dump-perl/current/t/quote-unicode.t
    branches/upstream/libdata-dump-perl/current/t/vstring.t

Modified: branches/upstream/libdata-dump-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-perl/current/Changes?rev=64096&op=diff
==============================================================================
--- branches/upstream/libdata-dump-perl/current/Changes (original)
+++ branches/upstream/libdata-dump-perl/current/Changes Thu Oct 21 03:40:32 2010
@@ -1,3 +1,11 @@
+2010-10-19  Gisle Aas <gisle at ActiveState.com>
+
+   Release 1.19
+
+   Add skips to tests to make perl-5.8 happy
+
+
+
 2010-10-18  Gisle Aas <gisle at ActiveState.com>
 
    Release 1.18

Modified: branches/upstream/libdata-dump-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-perl/current/META.yml?rev=64096&op=diff
==============================================================================
--- branches/upstream/libdata-dump-perl/current/META.yml (original)
+++ branches/upstream/libdata-dump-perl/current/META.yml Thu Oct 21 03:40:32 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Data-Dump
-version:            1.18
+version:            1.19
 abstract:           Pretty printing of data structures
 author:
     - Gisle Aas <gisle at activestate.com>

Modified: branches/upstream/libdata-dump-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-perl/current/Makefile.PL?rev=64096&op=diff
==============================================================================
--- branches/upstream/libdata-dump-perl/current/Makefile.PL (original)
+++ branches/upstream/libdata-dump-perl/current/Makefile.PL Thu Oct 21 03:40:32 2010
@@ -32,7 +32,7 @@
         META_MERGE => 6.45,
         META_ADD => 6.45,
         MIN_PERL_VERSION => 6.48,
-        BUILD_REQUIRES => 6.45,
+        BUILD_REQUIRES => 6.56,
     );
     undef(*WriteMakefile);
     *WriteMakefile = sub {

Modified: branches/upstream/libdata-dump-perl/current/lib/Data/Dump.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-perl/current/lib/Data/Dump.pm?rev=64096&op=diff
==============================================================================
--- branches/upstream/libdata-dump-perl/current/lib/Data/Dump.pm (original)
+++ branches/upstream/libdata-dump-perl/current/lib/Data/Dump.pm Thu Oct 21 03:40:32 2010
@@ -9,7 +9,7 @@
 @EXPORT = qw(dd ddx);
 @EXPORT_OK = qw(dump pp dumpf quote);
 
-$VERSION = "1.18";
+$VERSION = "1.19";
 $DEBUG = 0;
 
 use overload ();

Modified: branches/upstream/libdata-dump-perl/current/t/quote-unicode.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-perl/current/t/quote-unicode.t?rev=64096&op=diff
==============================================================================
--- branches/upstream/libdata-dump-perl/current/t/quote-unicode.t (original)
+++ branches/upstream/libdata-dump-perl/current/t/quote-unicode.t Thu Oct 21 03:40:32 2010
@@ -8,7 +8,7 @@
 }
 
 use strict;
-use Test qw(plan ok);
+use Test qw(plan ok skip);
 
 plan tests => 8;
 
@@ -25,5 +25,6 @@
 $a .= chr($_) for 128 .. 255;
 $a .= "\x{FFF}"; chop($a); # upgrade
 ok(utf8::is_utf8($a));
-ok(dump($a), 'pack("H*","' . join('', map sprintf("%02x", $_), 128..255). '")');
+skip($] < 5.010 ? "perl-5.10 required" : "",
+    dump($a), 'pack("H*","' . join('', map sprintf("%02x", $_), 128..255). '")');
 ok(utf8::is_utf8($a));

Modified: branches/upstream/libdata-dump-perl/current/t/vstring.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-dump-perl/current/t/vstring.t?rev=64096&op=diff
==============================================================================
--- branches/upstream/libdata-dump-perl/current/t/vstring.t (original)
+++ branches/upstream/libdata-dump-perl/current/t/vstring.t Thu Oct 21 03:40:32 2010
@@ -1,4 +1,11 @@
 #!perl -w
+
+BEGIN {
+    if ($] < 5.010) {
+	print "1..0 # Skipped: perl-5.10 required\n";
+	exit;
+    }
+}
 
 use strict;
 use Test;




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