r16515 - in /branches/upstream/libconfig-file-perl/current: CHANGES MANIFEST META.yml lib/Config/File.pm

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Wed Mar 5 16:18:49 UTC 2008


Author: gwolf
Date: Wed Mar  5 16:18:48 2008
New Revision: 16515

URL: http://svn.debian.org/wsvn/?sc=1&rev=16515
Log:
[svn-upgrade] Integrating new upstream version, libconfig-file-perl (1.42)

Added:
    branches/upstream/libconfig-file-perl/current/CHANGES
Modified:
    branches/upstream/libconfig-file-perl/current/MANIFEST
    branches/upstream/libconfig-file-perl/current/META.yml
    branches/upstream/libconfig-file-perl/current/lib/Config/File.pm

Added: branches/upstream/libconfig-file-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/branches/upstream/libconfig-file-perl/current/CHANGES?rev=16515&op=file
==============================================================================
--- branches/upstream/libconfig-file-perl/current/CHANGES (added)
+++ branches/upstream/libconfig-file-perl/current/CHANGES Wed Mar  5 16:18:48 2008
@@ -1,0 +1,9 @@
+1.4 (07-Sep-2006):
+ - Initial CPAN upload (was a native Debian package before)
+
+1.41 (20-Oct-2007):
+ - Dropped the old, deprecated ConfigFile naming
+
+1.42 (04-Mar-2008):
+ - Explicitly closing the file after reading it, closing a bug on
+   wperl.exe on win32. Thanks to Peter Valdemar Mørch for spotting it!

Modified: branches/upstream/libconfig-file-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libconfig-file-perl/current/MANIFEST?rev=16515&op=diff
==============================================================================
--- branches/upstream/libconfig-file-perl/current/MANIFEST (original)
+++ branches/upstream/libconfig-file-perl/current/MANIFEST Wed Mar  5 16:18:48 2008
@@ -1,3 +1,4 @@
+CHANGES
 Makefile.PL
 t/config
 t/test.t

Modified: branches/upstream/libconfig-file-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libconfig-file-perl/current/META.yml?rev=16515&op=diff
==============================================================================
--- branches/upstream/libconfig-file-perl/current/META.yml (original)
+++ branches/upstream/libconfig-file-perl/current/META.yml Wed Mar  5 16:18:48 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Config-File
-version:      1.41
+version:      1.42
 version_from: lib/Config/File.pm
 installdirs:  site
 requires:

Modified: branches/upstream/libconfig-file-perl/current/lib/Config/File.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libconfig-file-perl/current/lib/Config/File.pm?rev=16515&op=diff
==============================================================================
--- branches/upstream/libconfig-file-perl/current/lib/Config/File.pm (original)
+++ branches/upstream/libconfig-file-perl/current/lib/Config/File.pm Wed Mar  5 16:18:48 2008
@@ -10,7 +10,7 @@
 use vars qw($VERSION @ISA @EXPORT_OK);
 @ISA = qw/Exporter/;
 @EXPORT_OK = qw/read_config_file/;
-$VERSION='1.41';
+$VERSION='1.42';
 
 
 sub read_config_file($) {
@@ -48,6 +48,7 @@
         $conf_data =~ s!([\\\'])!\\$1!g;
         eval "$conf_ele = '$conf_data'";
     }
+    $fh->close;
 
     return $conf;
 }




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