r54666 - in /branches/upstream/libfcgi-perl/current: ChangeLog FCGI.PL META.yml version.pm

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Tue Mar 23 11:25:50 UTC 2010


Author: eloy
Date: Tue Mar 23 11:25:42 2010
New Revision: 54666

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54666
Log:
[svn-upgrade] Integrating new upstream version, libfcgi-perl (0.70)

Modified:
    branches/upstream/libfcgi-perl/current/ChangeLog
    branches/upstream/libfcgi-perl/current/FCGI.PL
    branches/upstream/libfcgi-perl/current/META.yml
    branches/upstream/libfcgi-perl/current/version.pm

Modified: branches/upstream/libfcgi-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfcgi-perl/current/ChangeLog?rev=54666&op=diff
==============================================================================
--- branches/upstream/libfcgi-perl/current/ChangeLog (original)
+++ branches/upstream/libfcgi-perl/current/ChangeLog Tue Mar 23 11:25:42 2010
@@ -1,3 +1,6 @@
+Version 0.70 --     22 Mar 2010  <bobtfish at bobtfish.net> Tomas Doran
+    o Fix use of defined %hash which becomes deprecated in perl 5.12
+
 Version 0.69 --     15 Feb 2010  <mst at shadowcat.co.uk> Matt S Trout
     o No changes since the previous development release.
 

Modified: branches/upstream/libfcgi-perl/current/FCGI.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfcgi-perl/current/FCGI.PL?rev=54666&op=diff
==============================================================================
--- branches/upstream/libfcgi-perl/current/FCGI.PL (original)
+++ branches/upstream/libfcgi-perl/current/FCGI.PL Tue Mar 23 11:25:42 2010
@@ -294,7 +294,7 @@
 
 sub accept() {
     warn "accept called as a method; you probably wanted to call Accept" if @_;
-    if (defined %FCGI::ENV) {
+    if (%FCGI::ENV) {
 	%ENV = %FCGI::ENV;
     } else {
 	%FCGI::ENV = %ENV;

Modified: branches/upstream/libfcgi-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfcgi-perl/current/META.yml?rev=54666&op=diff
==============================================================================
--- branches/upstream/libfcgi-perl/current/META.yml (original)
+++ branches/upstream/libfcgi-perl/current/META.yml Tue Mar 23 11:25:42 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               FCGI
-version:            0.69
+version:            0.70
 abstract:           Fast CGI module
 author:
     - Sven Verdoolaege (skimo at kotnet.org)

Modified: branches/upstream/libfcgi-perl/current/version.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfcgi-perl/current/version.pm?rev=54666&op=diff
==============================================================================
--- branches/upstream/libfcgi-perl/current/version.pm (original)
+++ branches/upstream/libfcgi-perl/current/version.pm Tue Mar 23 11:25:42 2010
@@ -1,3 +1,3 @@
 package FCGI;
 
-$VERSION = '0.69';
+$VERSION = '0.70';




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