r51123 - in /branches/upstream/libnamespace-clean-perl/current: Changes META.yml README lib/namespace/clean.pm t/07-debugger.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Jan 17 18:05:01 UTC 2010


Author: jawnsy-guest
Date: Sun Jan 17 18:04:11 2010
New Revision: 51123

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51123
Log:
[svn-upgrade] Integrating new upstream version, libnamespace-clean-perl (0.13)

Modified:
    branches/upstream/libnamespace-clean-perl/current/Changes
    branches/upstream/libnamespace-clean-perl/current/META.yml
    branches/upstream/libnamespace-clean-perl/current/README
    branches/upstream/libnamespace-clean-perl/current/lib/namespace/clean.pm
    branches/upstream/libnamespace-clean-perl/current/t/07-debugger.t

Modified: branches/upstream/libnamespace-clean-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-clean-perl/current/Changes?rev=51123&op=diff
==============================================================================
--- branches/upstream/libnamespace-clean-perl/current/Changes (original)
+++ branches/upstream/libnamespace-clean-perl/current/Changes Sun Jan 17 18:04:11 2010
@@ -1,3 +1,6 @@
+    [0.13] Sun Jan 17 02:40:48 CET 2010
+        - Skip failing debugger tests on 5.8.8 and older.
+
     [0.12] Thu Jan 14 03:22:03 CET 2010
         - Stop relying on stash entries always being upgraded into real GVs
           (Zefram).

Modified: branches/upstream/libnamespace-clean-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-clean-perl/current/META.yml?rev=51123&op=diff
==============================================================================
--- branches/upstream/libnamespace-clean-perl/current/META.yml (original)
+++ branches/upstream/libnamespace-clean-perl/current/META.yml Sun Jan 17 18:04:11 2010
@@ -22,7 +22,7 @@
 provides:
   namespace::clean:
     file: lib/namespace/clean.pm
-    version: 0.12
+    version: 0.13
 requires:
   B::Hooks::EndOfScope: 0.07
   Sub::Identify: 0.04
@@ -30,4 +30,4 @@
   Symbol: 0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.12
+version: 0.13

Modified: branches/upstream/libnamespace-clean-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-clean-perl/current/README?rev=51123&op=diff
==============================================================================
--- branches/upstream/libnamespace-clean-perl/current/README (original)
+++ branches/upstream/libnamespace-clean-perl/current/README Sun Jan 17 18:04:11 2010
@@ -2,7 +2,7 @@
     namespace::clean - Keep imports and functions out of your namespace
 
 VERSION
-    0.12
+    0.13
 
 SYNOPSIS
       package Foo;

Modified: branches/upstream/libnamespace-clean-perl/current/lib/namespace/clean.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-clean-perl/current/lib/namespace/clean.pm?rev=51123&op=diff
==============================================================================
--- branches/upstream/libnamespace-clean-perl/current/lib/namespace/clean.pm (original)
+++ branches/upstream/libnamespace-clean-perl/current/lib/namespace/clean.pm Sun Jan 17 18:04:11 2010
@@ -17,11 +17,11 @@
 
 =head1 VERSION
 
-0.12
-
-=cut
-
-$VERSION         = '0.12';
+0.13
+
+=cut
+
+$VERSION         = '0.13';
 $STORAGE_VAR     = '__NAMESPACE_CLEAN_STORAGE';
 
 =head1 SYNOPSIS

Modified: branches/upstream/libnamespace-clean-perl/current/t/07-debugger.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-clean-perl/current/t/07-debugger.t?rev=51123&op=diff
==============================================================================
--- branches/upstream/libnamespace-clean-perl/current/t/07-debugger.t (original)
+++ branches/upstream/libnamespace-clean-perl/current/t/07-debugger.t Sun Jan 17 18:04:11 2010
@@ -1,7 +1,19 @@
 #!/usr/bin/perl -d
 
+use Test::More;
+
 BEGIN {
-    push @DB::typeahead, "c", "q";
+    # apparently we can't just skip_all with -d, because the debugger breaks at
+    # Test::Testers END block
+    if ($] <= 5.008008) {
+        pass;
+        done_testing;
+    }
+    else {
+        push @DB::typeahead, "c";
+    }
+
+    push @DB::typeahead, "q";
 
     # try to shut it up at least a little bit
     open my $out, ">", \my $out_buf;
@@ -24,11 +36,9 @@
     }
 }
 
-use Test::More tests => 5;
-
 ok( !Foo->can("foo"), "foo cleaned up" );
 ok( !Foo->can("baz"), "baz cleaned up" );
 
 Foo->bar();
 
-pass();
+done_testing;




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