r14031 - in /branches/upstream/libproc-fork-perl/current: Changes META.yml lib/Proc/Fork.pm t/01.real.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Feb 2 22:10:47 UTC 2008


Author: gregoa-guest
Date: Sat Feb  2 22:10:47 2008
New Revision: 14031

URL: http://svn.debian.org/wsvn/?sc=1&rev=14031
Log:
[svn-upgrade] Integrating new upstream version, libproc-fork-perl (0.61)

Modified:
    branches/upstream/libproc-fork-perl/current/Changes
    branches/upstream/libproc-fork-perl/current/META.yml
    branches/upstream/libproc-fork-perl/current/lib/Proc/Fork.pm
    branches/upstream/libproc-fork-perl/current/t/01.real.t

Modified: branches/upstream/libproc-fork-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libproc-fork-perl/current/Changes?rev=14031&op=diff
==============================================================================
--- branches/upstream/libproc-fork-perl/current/Changes (original)
+++ branches/upstream/libproc-fork-perl/current/Changes Sat Feb  2 22:10:47 2008
@@ -1,4 +1,13 @@
 =head1 Revision history for Proc-Fork
+
+
+=head2 0.61 (2007-12-23 12:06:22+0100)
+
+=over 4
+
+=item * Test suite fix attempt: in Perl 5.5.5, C<t/01.real.t> would generate the TAP header multiple times
+
+=back
 
 
 =head2 0.6 (2007-12-23 06:15:59+0100)

Modified: branches/upstream/libproc-fork-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libproc-fork-perl/current/META.yml?rev=14031&op=diff
==============================================================================
--- branches/upstream/libproc-fork-perl/current/META.yml (original)
+++ branches/upstream/libproc-fork-perl/current/META.yml Sat Feb  2 22:10:47 2008
@@ -1,6 +1,6 @@
 ---
 name: Proc-Fork
-version: 0.6
+version: 0.61
 author:
   - 'Aristotle Pagaltzis <pagaltzis at gmx.de>'
 abstract: 'Simple, intuitive interface to the fork() system call'
@@ -12,7 +12,7 @@
 provides:
   Proc::Fork:
     file: lib/Proc/Fork.pm
-    version: 0.6
+    version: 0.61
 generated_by: Module::Build version 0.2808
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html

Modified: branches/upstream/libproc-fork-perl/current/lib/Proc/Fork.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libproc-fork-perl/current/lib/Proc/Fork.pm?rev=14031&op=diff
==============================================================================
--- branches/upstream/libproc-fork-perl/current/lib/Proc/Fork.pm (original)
+++ branches/upstream/libproc-fork-perl/current/lib/Proc/Fork.pm Sat Feb  2 22:10:47 2008
@@ -2,7 +2,7 @@
 
 package Proc::Fork;
 
-$VERSION = 0.6; # also change it in the docs
+$VERSION = 0.61; # also change it in the docs
 
 use strict;
 use warnings;
@@ -79,7 +79,7 @@
 
 =head1 VERSION
 
-This documentation describes Proc::Fork version 0.6
+This documentation describes Proc::Fork version 0.61
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libproc-fork-perl/current/t/01.real.t
URL: http://svn.debian.org/wsvn/branches/upstream/libproc-fork-perl/current/t/01.real.t?rev=14031&op=diff
==============================================================================
--- branches/upstream/libproc-fork-perl/current/t/01.real.t (original)
+++ branches/upstream/libproc-fork-perl/current/t/01.real.t Sat Feb  2 22:10:47 2008
@@ -2,16 +2,18 @@
 use strict;
 use warnings;
 
-# impossible to beat Test::More into submission when fork()'s involved
+# impossible to beat Test::More into submission when fork() is involved
+# note: parent uses waitpid to ensure order of output
 
 sub say { print @_, "\n" }
 
-BEGIN { say '1..3'; }
+                             say '1..3';
+eval 'use Proc::Fork; 1' and say 'ok 1 - use Proc::Fork';
 
-BEGIN { eval 'use Proc::Fork'; if( $@ ) { say 'not ok 1 - use Proc::Fork'; exit } say 'ok 1 - use Proc::Fork' }
+eval do { local $/; <DATA> };
+__END__
 
-# parent uses waitpid to ensure order of output
-child  {                   say 'ok 2 - child code runs'  }
-parent { waitpid shift, 0; say 'ok 3 - parent code runs' }
+child  {                     say 'ok 2 - child code runs'  }
+parent { waitpid shift, 0;   say 'ok 3 - parent code runs' }
 
 # vim:ft=perl:




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