r39236 - 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
Fri Jul 3 13:49:59 UTC 2009


Author: nhandler-guest
Date: Fri Jul  3 13:49:53 2009
New Revision: 39236

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

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=39236&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/Changes (original)
+++ branches/upstream/libproc-background-perl/current/Changes Fri Jul  3 13:49:53 2009
@@ -1,3 +1,18 @@
+Wed Jul  1 22:46:11 PDT 2009
+
+	* Release version 1.09.
+
+Wed Jul  1 22:36:06 PDT 2009
+
+	* Makefile.PL: Switch from die() to warn() if Win32::Process
+	  isn't installed into a warning. When running under CPAN.pm,
+	  the die causes the install to fail before processing
+	  dependencies.  Reducing this to a warning means that CPAN
+	  will cleanly install Proc::Background and Win32::Process
+	  with no user intervention needed in strawberry perl or even
+	  ActiveState if you have a working make.
+	  Patch by: Tomas Doran <bobtfish at bobtfish.net>
+
 Sat Dec  7 09:41:58 PST 2002
 
 	* Release version 1.08.

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=39236&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/Makefile.PL (original)
+++ branches/upstream/libproc-background-perl/current/Makefile.PL Fri Jul  3 13:49:53 2009
@@ -27,7 +27,7 @@
 # Check for needed modules.
 if ($^O eq 'MSWin32') {
   check_version('Win32::Process' => '0.04') or
-    die   "\n"
+    warn  "\n"
         . "*** For Proc:Background you require version 0.04, or later, of\n"
         . "    Win32::Process from CPAN/authors/id/GSAR/libwin32-x.x.tar.gz\n\n";
 }

Modified: branches/upstream/libproc-background-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-background-perl/current/README?rev=39236&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/README (original)
+++ branches/upstream/libproc-background-perl/current/README Fri Jul  3 13:49:53 2009
@@ -1,4 +1,4 @@
-Package Proc::Background Version 1.08
+Package Proc::Background Version 1.09
 
 This is the Proc::Background package.  It provides a generic interface
 to running background processes.  Through this interface, users can
@@ -21,15 +21,15 @@
 
 AVAILABILITY
 
-The latest released version of this package is available from a CPAN
-archive near you in
+The latest released version of this package is available for download
+from a CPAN (Comprehensive Perl Archive Network) archive near you in
 
     http://www.perl.com/CPAN/authors/id/B/BZ/BZAJAC/
 
 The latest beta version of this package is hosted in a Subversion
 repository located at
 
-    http://svn.orcaware.com:8000/repos/trunk/proc_background/
+    http://www.orcaware.com/svn/repos/trunk/perl_proc_background/
 
 Subversion is an open-source source code management system designed to
 replace CVS.  To get Subversion, see
@@ -96,6 +96,6 @@
 
 COPYRIGHT
 
-Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.  This
+Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.  This
 package is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

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=39236&op=diff
==============================================================================
--- branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm (original)
+++ branches/upstream/libproc-background-perl/current/lib/Proc/Background.pm Fri Jul  3 13:49:53 2009
@@ -1,6 +1,6 @@
 # Proc::Background: Generic interface to background process management.
 #
-# Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.
+# Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.
 
 package Proc::Background;
 
@@ -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.08 $' =~ /(\d+)\.(\d+)/;
+$VERSION   = sprintf '%d.%02d', '$Revision: 1.09 $' =~ /(\d+)\.(\d+)/;
 
 # Determine if the operating system is Windows.
 my $is_windows = $^O eq 'MSWin32';
@@ -470,7 +470,7 @@
 
 =head1 COPYRIGHT
 
-Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.  This
+Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.  This
 package is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 

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=39236&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 Fri Jul  3 13:49:53 2009
@@ -1,6 +1,6 @@
 # Proc::Background::Unix: Unix interface to background process management.
 #
-# Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.
+# Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.
 
 package Proc::Background::Unix;
 
@@ -13,7 +13,7 @@
 
 use vars qw(@ISA $VERSION);
 @ISA     = qw(Exporter);
-$VERSION = sprintf '%d.%02d', '$Revision: 1.08 $' =~ /(\d+)\.(\d+)/;
+$VERSION = sprintf '%d.%02d', '$Revision: 1.09 $' =~ /(\d+)\.(\d+)/;
 
 # Start the background process.  If it is started sucessfully, then record
 # the process id in $self->{_os_obj}.
@@ -131,7 +131,7 @@
 
 =head1 COPYRIGHT
 
-Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.  This
+Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.  This
 package is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 

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=39236&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 Fri Jul  3 13:49:53 2009
@@ -1,6 +1,6 @@
 # Proc::Background::Win32 Windows interface to background process management.
 #
-# Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.
+# Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.
 
 package Proc::Background::Win32;
 
@@ -12,7 +12,7 @@
 
 use vars qw(@ISA $VERSION);
 @ISA     = qw(Exporter);
-$VERSION = sprintf '%d.%02d', '$Revision: 1.08 $' =~ /(\d+)\.(\d+)/;
+$VERSION = sprintf '%d.%02d', '$Revision: 1.09 $' =~ /(\d+)\.(\d+)/;
 
 BEGIN {
   eval "use Win32";
@@ -146,11 +146,11 @@
 
 =head1 AUTHOR
 
-Blair Zajac <blair at orcaware.com
+Blair Zajac <blair at orcaware.com>
 
 =head1 COPYRIGHT
 
-Copyright (C) 1998-2002 Blair Zajac.  All rights reserved.  This
+Copyright (C) 1998-2005 Blair Zajac.  All rights reserved.  This
 package is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 




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