r61178 - in /branches/upstream/libyaml-syck-perl/current: Changes META.yml lib/YAML/Syck.pm t/yaml-tie.t

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Thu Aug 5 02:07:54 UTC 2010


Author: ansgar-guest
Date: Thu Aug  5 02:06:06 2010
New Revision: 61178

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=61178
Log:
[svn-upgrade] new version libyaml-syck-perl (1.12)

Modified:
    branches/upstream/libyaml-syck-perl/current/Changes
    branches/upstream/libyaml-syck-perl/current/META.yml
    branches/upstream/libyaml-syck-perl/current/lib/YAML/Syck.pm
    branches/upstream/libyaml-syck-perl/current/t/yaml-tie.t

Modified: branches/upstream/libyaml-syck-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libyaml-syck-perl/current/Changes?rev=61178&op=diff
==============================================================================
--- branches/upstream/libyaml-syck-perl/current/Changes (original)
+++ branches/upstream/libyaml-syck-perl/current/Changes Thu Aug  5 02:06:06 2010
@@ -1,4 +1,8 @@
-[Changes for 1.11 (YAML::Syck 0.34 ) - 2010-08-03]
+[Changes for 1.12 (YAML::Syck 0.35 ) - 2010-08-03]
+* The tie test proved to be very unstable for 5.8 and it's not
+  relevant for tie actually. I'm converting it to a TODO for now.
+
+[Changes for 1.11 (YAML::Syck 0.35 ) - 2010-08-03]
 * Tests are now stable. releasing 1.11
 
 [Changes for 1.10_07 (YAML::Syck 0.34 ) - 2010-07-29]

Modified: branches/upstream/libyaml-syck-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libyaml-syck-perl/current/META.yml?rev=61178&op=diff
==============================================================================
--- branches/upstream/libyaml-syck-perl/current/META.yml (original)
+++ branches/upstream/libyaml-syck-perl/current/META.yml Thu Aug  5 02:06:06 2010
@@ -25,4 +25,4 @@
   homepage: http://search.cpan.org/dist/YAML-Syck
   license: http://opensource.org/licenses/mit-license.php
   repository: http://github.com/avar/YAML-Syck
-version: 1.11
+version: 1.12

Modified: branches/upstream/libyaml-syck-perl/current/lib/YAML/Syck.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libyaml-syck-perl/current/lib/YAML/Syck.pm?rev=61178&op=diff
==============================================================================
--- branches/upstream/libyaml-syck-perl/current/lib/YAML/Syck.pm (original)
+++ branches/upstream/libyaml-syck-perl/current/lib/YAML/Syck.pm Thu Aug  5 02:06:06 2010
@@ -13,7 +13,7 @@
 use Exporter;
 
 BEGIN {
-    $VERSION = '1.11';
+    $VERSION = '1.12';
     @EXPORT  = qw( Dump Load DumpFile LoadFile );
     @ISA     = qw( Exporter );
 

Modified: branches/upstream/libyaml-syck-perl/current/t/yaml-tie.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libyaml-syck-perl/current/t/yaml-tie.t?rev=61178&op=diff
==============================================================================
--- branches/upstream/libyaml-syck-perl/current/t/yaml-tie.t (original)
+++ branches/upstream/libyaml-syck-perl/current/t/yaml-tie.t Thu Aug  5 02:06:06 2010
@@ -17,8 +17,8 @@
     my $th = tie %h, 'Tie::StdHash';
     %h = (a=>1, b=>'2', c=>3.1415, d=>4);
 
-    SKIP: {
-	skip "Perl 5.8.[67] seem to have issues with large ints as ints", 1 unless($] >= '5.008008' || $] < '5.007');
+    TODO: {
+	local $TODO = "Perl 5.8 seems to sometimes coerce ints into strings." unless($] > '5.009888' || $] < '5.007');
 	is(Dump($th), "--- !!perl/hash:Tie::StdHash \na: 1\nb: 2\nc: '3.1415'\nd: 4\n");
     }
 




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