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

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


Author: jawnsy-guest
Date: Mon Jul 27 02:17:59 2009
New Revision: 40797

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40797
Log:
Revert my upgrade, which was the wrong version (the package version wasn't mangled properly by uscan)

Removed:
    branches/upstream/libpoe-component-jobqueue-perl/0.56/
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=40797&op=diff
==============================================================================
--- branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES (original)
+++ branches/upstream/libpoe-component-jobqueue-perl/current/CHANGES Mon Jul 27 02:17:59 2009
@@ -1,15 +1,20 @@
-=================================
-2009-07-25T06:45:02.718940Z v0_56
-=================================
+=========================
+2006-08-09 13:24:28 v0_55
+=========================
 
-  2009-07-25 06:44:35 (r26) by rcaputo; Makefile.PL M; JobQueue.pm M
+  2006-08-09 13:23:57 (r23) by rcaputo; JobQueue.pm M
 
-    New release. Add a LICENSE. Resolve rt.cpan.org #45537 by applying
-    Steve Stachurski's documentation patch. 
+    Andrew Hoying (blm.gov) added support for a "stop" command that
+    allows queues to be stopped before they run out of jobs. 
 
-  2006-11-06 19:23:22 (r25) by rcaputo; Makefile.PL M
+  2005-06-21 18:50:16 (r22) by rcaputo; MANIFEST M; Makefile.PL M
 
-    Set a LICENSE. Cheap kwalitee points!
+    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. 
 
 ==============
 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=40797&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:17:59 2009
@@ -1,4 +1,4 @@
-# $Id: JobQueue.pm 26 2009-07-25 06:44:35Z rcaputo $
+# $Id: JobQueue.pm 23 2006-08-09 13:23:57Z rcaputo $
 # License and documentation are after __END__.
 
 package POE::Component::JobQueue;
@@ -6,7 +6,7 @@
 use strict;
 
 use vars qw($VERSION);
-$VERSION = '0.56';
+$VERSION = '0.55';
 
 use Carp qw (croak);
 
@@ -302,10 +302,7 @@
 
   DEBUG and warn "JQ: job queue $heap->{alias} enqueuing a new job";
 
-  my $postback;
-  if (defined $return_state) {
-    $postback = $sender->postback( $return_state, @job );
-  }
+  my $postback = $sender->postback( $return_state, @job );
 
   # Add the job to the queue.  Use the prioritizer to find the right
   # place to put it.
@@ -403,7 +400,7 @@
     my @job_results         = @{$response_packet}; # passed to the postback
 
     print "original job parameters: (@original_job_params)\n";
-    print "results of finished job: (@job_results)\n";
+    print "results of finished job: (@job_response)\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=40797&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:17:59 2009
@@ -1,14 +1,13 @@
 --- #YAML:1.0
 name:                POE-Component-JobQueue
-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
+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>
 distribution_type:   module
 requires:     
     POE:                           0.31
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url: <http://module-build.sourceforge.net/META-spec-new.html>;
+    version: 1.1

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=40797&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:17:59 2009
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: Makefile.PL 26 2009-07-25 06:44:35Z rcaputo $
+# $Id: Makefile.PL 22 2005-06-21 18:50:16Z rcaputo $
 
 use ExtUtils::MakeMaker;
 
@@ -9,13 +9,11 @@
 WriteMakefile(
 	NAME          => 'POE::Component::JobQueue',
 	AUTHOR        => 'Rocco Caputo <rcaputo at cpan.org>',
-	LICENSE       => 'perl',
 	ABSTRACT      => (
-		'POE component for processing large numbers of tasks ' .
-		'with finite numbers of workers.'
+		'Handle 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