r63303 - in /trunk/libthread-pool-simple-perl: Changes META.yml Simple.pm debian/changelog debian/control debian/copyright

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Mon Oct 4 13:48:43 UTC 2010


Author: eloy
Date: Mon Oct  4 13:48:33 2010
New Revision: 63303

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63303
Log:
new upstream version

Modified:
    trunk/libthread-pool-simple-perl/Changes
    trunk/libthread-pool-simple-perl/META.yml
    trunk/libthread-pool-simple-perl/Simple.pm
    trunk/libthread-pool-simple-perl/debian/changelog
    trunk/libthread-pool-simple-perl/debian/control
    trunk/libthread-pool-simple-perl/debian/copyright

Modified: trunk/libthread-pool-simple-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libthread-pool-simple-perl/Changes?rev=63303&op=diff
==============================================================================
--- trunk/libthread-pool-simple-perl/Changes (original)
+++ trunk/libthread-pool-simple-perl/Changes Mon Oct  4 13:48:33 2010
@@ -1,4 +1,8 @@
 Revision history for Perl extension Thread::Pool::Simple.
+
+0.25  23 SEP 2010
+        - fixd [rt.cpan.org #61557] "add" method randomly fails to fire on Win32
+          (thanks Aaron Wirtz for reporting and providing a fix)  
 
 0.24  3 SEP 2009
       	- used a workaround to avoid a rare problem when running under

Modified: trunk/libthread-pool-simple-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libthread-pool-simple-perl/META.yml?rev=63303&op=diff
==============================================================================
--- trunk/libthread-pool-simple-perl/META.yml (original)
+++ trunk/libthread-pool-simple-perl/META.yml Mon Oct  4 13:48:33 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Thread-Pool-Simple
-version:             0.24
+version:             0.25
 abstract:            ~
 license:             ~
 author:              

Modified: trunk/libthread-pool-simple-perl/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libthread-pool-simple-perl/Simple.pm?rev=63303&op=diff
==============================================================================
--- trunk/libthread-pool-simple-perl/Simple.pm (original)
+++ trunk/libthread-pool-simple-perl/Simple.pm Mon Oct  4 13:48:33 2010
@@ -9,7 +9,7 @@
 use Thread::Queue;
 use Thread::Semaphore;
 
-our $VERSION = '0.24';
+our $VERSION = '0.25';
 
 sub new {
     my ($class, %arg) = @_;
@@ -238,7 +238,7 @@
         next unless $id;
         ++$id unless $context == $id % 3;
         ++$id unless $context == $id % 3;
-        {
+        do {
             lock %{$self->{submitted}};
             next if $self->job_exists($id);
             {
@@ -248,7 +248,7 @@
             }
             $self->{pending}->enqueue(pack('Na*', $id, $arg));
             $self->{submitted}{$id} = 1;
-        }
+        };
         last;
     }
     return $id;

Modified: trunk/libthread-pool-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libthread-pool-simple-perl/debian/changelog?rev=63303&op=diff
==============================================================================
--- trunk/libthread-pool-simple-perl/debian/changelog (original)
+++ trunk/libthread-pool-simple-perl/debian/changelog Mon Oct  4 13:48:33 2010
@@ -1,3 +1,11 @@
+libthread-pool-simple-perl (0.25-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * Standards-Version updated to 3.9.1 (no changes)
+  * Added myself to Uploaders and Copyright
+
+ -- Krzysztof Krzyżaniak (eloy) <eloy at debian.org>  Mon, 04 Oct 2010 15:46:13 +0200
+
 libthread-pool-simple-perl (0.24-1) unstable; urgency=low
 
   [ Jonathan Yu ]

Modified: trunk/libthread-pool-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libthread-pool-simple-perl/debian/control?rev=63303&op=diff
==============================================================================
--- trunk/libthread-pool-simple-perl/debian/control (original)
+++ trunk/libthread-pool-simple-perl/debian/control Mon Oct  4 13:48:33 2010
@@ -6,8 +6,9 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gonéri Le Bouder <goneri at rulezlan.org>,
  gregor herrmann <gregoa at debian.org>, Damyan Ivanov <dmn at debian.org>,
- Jonathan Yu <jawnsy at cpan.org>
-Standards-Version: 3.8.3
+ Jonathan Yu <jawnsy at cpan.org>,
+ Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/Thread-Pool-Simple/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libthread-pool-simple-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libthread-pool-simple-perl/

Modified: trunk/libthread-pool-simple-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libthread-pool-simple-perl/debian/copyright?rev=63303&op=diff
==============================================================================
--- trunk/libthread-pool-simple-perl/debian/copyright (original)
+++ trunk/libthread-pool-simple-perl/debian/copyright Mon Oct  4 13:48:33 2010
@@ -14,6 +14,7 @@
  2008, Damyan Ivanov <dmn at debian.org>
  2008, gregor herrmann <gregoa at debian.org>
  2007, Gonéri Le Bouder <goneri at rulezlan.org>
+ 2010, Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
 License: Artistic | GPL-1+
 
 License: Artistic




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