r39405 - in /branches/upstream/libproc-background-perl/current: Changes Makefile.PL README lib/Proc/Background.pm lib/Proc/Background/Unix.pm lib/Proc/Background/Win32.pm

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Mon Jul 6 13:15:37 UTC 2009


Author: nhandler-guest
Date: Mon Jul  6 13:15:28 2009
New Revision: 39405

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

Modified:
    branches/upstream/libproc-background-perl/current/Changes
    branches/upstream/libproc-background-perl/current/Makefile.PL
    branches/upstream/libproc-background-perl/current/README
    branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm
    branches/upstream/libproc-background-perl/current/lib/Proc/Background/Unix.pm
    branches/upstream/libproc-background-perl/current/lib/Proc/Background/Win32.pm

Modified: branches/upstream/libproc-background-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/Changes?rev=39405&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/Changes (original)
+++ branches/upstream/libproc-background-perl/current/Changes Mon Jul  6 13:15:28 2009
@@ -1,3 +1,19 @@
+Sun Jul  5 15:40:32 PDT 2009
+
+	* Release version 1.10.
+
+Sun Jul  5 15:15:12 PDT 2009
+
+	* Makefile.PL: Resolve
+	  https://rt.cpan.org/Ticket/Display.html?id=47100 by passing
+	  PREREQ_PM to WriteMakefile().
+	  Patch by: Tomas Doran <bobtfish at bobtfish.net>
+
+Wed Jul  1 22:58:13 PDT 2009
+
+	* README: Correct the URL to the Subversion repository for
+	  this project.
+
 Wed Jul  1 22:46:11 PDT 2009
 
 	* Release version 1.09.

Modified: branches/upstream/libproc-background-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/Makefile.PL?rev=39405&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/Makefile.PL (original)
+++ branches/upstream/libproc-background-perl/current/Makefile.PL Mon Jul  6 13:15:28 2009
@@ -2,6 +2,8 @@
 
 require 5.004_04;
 use strict;
+
+my %requires;
 
 # Subroutine to check for installed modules.
 sub check_version
@@ -19,9 +21,11 @@
                                  : "not found";
   my $vnum = ${"${pkg}::VERSION"} || 0;
 
-  print $vnum >= $wanted ? "ok\n" : " " . $vstr . "\n";
+  my $ok = $vnum >= $wanted;
+  print $ok ? "ok\n" : " " . $vstr . "\n";
 
-  $vnum >= $wanted;
+  $requires{$pkg} = $wanted if !$ok;
+  return $ok;
 }
 
 # Check for needed modules.
@@ -60,4 +64,5 @@
     'COMPRESS'  => 'gzip',
     'SUFFIX'    => 'gz'
   },
+  PREREQ_PM => \%requires,
 );

Modified: branches/upstream/libproc-background-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/README?rev=39405&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/README (original)
+++ branches/upstream/libproc-background-perl/current/README Mon Jul  6 13:15:28 2009
@@ -1,4 +1,4 @@
-Package Proc::Background Version 1.09
+Package Proc::Background Version 1.10
 
 This is the Proc::Background package.  It provides a generic interface
 to running background processes.  Through this interface, users can
@@ -29,7 +29,7 @@
 The latest beta version of this package is hosted in a Subversion
 repository located at
 
-    http://www.orcaware.com/svn/repos/trunk/perl_proc_background/
+    http://www.orcaware.com/svn/repos/perl_proc_background/trunk/
 
 Subversion is an open-source source code management system designed to
 replace CVS.  To get Subversion, see

Modified: branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm?rev=39405&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm (original)
+++ branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm Mon Jul  6 13:15:28 2009
@@ -14,7 +14,7 @@
 use vars qw(@ISA $VERSION @EXPORT_OK);
 @ISA       = qw(Exporter);
 @EXPORT_OK = qw(timeout_system);
-$VERSION   = sprintf '%d.%02d', '$Revision: 1.09 $' =~ /(\d+)\.(\d+)/;
+$VERSION   = sprintf '%d.%02d', '$Revision: 1.10 $' =~ /(\d+)\.(\d+)/;
 
 # Determine if the operating system is Windows.
 my $is_windows = $^O eq 'MSWin32';

Modified: branches/upstream/libproc-background-perl/current/lib/Proc/Background/Unix.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/lib/Proc/Background/Unix.pm?rev=39405&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/lib/Proc/Background/Unix.pm (original)
+++ branches/upstream/libproc-background-perl/current/lib/Proc/Background/Unix.pm Mon Jul  6 13:15:28 2009
@@ -13,7 +13,7 @@
 
 use vars qw(@ISA $VERSION);
 @ISA     = qw(Exporter);
-$VERSION = sprintf '%d.%02d', '$Revision: 1.09 $' =~ /(\d+)\.(\d+)/;
+$VERSION = sprintf '%d.%02d', '$Revision: 1.10 $' =~ /(\d+)\.(\d+)/;
 
 # Start the background process.  If it is started sucessfully, then record
 # the process id in $self->{_os_obj}.

Modified: branches/upstream/libproc-background-perl/current/lib/Proc/Background/Win32.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/lib/Proc/Background/Win32.pm?rev=39405&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/lib/Proc/Background/Win32.pm (original)
+++ branches/upstream/libproc-background-perl/current/lib/Proc/Background/Win32.pm Mon Jul  6 13:15:28 2009
@@ -12,7 +12,7 @@
 
 use vars qw(@ISA $VERSION);
 @ISA     = qw(Exporter);
-$VERSION = sprintf '%d.%02d', '$Revision: 1.09 $' =~ /(\d+)\.(\d+)/;
+$VERSION = sprintf '%d.%02d', '$Revision: 1.10 $' =~ /(\d+)\.(\d+)/;
 
 BEGIN {
   eval "use Win32";




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