This is an automated email from the git hooks/post-receive script.

roam-guest pushed a commit to branch master
in repository libconfig-inifiles-perl.

commit 3bd70465ce947fbed4db37cc314ac4226347c8d6
Author: Peter Pentchev <r...@ringlet.net>
Date:   Sun Nov 27 19:11:12 2016 +0200

    Update the Debian packaging for Config-IniFiles-2.90.
---
 debian/changelog           |   3 +-
 debian/patches/typos.patch | 147 ++++++++++++++++++++++++---------------------
 2 files changed, 80 insertions(+), 70 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e710e87..ee92e5e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libconfig-inifiles-perl (2.89-2) UNRELEASED; urgency=medium
+libconfig-inifiles-perl (2.90-1) UNRELEASED; urgency=medium
 
   * Team upload.
 
@@ -11,6 +11,7 @@ libconfig-inifiles-perl (2.89-2) UNRELEASED; urgency=medium
   * Use MetaCPAN as the upstream homepage, remove the references to
     SourceForge.
   * Add the typos patch to correct some errors.
+  * New upstream release.
 
  -- gregor herrmann <gre...@debian.org>  Sat, 20 Aug 2016 02:16:00 +0200
 
diff --git a/debian/patches/typos.patch b/debian/patches/typos.patch
index 86273fb..055c26b 100644
--- a/debian/patches/typos.patch
+++ b/debian/patches/typos.patch
@@ -5,25 +5,7 @@ Last-Update: 2016-11-27
 
 --- a/lib/Config/IniFiles.pm
 +++ b/lib/Config/IniFiles.pm
-@@ -216,7 +216,7 @@
-    name=Joseph
- 
- Note that Config::IniFiles will also omit the fallback section header when
--outputing such configuration.
-+outputting such configuration.
- 
- =item I<-nocase> 0|1
- 
-@@ -331,7 +331,7 @@
-  value2
-  EOT
- 
--As the later might not be compatible with all applications.
-+As the latter might not be compatible with all applications.
- 
- =item I<-handle_trailing_comment> 0|1
- 
-@@ -477,7 +477,7 @@
+@@ -143,7 +143,7 @@
  
    $self->{_comments_at_end_of_file} = [];
  
@@ -32,25 +14,16 @@ Last-Update: 2016-11-27
    while (($k, $v) = each %parms) {
      carp "Unknown named parameter $k=>$v";
      $errs++;
-@@ -670,7 +670,7 @@
+@@ -340,7 +340,7 @@
+ }
  
- =head2 newval($section, $parameter, $value [, $value2, ...])
- 
--Assignes a new value, C<$value> (or set of values) to the
-+Assigns a new value, C<$value> (or set of values) to the
- parameter C<$parameter> in section C<$section> in the configuration
- file.
- 
-@@ -743,7 +743,7 @@
- 
- =cut
  
 -# Auxillary function to make deep (aliasing-free) copies of data
 +# Auxiliary function to make deep (aliasing-free) copies of data
  # structures.  Ignores blessed objects in tree (could be taught not
  # to, if needed)
  sub _deepcopy {
-@@ -1187,7 +1187,7 @@
+@@ -784,7 +784,7 @@
      }
  
      $self->_add_error(
@@ -59,7 +32,7 @@ Last-Update: 2016-11-27
              $self->_read_line_num(), $self->GetFileName(), $line
          )
      );
-@@ -1234,16 +1234,16 @@
+@@ -831,16 +831,16 @@
      $self->{EOT}    = {};
      $self->{mysects} = []; # A pair of hashes to remember which params are 
loaded
      $self->{myparms} = {}; # or set using the API vs. imported - useful for
@@ -80,25 +53,91 @@ Last-Update: 2016-11-27
          $self->{imported}->ReadConfig() unless ($self->{firstload});
  
          foreach my $field (qw(sects parms group v sCMT pCMT EOT e)) {
-@@ -1459,7 +1459,7 @@
+@@ -1812,7 +1812,7 @@
+ # These methods allow you to tie a hash to the
+ # Config::IniFiles object. Note that, when tied, the
+ # user wants to look at thinks like $ini{sec}{parm}, but the
+-# TIEHASH only provides one level of hash interace, so the
++# TIEHASH only provides one level of hash interface, so the
+ # root object gets asked for a $ini{sec}, which this
+ # implements. To further tie the {parm} hash, the internal
+ # class Config::IniFiles::_section, is provided, below.
+@@ -1964,9 +1964,9 @@
+ # Args: $thing
+ #   $thing  An input source
+ #
+-# Description: Takes an input source of a filehandle,
++# Description: Takes an input source - a filehandle,
+ # filehandle glob, reference to a filehandle glob, IO::File
+-# object or scalar filename and returns a file handle to
++# object or scalar filename - and returns a file handle to
+ # read from it with.
+ # ----------------------------------------------------------
+ # Date      Modification                              Author
+@@ -2015,7 +2015,7 @@
+ # This package is used to provide a single-level TIEHASH
+ # interface to the sections in the IniFile. When tied, the
+ # user wants to look at thinks like $ini{sec}{parm}, but the
+-# TIEHASH only provides one level of hash interace, so the
++# TIEHASH only provides one level of hash interface, so the
+ # root object gets asked for a $ini{sec} and must return a
+ # has reference that accurately covers the '{parm}' part.
+ #
+@@ -2176,7 +2176,7 @@
+ # Sub: Config::IniFiles::_section::NEXTKEY
+ #
+ # Args: $last
+-#   $last   The last key accessed by the interator
++#   $last   The last key accessed by the iterator
+ #
+ # Description: Returns the next key in line
+ # ----------------------------------------------------------
+@@ -2418,7 +2418,7 @@
+    name=Joseph
+ 
+ Note that Config::IniFiles will also omit the fallback section header when
+-outputing such configuration.
++outputting such configuration.
+ 
+ =item I<-nocase> 0|1
+ 
+@@ -2526,7 +2526,7 @@
+  value2
+  EOT
+ 
+-As the later might not be compatible with all applications.
++As the latter might not be compatible with all applications.
+ 
+ =item I<-handle_trailing_comment> 0|1
+ 
+@@ -2590,7 +2590,7 @@
+ 
+ =head2 newval($section, $parameter, $value [, $value2, ...])
+ 
+-Assignes a new value, C<$value> (or set of values) to the
++Assigns a new value, C<$value> (or set of values) to the
+ parameter C<$parameter> in section C<$section> in the configuration
+ file.
+ 
+@@ -2634,7 +2634,7 @@
  
  =head2 RenameSection ( $old_section_name, $new_section_name, 
$include_groupmembers)
  
 -Renames a section if it does not already exists optionally including 
groupmembers
 +Renames a section if it does not already exist optionally including 
groupmembers
  
- =cut
+ =head2 CopySection ( $old_section_name, $new_section_name, 
$include_groupmembers)
  
-@@ -1900,7 +1900,7 @@
+@@ -2740,7 +2740,7 @@
  
  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. Also see OutputConfigToFileHandle
 +should be set to 1 if writing only a delta. Also see OutputConfigToFileHandle
  
- =cut
+ =head2 SetSectionComment($section, @comment)
  
-@@ -2406,7 +2406,7 @@
+@@ -2811,7 +2811,7 @@
  
  An accessor method to read the trailing comment after the parameter.
  The trailing comment will be returned if there is one. A null string
@@ -106,8 +145,8 @@ Last-Update: 2016-11-27
 +will be returned if the parameter exists but there is no comment for it.
  otherwise, L<undef> will be returned.
  
- =cut
-@@ -2487,7 +2487,7 @@
+ =head2 Delete
+@@ -2860,7 +2860,7 @@
  
  Sets the value of C<$parameter> in C<$section> to C<$value>.
  
@@ -116,36 +155,6 @@ Last-Update: 2016-11-27
  array reference to the hash entry, like this:
  
   $ini{$section}{$parameter} = [$value1, $value2, ...];
-@@ -2593,7 +2593,7 @@
- # These methods allow you to tie a hash to the
- # Config::IniFiles object. Note that, when tied, the
- # user wants to look at thinks like $ini{sec}{parm}, but the
--# TIEHASH only provides one level of hash interace, so the
-+# TIEHASH only provides one level of hash interface, so the
- # root object gets asked for a $ini{sec}, which this
- # implements. To further tie the {parm} hash, the internal
- # class Config::IniFiles::_section, is provided, below.
-@@ -2745,9 +2745,9 @@
- # Args: $thing
- #   $thing  An input source
- #
--# Description: Takes an input source of a filehandle,
-+# Description: Takes an input source - a filehandle,
- # filehandle glob, reference to a filehandle glob, IO::File
--# object or scalar filename and returns a file handle to
-+# object or scalar filename - and returns a file handle to
- # read from it with.
- # ----------------------------------------------------------
- # Date      Modification                              Author
-@@ -2957,7 +2957,7 @@
- # Sub: Config::IniFiles::_section::NEXTKEY
- #
- # Args: $last
--#   $last   The last key accessed by the interator
-+#   $last   The last key accessed by the iterator
- #
- # Description: Returns the next key in line
- # ----------------------------------------------------------
 --- a/t/05hash.t
 +++ b/t/05hash.t
 @@ -25,7 +25,7 @@

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconfig-inifiles-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to