r37085 - in /trunk/libconfig-inifiles-perl: Changes MANIFEST META.yml debian/changelog 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:29:52 UTC 2009


Author: carnil-guest
Date: Mon Jun  1 05:29:47 2009
New Revision: 37085

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=37085
Log:
import new upstream version, marked as UNRELEASED and add TODO

Added:
    trunk/libconfig-inifiles-perl/t/pod-coverage.t
      - copied unchanged from r37084, branches/upstream/libconfig-inifiles-perl/current/t/pod-coverage.t
    trunk/libconfig-inifiles-perl/t/pod.t
      - copied unchanged from r37084, branches/upstream/libconfig-inifiles-perl/current/t/pod.t
Modified:
    trunk/libconfig-inifiles-perl/Changes
    trunk/libconfig-inifiles-perl/MANIFEST
    trunk/libconfig-inifiles-perl/META.yml
    trunk/libconfig-inifiles-perl/debian/changelog
    trunk/libconfig-inifiles-perl/lib/Config/IniFiles.pm

Modified: trunk/libconfig-inifiles-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-inifiles-perl/Changes?rev=37085&op=diff
==============================================================================
--- trunk/libconfig-inifiles-perl/Changes (original)
+++ trunk/libconfig-inifiles-perl/Changes Mon Jun  1 05:29:47 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: trunk/libconfig-inifiles-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-inifiles-perl/MANIFEST?rev=37085&op=diff
==============================================================================
--- trunk/libconfig-inifiles-perl/MANIFEST (original)
+++ trunk/libconfig-inifiles-perl/MANIFEST Mon Jun  1 05:29:47 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: trunk/libconfig-inifiles-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-inifiles-perl/META.yml?rev=37085&op=diff
==============================================================================
--- trunk/libconfig-inifiles-perl/META.yml (original)
+++ trunk/libconfig-inifiles-perl/META.yml Mon Jun  1 05:29:47 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: trunk/libconfig-inifiles-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-inifiles-perl/debian/changelog?rev=37085&op=diff
==============================================================================
--- trunk/libconfig-inifiles-perl/debian/changelog (original)
+++ trunk/libconfig-inifiles-perl/debian/changelog Mon Jun  1 05:29:47 2009
@@ -1,3 +1,12 @@
+libconfig-inifiles-perl (2.50-1) UNRELEASED; urgency=low
+
+  # TODO: 
+  # - Check copyright information for modified files
+  # - drop debian/patches/1001-fix-POD-Config-IniFiles.patch
+  * New upstream release
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Mon, 01 Jun 2009 07:28:58 +0200
+
 libconfig-inifiles-perl (2.49-1) unstable; urgency=low
 
   [ Jonas Smedegaard ]

Modified: trunk/libconfig-inifiles-perl/lib/Config/IniFiles.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-inifiles-perl/lib/Config/IniFiles.pm?rev=37085&op=diff
==============================================================================
--- trunk/libconfig-inifiles-perl/lib/Config/IniFiles.pm (original)
+++ trunk/libconfig-inifiles-perl/lib/Config/IniFiles.pm Mon Jun  1 05:29:47 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:
 




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