r76643 - in /trunk/starman: .gitignore Changes META.yml debian/changelog lib/Starman.pm t/harakiri.t

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Mon Jun 27 18:11:02 UTC 2011


Author: ghedo-guest
Date: Mon Jun 27 18:11:01 2011
New Revision: 76643

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76643
Log:
IGNORE-VERSION: 0.2013-1
Only fixes a test
* New upstream release

Modified:
    trunk/starman/.gitignore
    trunk/starman/Changes
    trunk/starman/META.yml
    trunk/starman/debian/changelog
    trunk/starman/lib/Starman.pm
    trunk/starman/t/harakiri.t

Modified: trunk/starman/.gitignore
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/.gitignore?rev=76643&op=diff
==============================================================================
--- trunk/starman/.gitignore (original)
+++ trunk/starman/.gitignore Mon Jun 27 18:11:01 2011
@@ -3,3 +3,4 @@
 inc/
 pm_to_blib
 *~
+MYMETA.*

Modified: trunk/starman/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/Changes?rev=76643&op=diff
==============================================================================
--- trunk/starman/Changes (original)
+++ trunk/starman/Changes Mon Jun 27 18:11:01 2011
@@ -1,4 +1,7 @@
 Revision history for Perl extension Starman
+
+0.2013  Sat Jun 25 11:51:47 PDT 2011
+        - Relaxed the harakiri tests (audreyt)
 
 0.2012  Wed Jun 22 13:51:59 PDT 2011
         - Implemented psgix.harakiri mode (audreyt)

Modified: trunk/starman/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/META.yml?rev=76643&op=diff
==============================================================================
--- trunk/starman/META.yml (original)
+++ trunk/starman/META.yml Mon Jun 27 18:11:01 2011
@@ -36,4 +36,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/miyagawa/Starman.git
-version: 0.2012
+version: 0.2013

Modified: trunk/starman/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/debian/changelog?rev=76643&op=diff
==============================================================================
--- trunk/starman/debian/changelog (original)
+++ trunk/starman/debian/changelog Mon Jun 27 18:11:01 2011
@@ -1,3 +1,12 @@
+starman (0.2013-1) UNRELEASED; urgency=low
+
+  IGNORE-VERSION: 0.2013-1
+  Only fixes a test
+
+  * New upstream release
+
+ -- Alessandro Ghedini <al3xbio at gmail.com>  Mon, 27 Jun 2011 20:10:11 +0200
+
 starman (0.2012-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/starman/lib/Starman.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/lib/Starman.pm?rev=76643&op=diff
==============================================================================
--- trunk/starman/lib/Starman.pm (original)
+++ trunk/starman/lib/Starman.pm Mon Jun 27 18:11:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use 5.008_001;
-our $VERSION = '0.2012';
+our $VERSION = '0.2013';
 
 1;
 __END__

Modified: trunk/starman/t/harakiri.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/t/harakiri.t?rev=76643&op=diff
==============================================================================
--- trunk/starman/t/harakiri.t (original)
+++ trunk/starman/t/harakiri.t Mon Jun 27 18:11:01 2011
@@ -20,7 +20,7 @@
             my $res = $cb->(GET "/");
             $seen_pid{$res->content}++;
         }
-        is keys(%seen_pid), 5, 'In non-harakiri mode, pid is reused';
+        cmp_ok(keys(%seen_pid), '<=', 5, 'In non-harakiri mode, pid is reused');
     };
 
 test_psgi




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