r69072 - in /trunk/starman: Changes META.yml bin/starman debian/changelog lib/Starman.pm lib/Starman/Server.pm

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Sat Feb 19 13:28:05 UTC 2011


Author: ghedo-guest
Date: Sat Feb 19 13:27:44 2011
New Revision: 69072

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

Modified:
    trunk/starman/Changes
    trunk/starman/META.yml
    trunk/starman/bin/starman
    trunk/starman/debian/changelog
    trunk/starman/lib/Starman.pm
    trunk/starman/lib/Starman/Server.pm

Modified: trunk/starman/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/Changes?rev=69072&op=diff
==============================================================================
--- trunk/starman/Changes (original)
+++ trunk/starman/Changes Sat Feb 19 13:27:44 2011
@@ -1,4 +1,8 @@
 Revision history for Perl extension Starman
+
+0.2008  Mon Feb 14 17:19:20 PST 2011
+        - Documented that -E is automatically set to 'deployment' RT:61517 (timbunce)
+        - Check the defined-ness of the input buffer to suppress warnings RT:60007
 
 0.2007 Thu Sep 30 14:09:00 PDT 2010
         - Fixed a bug where Date header can be duplicate if the app generates one (spleenjack)

Modified: trunk/starman/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/META.yml?rev=69072&op=diff
==============================================================================
--- trunk/starman/META.yml (original)
+++ trunk/starman/META.yml Sat Feb 19 13:27:44 2011
@@ -34,4 +34,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/miyagawa/Starman.git
-version: 0.2007
+version: 0.2008

Modified: trunk/starman/bin/starman
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/bin/starman?rev=69072&op=diff
==============================================================================
--- trunk/starman/bin/starman (original)
+++ trunk/starman/bin/starman Sat Feb 19 13:27:44 2011
@@ -162,6 +162,8 @@
 
 See C<plackup -h> for more options.
 
+C<starman> command automatically sets the environment (C<-E>) to the value of I<deployment>.
+
 =head1 SEE ALSO
 
 L<Starman>

Modified: trunk/starman/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/debian/changelog?rev=69072&op=diff
==============================================================================
--- trunk/starman/debian/changelog (original)
+++ trunk/starman/debian/changelog Sat Feb 19 13:27:44 2011
@@ -1,5 +1,5 @@
-starman (0.2007-1) unstable; urgency=low
+starman (0.2008-1) UNRELEASED; urgency=low
 
   * Initial Release. (Closes: #610904)
 
- -- Alessandro Ghedini <al3xbio at gmail.com>  Mon, 14 Feb 2011 18:02:57 +0100
+ -- Alessandro Ghedini <al3xbio at gmail.com>  Sat, 19 Feb 2011 14:25:48 +0100

Modified: trunk/starman/lib/Starman.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/lib/Starman.pm?rev=69072&op=diff
==============================================================================
--- trunk/starman/lib/Starman.pm (original)
+++ trunk/starman/lib/Starman.pm Sat Feb 19 13:27:44 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use 5.008_001;
-our $VERSION = '0.2007';
+our $VERSION = '0.2008';
 
 1;
 __END__

Modified: trunk/starman/lib/Starman/Server.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/starman/lib/Starman/Server.pm?rev=69072&op=diff
==============================================================================
--- trunk/starman/lib/Starman/Server.pm (original)
+++ trunk/starman/lib/Starman/Server.pm Sat Feb 19 13:27:44 2011
@@ -269,7 +269,7 @@
             # Do we have a full header in the buffer?
             # This is before sysread so we don't read if we have a pipelined request
             # waiting in the buffer
-            last if $self->{client}->{inputbuf} =~ /$CRLF$CRLF/s;
+            last if defined $self->{client}->{inputbuf} && $self->{client}->{inputbuf} =~ /$CRLF$CRLF/s;
 
             # If not, read some data
             my $read = sysread $self->{server}->{client}, my $buf, CHUNKSIZE;




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