r14033 - in /trunk/libproc-fork-perl: Changes META.yml debian/changelog 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:12:00 UTC 2008


Author: gregoa-guest
Date: Sat Feb  2 22:12:00 2008
New Revision: 14033

URL: http://svn.debian.org/wsvn/?sc=1&rev=14033
Log:
New upstream release.

Modified:
    trunk/libproc-fork-perl/Changes
    trunk/libproc-fork-perl/META.yml
    trunk/libproc-fork-perl/debian/changelog
    trunk/libproc-fork-perl/lib/Proc/Fork.pm
    trunk/libproc-fork-perl/t/01.real.t

Modified: trunk/libproc-fork-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libproc-fork-perl/Changes?rev=14033&op=diff
==============================================================================
--- trunk/libproc-fork-perl/Changes (original)
+++ trunk/libproc-fork-perl/Changes Sat Feb  2 22:12:00 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: trunk/libproc-fork-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libproc-fork-perl/META.yml?rev=14033&op=diff
==============================================================================
--- trunk/libproc-fork-perl/META.yml (original)
+++ trunk/libproc-fork-perl/META.yml Sat Feb  2 22:12:00 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: trunk/libproc-fork-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libproc-fork-perl/debian/changelog?rev=14033&op=diff
==============================================================================
--- trunk/libproc-fork-perl/debian/changelog (original)
+++ trunk/libproc-fork-perl/debian/changelog Sat Feb  2 22:12:00 2008
@@ -1,7 +1,4 @@
 libproc-fork-perl (0.6-2) UNRELEASED; urgency=low
-
-  [ gregor herrmann ]
-  * debian/rules: delete /usr/lib/perl5 only if it exists.
 
   [ Rene Mayorga ]
   * Preparing the package for perl 5.10
@@ -11,7 +8,11 @@
   * debian/rules
     + use dh_linstpackages instead a hardcode name
 
- -- Rene Mayorga <rmayorga at debian.org.sv>  Wed, 23 Jan 2008 22:15:46 -0600
+  [ gregor herrmann ]
+  * New upstream release.
+  * debian/rules: delete /usr/lib/perl5 only if it exists.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 02 Feb 2008 23:10:53 +0100
 
 libproc-fork-perl (0.6-1) unstable; urgency=low
 

Modified: trunk/libproc-fork-perl/lib/Proc/Fork.pm
URL: http://svn.debian.org/wsvn/trunk/libproc-fork-perl/lib/Proc/Fork.pm?rev=14033&op=diff
==============================================================================
--- trunk/libproc-fork-perl/lib/Proc/Fork.pm (original)
+++ trunk/libproc-fork-perl/lib/Proc/Fork.pm Sat Feb  2 22:12:00 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: trunk/libproc-fork-perl/t/01.real.t
URL: http://svn.debian.org/wsvn/trunk/libproc-fork-perl/t/01.real.t?rev=14033&op=diff
==============================================================================
--- trunk/libproc-fork-perl/t/01.real.t (original)
+++ trunk/libproc-fork-perl/t/01.real.t Sat Feb  2 22:12:00 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