r37083 - in /branches/upstream/libconfig-inifiles-perl/current: Changes MANIFEST META.yml lib/Config/IniFiles.pm t/pod-coverage.t t/pod.t

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Mon Jun 1 05:25:58 UTC 2009


Author: carnil-guest
Date: Mon Jun  1 05:25:53 2009
New Revision: 37083

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

Added:
    branches/upstream/libconfig-inifiles-perl/current/t/pod-coverage.t
    branches/upstream/libconfig-inifiles-perl/current/t/pod.t
Modified:
    branches/upstream/libconfig-inifiles-perl/current/Changes
    branches/upstream/libconfig-inifiles-perl/current/MANIFEST
    branches/upstream/libconfig-inifiles-perl/current/META.yml
    branches/upstream/libconfig-inifiles-perl/current/lib/Config/IniFiles.pm

Modified: branches/upstream/libconfig-inifiles-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-inifiles-perl/current/Changes?rev=37083&op=diff
==============================================================================
--- branches/upstream/libconfig-inifiles-perl/current/Changes (original)
+++ branches/upstream/libconfig-inifiles-perl/current/Changes Mon Jun  1 05:25:53 2009
@@ -1,3 +1,13 @@
+Version 2.50:   ( Sun May 31 14:54:14 IDT 2009 )
+------------------------------------------------
+
+* Fixed the POD for SetParameterEOT:
+- https://rt.cpan.org/Ticket/Display.html?id=28375
+* Added t/pod.t and t/pod-coverage.t and fixed the problems they pointed:
+- Removed some trailing pod.
+    - http://rt.cpan.org/Ticket/Display.html?id=46549
+- Documented the ->OutputConfig() method.
+
 Version 2.49:   ( Sat May  2 17:16:28 IDT 2009 )
 ------------------------------------------------
 

Modified: branches/upstream/libconfig-inifiles-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-inifiles-perl/current/MANIFEST?rev=37083&op=diff
==============================================================================
--- branches/upstream/libconfig-inifiles-perl/current/MANIFEST (original)
+++ branches/upstream/libconfig-inifiles-perl/current/MANIFEST Mon Jun  1 05:25:53 2009
@@ -42,5 +42,7 @@
 t/es.ini
 t/lib/Config/IniFiles/Debug.pm
 t/non-contiguous-groups.ini
+t/pod-coverage.t
+t/pod.t
 t/test.ini
 t/trailing-comments.ini

Modified: branches/upstream/libconfig-inifiles-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-inifiles-perl/current/META.yml?rev=37083&op=diff
==============================================================================
--- branches/upstream/libconfig-inifiles-perl/current/META.yml (original)
+++ branches/upstream/libconfig-inifiles-perl/current/META.yml Mon Jun  1 05:25:53 2009
@@ -1,6 +1,6 @@
 ---
 name: Config-IniFiles
-version: 2.49
+version: 2.50
 author: []
 abstract: A module for reading .ini-style configuration files.
 license: perl
@@ -17,8 +17,8 @@
 provides:
   Config::IniFiles:
     file: lib/Config/IniFiles.pm
-    version: 2.49
-generated_by: Module::Build version 0.32
+    version: 2.50
+generated_by: Module::Build version 0.33
 meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4

Modified: branches/upstream/libconfig-inifiles-perl/current/lib/Config/IniFiles.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-inifiles-perl/current/lib/Config/IniFiles.pm?rev=37083&op=diff
==============================================================================
--- branches/upstream/libconfig-inifiles-perl/current/lib/Config/IniFiles.pm (original)
+++ branches/upstream/libconfig-inifiles-perl/current/lib/Config/IniFiles.pm Mon Jun  1 05:25:53 2009
@@ -2,7 +2,7 @@
 
 use vars qw($VERSION);
 
-$VERSION = "2.49";
+$VERSION = "2.50";
 
 require 5.004;
 use strict;
@@ -1299,11 +1299,13 @@
   return undef;
 }
 
-# OutputConfig
-#
-# Writes OutputConfig to STDOUT. Use select() to redirect STDOUT to
-# the output target before calling this function. Optional argument
-# should be set to 1 if writing only delta.
+=head2 $ini->OutputConfig($delta)
+
+Writes OutputConfig to STDOUT. Use select() to redirect STDOUT to
+the output target before calling this function. Optional argument
+should be set to 1 if writing only delta.
+
+=cut
 
 sub OutputConfig {
     my ($self, $delta) = @_;
@@ -1646,7 +1648,7 @@
 	return $self->{EOT}{$sect}{$parm};
 }
 
-=head2 SetParameterEOT ($section, $EOT)
+=head2 $cfg->SetParameterEOT ($section, $parameter, $EOT)
 
 Accessor method for the EOT text for the specified parameter. Sets the HERE style marker text to the value $EOT. Once the EOT text is set, that parameter will be saved in HERE style.
 
@@ -2461,10 +2463,6 @@
 
 1;
 
-=cut
-
-1;
-
 # Please keep the following within the last four lines of the file
 #[JW for editor]:mode=perl:tabSize=8:indentSize=2:noTabs=true:indentOnEnter=true:
 

Added: branches/upstream/libconfig-inifiles-perl/current/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-inifiles-perl/current/t/pod-coverage.t?rev=37083&op=file
==============================================================================
--- branches/upstream/libconfig-inifiles-perl/current/t/pod-coverage.t (added)
+++ branches/upstream/libconfig-inifiles-perl/current/t/pod-coverage.t Mon Jun  1 05:25:53 2009
@@ -1,0 +1,6 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
+all_pod_coverage_ok();

Added: branches/upstream/libconfig-inifiles-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-inifiles-perl/current/t/pod.t?rev=37083&op=file
==============================================================================
--- branches/upstream/libconfig-inifiles-perl/current/t/pod.t (added)
+++ branches/upstream/libconfig-inifiles-perl/current/t/pod.t Mon Jun  1 05:25:53 2009
@@ -1,0 +1,6 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();




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