r76875 - in /branches/upstream/libconfig-auto-perl/current: Changes META.yml lib/Config/Auto.pm

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Fri Jul 1 18:35:37 UTC 2011


Author: carnil
Date: Fri Jul  1 18:35:36 2011
New Revision: 76875

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76875
Log:
[svn-upgrade] new version libconfig-auto-perl (0.36)

Modified:
    branches/upstream/libconfig-auto-perl/current/Changes
    branches/upstream/libconfig-auto-perl/current/META.yml
    branches/upstream/libconfig-auto-perl/current/lib/Config/Auto.pm

Modified: branches/upstream/libconfig-auto-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-auto-perl/current/Changes?rev=76875&op=diff
==============================================================================
--- branches/upstream/libconfig-auto-perl/current/Changes (original)
+++ branches/upstream/libconfig-auto-perl/current/Changes Fri Jul  1 18:35:36 2011
@@ -1,4 +1,10 @@
+0.36  Fri Jul  1 14:38:57 2011
+================================
+    - Fix for RT 68913 reported by Michael Lackhoff
+      ( config files with DOS line endings do not work in Linux )
+
 0.34  Tue Mar  8 15:02:06 2011
+================================
     - Apply patch from Andrew Ruthven RT #66460
       ( also Debian Bug # 617305 )
 

Modified: branches/upstream/libconfig-auto-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-auto-perl/current/META.yml?rev=76875&op=diff
==============================================================================
--- branches/upstream/libconfig-auto-perl/current/META.yml (original)
+++ branches/upstream/libconfig-auto-perl/current/META.yml Fri Jul  1 18:35:36 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Config-Auto
-version:            0.34
+version:            0.36
 abstract:           Magical config file parser
 author:
     - Jos I. Boumans <kane at cpan.org>
@@ -22,7 +22,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
+generated_by:       ExtUtils::MakeMaker version 6.57_05
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libconfig-auto-perl/current/lib/Config/Auto.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-auto-perl/current/lib/Config/Auto.pm?rev=76875&op=diff
==============================================================================
--- branches/upstream/libconfig-auto-perl/current/lib/Config/Auto.pm (original)
+++ branches/upstream/libconfig-auto-perl/current/lib/Config/Auto.pm Fri Jul  1 18:35:36 2011
@@ -7,7 +7,7 @@
 
 use vars qw[$VERSION $DisablePerl $Untaint $Debug];
 
-$VERSION        = '0.34';
+$VERSION        = '0.36';
 $DisablePerl    = 0;
 $Untaint        = 0;
 $Debug          = 0;
@@ -659,7 +659,7 @@
         my %config;
         while (<$fh>) {
             next if     /^\s*#/;
-            next unless /^\s*(.*?)\s*=\s*(.*)\s*$/;
+            next unless /^\s*(.*?)\s*=\s*(.*?)\s*$/;
 
             my ($k, $v) = ($1, $2);
             my @v;




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