r61869 - in /branches/upstream/libtest-tcp-perl/current: Changes MANIFEST META.yml Makefile.PL lib/Test/TCP.pm t/07_optional.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Aug 22 17:39:03 UTC 2010


Author: gregoa
Date: Sun Aug 22 17:38:53 2010
New Revision: 61869

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=61869
Log:
[svn-upgrade] new version libtest-tcp-perl (1.02)

Added:
    branches/upstream/libtest-tcp-perl/current/t/07_optional.t
Modified:
    branches/upstream/libtest-tcp-perl/current/Changes
    branches/upstream/libtest-tcp-perl/current/MANIFEST
    branches/upstream/libtest-tcp-perl/current/META.yml
    branches/upstream/libtest-tcp-perl/current/Makefile.PL
    branches/upstream/libtest-tcp-perl/current/lib/Test/TCP.pm

Modified: branches/upstream/libtest-tcp-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-tcp-perl/current/Changes?rev=61869&op=diff
==============================================================================
--- branches/upstream/libtest-tcp-perl/current/Changes (original)
+++ branches/upstream/libtest-tcp-perl/current/Changes Sun Aug 22 17:38:53 2010
@@ -1,4 +1,11 @@
 Revision history for Perl extension Test::TCP
+
+1.02
+
+    - lazy loading issue was fixed at Test::SharedFork 0.12.
+      Depend to it.
+      https://rt.cpan.org/Public/Bug/Display.html?id=60426
+      (reported by J.)
 
 1.01
 

Modified: branches/upstream/libtest-tcp-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-tcp-perl/current/MANIFEST?rev=61869&op=diff
==============================================================================
--- branches/upstream/libtest-tcp-perl/current/MANIFEST (original)
+++ branches/upstream/libtest-tcp-perl/current/MANIFEST Sun Aug 22 17:38:53 2010
@@ -23,6 +23,7 @@
 t/04_die.t
 t/05_sigint.t
 t/06_nest.t
+t/07_optional.t
 t/Server.pm
 xt/01_podspell.t
 xt/02_perlcritic.t

Modified: branches/upstream/libtest-tcp-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-tcp-perl/current/META.yml?rev=61869&op=diff
==============================================================================
--- branches/upstream/libtest-tcp-perl/current/META.yml (original)
+++ branches/upstream/libtest-tcp-perl/current/META.yml Sun Aug 22 17:38:53 2010
@@ -20,8 +20,8 @@
     - xt
 requires:
   IO::Socket::INET: 0
-  Test::SharedFork: 0.09
+  Test::SharedFork: 0.12
   perl: 5.8.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 1.01
+version: 1.02

Modified: branches/upstream/libtest-tcp-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-tcp-perl/current/Makefile.PL?rev=61869&op=diff
==============================================================================
--- branches/upstream/libtest-tcp-perl/current/Makefile.PL (original)
+++ branches/upstream/libtest-tcp-perl/current/Makefile.PL Sun Aug 22 17:38:53 2010
@@ -5,7 +5,7 @@
 all_from 'lib/Test/TCP.pm';
 
 requires 'IO::Socket::INET' => 0;
-requires 'Test::SharedFork' => 0.09;
+requires 'Test::SharedFork' => 0.12;
 
 tests 't/*.t t/*/*.t t/*/*/*.t t/*/*/*/*.t';
 test_requires 'Test::More';

Modified: branches/upstream/libtest-tcp-perl/current/lib/Test/TCP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-tcp-perl/current/lib/Test/TCP.pm?rev=61869&op=diff
==============================================================================
--- branches/upstream/libtest-tcp-perl/current/lib/Test/TCP.pm (original)
+++ branches/upstream/libtest-tcp-perl/current/lib/Test/TCP.pm Sun Aug 22 17:38:53 2010
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use 5.00800;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 use base qw/Exporter/;
 use IO::Socket::INET;
 use Test::SharedFork;

Added: branches/upstream/libtest-tcp-perl/current/t/07_optional.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-tcp-perl/current/t/07_optional.t?rev=61869&op=file
==============================================================================
--- branches/upstream/libtest-tcp-perl/current/t/07_optional.t (added)
+++ branches/upstream/libtest-tcp-perl/current/t/07_optional.t Sun Aug 22 17:38:53 2010
@@ -1,0 +1,14 @@
+use Test::More tests => 2;
+
+ok( 1, 'One' );
+
+SKIP: {
+    eval { require Test::SharedFork };
+
+    skip 'Test::SharedFork needed for tests', 1 if $@;
+
+    ok( 2, 'Two' );
+}
+
+1;
+




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