r40800 - in /trunk/libpoe-component-jobqueue-perl: CHANGES JobQueue.pm META.yml Makefile.PL debian/README.source debian/changelog debian/control debian/copyright debian/rules

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


Author: jawnsy-guest
Date: Mon Jul 27 02:31:47 2009
New Revision: 40800

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40800
Log:
* New upstream release
  + Documentation patch, fixes RT#45537
* Added a README.source
* Added myself to Uploaders and Copyright
* Standards-Version 3.8.2

Added:
    trunk/libpoe-component-jobqueue-perl/debian/README.source
Modified:
    trunk/libpoe-component-jobqueue-perl/CHANGES
    trunk/libpoe-component-jobqueue-perl/JobQueue.pm
    trunk/libpoe-component-jobqueue-perl/META.yml
    trunk/libpoe-component-jobqueue-perl/Makefile.PL
    trunk/libpoe-component-jobqueue-perl/debian/changelog
    trunk/libpoe-component-jobqueue-perl/debian/control
    trunk/libpoe-component-jobqueue-perl/debian/copyright
    trunk/libpoe-component-jobqueue-perl/debian/rules

Modified: trunk/libpoe-component-jobqueue-perl/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/CHANGES?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/CHANGES (original)
+++ trunk/libpoe-component-jobqueue-perl/CHANGES Mon Jul 27 02:31: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: trunk/libpoe-component-jobqueue-perl/JobQueue.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/JobQueue.pm?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/JobQueue.pm (original)
+++ trunk/libpoe-component-jobqueue-perl/JobQueue.pm Mon Jul 27 02:31: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: trunk/libpoe-component-jobqueue-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/META.yml?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/META.yml (original)
+++ trunk/libpoe-component-jobqueue-perl/META.yml Mon Jul 27 02:31: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: trunk/libpoe-component-jobqueue-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/Makefile.PL?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/Makefile.PL (original)
+++ trunk/libpoe-component-jobqueue-perl/Makefile.PL Mon Jul 27 02:31: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,

Added: trunk/libpoe-component-jobqueue-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/debian/README.source?rev=40800&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/README.source (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/README.source Mon Jul 27 02:31:47 2009
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libpoe-component-jobqueue-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/debian/changelog?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/changelog (original)
+++ trunk/libpoe-component-jobqueue-perl/debian/changelog Mon Jul 27 02:31:47 2009
@@ -1,4 +1,4 @@
-libpoe-component-jobqueue-perl (0.5500-2) UNRELEASED; urgency=low
+libpoe-component-jobqueue-perl (0.5600-1) UNRELEASED; urgency=low
 
   TODO: libscan.patch was rejected, now it can be at least applied but there
   are no signs of quilt anywhere. If it's activated Makefile need to be
@@ -16,7 +16,14 @@
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 
- -- Martín Ferrari <tincho at debian.org>  Fri, 13 Jun 2008 00:04:40 +0000
+  [ Jonathan Yu ]
+  * New upstream release
+    + Documentation patch, fixes RT#45537
+  * Added a README.source
+  * Added myself to Uploaders and Copyright
+  * Standards-Version 3.8.2
+
+ -- Jonathan Yu <frequency at cpan.org>  Sun, 26 Jul 2009 18:22:54 -0400
 
 libpoe-component-jobqueue-perl (0.5500-1) unstable; urgency=low
 

Modified: trunk/libpoe-component-jobqueue-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/debian/control?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/control (original)
+++ trunk/libpoe-component-jobqueue-perl/debian/control Mon Jul 27 02:31:47 2009
@@ -4,8 +4,8 @@
 Build-Depends: debhelper (>= 5)
 Build-Depends-Indep: perl (>= 5.6.0-17), libpoe-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Martín Ferrari <tincho at debian.org>
-Standards-Version: 3.7.3
+Uploaders: Martín Ferrari <tincho at debian.org>, Jonathan Yu <frequency at cpan.org>
+Standards-Version: 3.8.2
 Homepage: http://search.cpan.org/dist/POE-Component-JobQueue/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpoe-component-jobqueue-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/
@@ -14,11 +14,11 @@
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libpoe-perl
 Description: POE component to manage queues and worker pools
- POE::Component::JobQueue manages a finite pool of worker sessions as
- they handle an arbitrarily large number of tasks.  It often is used as
- a form of flow control, preventing a large group of tasks from
- exhausting some sort of resource.
+ POE::Component::JobQueue manages a finite pool of worker sessions as they
+ handle an arbitrarily large number of tasks. It often is used as a form of
+ flow control, preventing a large group of tasks from exhausting some sort of
+ resource.
  .
- PoCo::JobQueue implements two kinds of queue: active and passive.
- Both kinds of queue use a Worker coderef to spawn sessions that
- process jobs, but how they use the Worker differs between them.
+ This module implements two kinds of queue: active and passive. Both types of
+ queues use a Worker coderef to spawn sessions that process jobs, but how they
+ use the Worker differs between them.

Modified: trunk/libpoe-component-jobqueue-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/debian/copyright?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/copyright (original)
+++ trunk/libpoe-component-jobqueue-perl/debian/copyright Mon Jul 27 02:31:47 2009
@@ -1,25 +1,32 @@
-This package was debianized by Steve Kowalik <stevenk at debian.org> on
-Thu, 25 Oct 2001 22:54:54 +1000.
-It was downloaded from http://search.cpan.org/dist/POE-Component-JobQueue/
-Upstream Author: Rocco Caputo <rcaputo at cpan.org>.
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Rocco Caputo <rcaputo at cpan.org>
+Upstream-Source: http://search.cpan.org/dist/POE-Component-JobQueue/
+Upstream-Name: POE-Component-JobQueue
 
 Files: *
-Copyright: © 1999-2002 Rocco Caputo <rcaputo at cpan.org>
+Copyright: 1999-2002 Rocco Caputo <rcaputo at cpan.org>
+License-Alias: Perl
 License: GPL-1+ | Artistic
- POE::Component::JobQueue is Copyright 1999-2002 by Rocco Caputo.  All
- rights are reserved.  POE::Component::JobQueue is free software; you
- may redistribute it and/or modify it under the same terms as Perl
- itself.
 
 Files: debian/*
-Copyright: © 2008 Debian Perl Group
-                  <pkg-perl-maintainers at lists.alioth.debian.org>
-           © 2001-2004 Steve Kowalik <stevenk at debian.org>
-License: other
- It is assumed that the previous maintainer did choose a license compatible
- with the software.
+Copyright:
+ 2008, various members of the Debian Perl Group, cf. debian/changelog
+ 2001-2004, Steve Kowalik <stevenk at debian.org>
+License: GPL-1+ | Artistic
+ It is assumed that the previous maintainer selected the same licensing terms
+ as upstream.
 
-Perl is distributed under your choice of the GNU General Public License or
-the Artistic License.  On Debian GNU/Linux systems, the complete text of the
-GNU General Public License can be found in `/usr/share/common-licenses/GPL'
-and the Artistic License in `/usr/share/common-licenses/Artistic'.
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Modified: trunk/libpoe-component-jobqueue-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-jobqueue-perl/debian/rules?rev=40800&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/rules (original)
+++ trunk/libpoe-component-jobqueue-perl/debian/rules Mon Jul 27 02:31:47 2009
@@ -1,58 +1,4 @@
 #!/usr/bin/make -f
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
 
-# If set to a true value then MakeMaker's prompt function will
-# always return the default without waiting for user input.
-export PERL_MM_USE_DEFAULT=1
-
-PACKAGE = $(shell dh_listpackages)
-PERL   ?= /usr/bin/perl
-TMP     = $(CURDIR)/debian/$(PACKAGE)
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE)
-	$(MAKE) test
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Makefile ] || $(MAKE) realclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/lib/perl5
-	touch $@
-
-binary-arch:
-# We have nothing to do here for an architecture-independent package
-
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs
-	dh_installchangelogs CHANGES
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-source diff:
-	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+%:
+	dh $@




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