r40798 - in /branches/upstream/libpoe-component-jobqueue-perl/current: CHANGES JobQueue.pm META.yml Makefile.PL

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Mon Jul 27 02:21:55 UTC 2009


Author: jawnsy-guest
Date: Mon Jul 27 02:21:47 2009
New Revision: 40798

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40798
Log:
[svn-upgrade] Integrating new upstream version, libpoe-component-jobqueue-perl (0.5600)

Modified:
    branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES
    branches/upstream/libpoe-component-jobqueue-perl/current/JobQueue.pm
    branches/upstream/libpoe-component-jobqueue-perl/current/META.yml
    branches/upstream/libpoe-component-jobqueue-perl/current/Makefile.PL

Modified: branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES?rev=40798&op=diff
==============================================================================
--- branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES (original)
+++ branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES Mon Jul 27 02:21:47 2009
@@ -1,20 +1,15 @@
-=========================
-2006-08-09 13:24:28 v0_55
-=========================
+=================================
+2009-07-25T06:45:02.718940Z v0_56
+=================================
 
-  2006-08-09 13:23:57 (r23) by rcaputo; JobQueue.pm M
+  2009-07-25 06:44:35 (r26) by rcaputo; Makefile.PL M; JobQueue.pm M
 
-    Andrew Hoying (blm.gov) added support for a "stop" command that
-    allows queues to be stopped before they run out of jobs. 
+    New release. Add a LICENSE. Resolve rt.cpan.org #45537 by applying
+    Steve Stachurski's documentation patch. 
 
-  2005-06-21 18:50:16 (r22) by rcaputo; MANIFEST M; Makefile.PL M
+  2006-11-06 19:23:22 (r25) by rcaputo; Makefile.PL M
 
-    Remove META.yml from MANIFEST since it's created at "make dist" time.
-    Updated Makefile.PL to generate CHANGES from Subversion commits. 
-
-  2005-05-05 05:37:56 (r21) by rcaputo; MANIFEST M
-
-    Add META.yml to the MANIFEST. 
+    Set a LICENSE. Cheap kwalitee points!
 
 ==============
 End of Excerpt

Modified: branches/upstream/libpoe-component-jobqueue-perl/current/JobQueue.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-jobqueue-perl/current/JobQueue.pm?rev=40798&op=diff
==============================================================================
--- branches/upstream/libpoe-component-jobqueue-perl/current/JobQueue.pm (original)
+++ branches/upstream/libpoe-component-jobqueue-perl/current/JobQueue.pm Mon Jul 27 02:21:47 2009
@@ -1,4 +1,4 @@
-# $Id: JobQueue.pm 23 2006-08-09 13:23:57Z rcaputo $
+# $Id: JobQueue.pm 26 2009-07-25 06:44:35Z rcaputo $
 # License and documentation are after __END__.
 
 package POE::Component::JobQueue;
@@ -6,7 +6,7 @@
 use strict;
 
 use vars qw($VERSION);
-$VERSION = '0.55';
+$VERSION = '0.56';
 
 use Carp qw (croak);
 
@@ -302,7 +302,10 @@
 
   DEBUG and warn "JQ: job queue $heap->{alias} enqueuing a new job";
 
-  my $postback = $sender->postback( $return_state, @job );
+  my $postback;
+  if (defined $return_state) {
+    $postback = $sender->postback( $return_state, @job );
+  }
 
   # Add the job to the queue.  Use the prioritizer to find the right
   # place to put it.
@@ -400,7 +403,7 @@
     my @job_results         = @{$response_packet}; # passed to the postback
 
     print "original job parameters: (@original_job_params)\n";
-    print "results of finished job: (@job_response)\n";
+    print "results of finished job: (@job_results)\n";
   }
 
   # Stop a running queue

Modified: branches/upstream/libpoe-component-jobqueue-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-jobqueue-perl/current/META.yml?rev=40798&op=diff
==============================================================================
--- branches/upstream/libpoe-component-jobqueue-perl/current/META.yml (original)
+++ branches/upstream/libpoe-component-jobqueue-perl/current/META.yml Mon Jul 27 02:21:47 2009
@@ -1,13 +1,14 @@
 --- #YAML:1.0
 name:                POE-Component-JobQueue
-version:             0.55
-abstract:            Handle large numbers of tasks with finite numbers of workers.
-license:             unknown
-generated_by:        ExtUtils::MakeMaker version 6.30_01
-author:              Rocco Caputo <rcaputo at cpan.org>
+version:             0.56
+abstract:            POE component for processing large numbers of tasks with finite numbers of workers.
+license:             perl
+author:              
+    - Rocco Caputo <rcaputo at cpan.org>
+generated_by:        ExtUtils::MakeMaker version 6.42
 distribution_type:   module
 requires:     
     POE:                           0.31
 meta-spec:
-    url: <http://module-build.sourceforge.net/META-spec-new.html>;
-    version: 1.1
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libpoe-component-jobqueue-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-jobqueue-perl/current/Makefile.PL?rev=40798&op=diff
==============================================================================
--- branches/upstream/libpoe-component-jobqueue-perl/current/Makefile.PL (original)
+++ branches/upstream/libpoe-component-jobqueue-perl/current/Makefile.PL Mon Jul 27 02:21:47 2009
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: Makefile.PL 22 2005-06-21 18:50:16Z rcaputo $
+# $Id: Makefile.PL 26 2009-07-25 06:44:35Z rcaputo $
 
 use ExtUtils::MakeMaker;
 
@@ -9,11 +9,13 @@
 WriteMakefile(
 	NAME          => 'POE::Component::JobQueue',
 	AUTHOR        => 'Rocco Caputo <rcaputo at cpan.org>',
+	LICENSE       => 'perl',
 	ABSTRACT      => (
-		'Handle large numbers of tasks with finite numbers of workers.'
+		'POE component for processing large numbers of tasks ' .
+		'with finite numbers of workers.'
 	),
+	LICENSE       => 'perl',
 	VERSION_FROM  => 'JobQueue.pm',
-
 	PM            => { 'JobQueue.pm' => '$(INST_LIBDIR)/JobQueue.pm' },
 	PREREQ_PM     => {
 		POE         => 0.31,




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