r76877 - in /trunk/libconfig-auto-perl: Changes META.yml debian/changelog lib/Config/Auto.pm

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


Author: carnil
Date: Fri Jul  1 18:37:22 2011
New Revision: 76877

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76877
Log:
* Team upload.
* New upstream release

Modified:
    trunk/libconfig-auto-perl/Changes
    trunk/libconfig-auto-perl/META.yml
    trunk/libconfig-auto-perl/debian/changelog
    trunk/libconfig-auto-perl/lib/Config/Auto.pm

Modified: trunk/libconfig-auto-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-auto-perl/Changes?rev=76877&op=diff
==============================================================================
--- trunk/libconfig-auto-perl/Changes (original)
+++ trunk/libconfig-auto-perl/Changes Fri Jul  1 18:37:22 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: trunk/libconfig-auto-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-auto-perl/META.yml?rev=76877&op=diff
==============================================================================
--- trunk/libconfig-auto-perl/META.yml (original)
+++ trunk/libconfig-auto-perl/META.yml Fri Jul  1 18:37:22 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: trunk/libconfig-auto-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-auto-perl/debian/changelog?rev=76877&op=diff
==============================================================================
--- trunk/libconfig-auto-perl/debian/changelog (original)
+++ trunk/libconfig-auto-perl/debian/changelog Fri Jul  1 18:37:22 2011
@@ -1,3 +1,10 @@
+libconfig-auto-perl (0.36-1) UNRELEASED; urgency=low
+
+  * Team upload.
+  * New upstream release
+
+ -- Salvatore Bonaccorso <carnil at debian.org>  Fri, 01 Jul 2011 20:35:45 +0200
+
 libconfig-auto-perl (0.34-1) unstable; urgency=low
 
   * Team upload.

Modified: trunk/libconfig-auto-perl/lib/Config/Auto.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-auto-perl/lib/Config/Auto.pm?rev=76877&op=diff
==============================================================================
--- trunk/libconfig-auto-perl/lib/Config/Auto.pm (original)
+++ trunk/libconfig-auto-perl/lib/Config/Auto.pm Fri Jul  1 18:37:22 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