[SCM] libconfig-inifiles-perl Debian packaging branch, master, updated. debian/2.78-1-14-g8987f4c

Jonas Smedegaard dr at jones.dk
Thu May 9 14:40:01 UTC 2013


The following commit has been merged in the master branch:
commit ae073bf6761f45c102c7a92d1de33f3b6032c547
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Thu May 9 15:58:42 2013 +0200

    Imported Upstream version 2.79

diff --git a/Changes b/Changes
index 93a5b49..d763348 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,9 @@
+Version 2.79    ( Mon  6 May 10:02:47 IDT 2013 )
+------------------------------------------------
+
+* Fix test failures with Pod-Simple-3.28:
+    - http://www.cpantesters.org/cpan/report/98f9d3a8-b557-11e2-9adc-3d5fc1508286
+
 Version 2.78    ( Sun 21 Oct 13:14:39 IST 2012 )
 ------------------------------------------------
 
diff --git a/MANIFEST b/MANIFEST
index 4733ef0..1bae175 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,12 +1,13 @@
-
 Build.PL
 Changes
-inc/Test/Run/Builder.pm
-lib/Config/IniFiles.pm
-Makefile.PL
 MANIFEST
+META.json
 META.yml
+Makefile.PL
 README
+inc/Test/Run/Builder.pm
+lib/Config/IniFiles.pm
+scripts/tag-release.pl
 t/00load.t
 t/01basic.t
 t/02weird.t
@@ -39,7 +40,6 @@ t/29end-of-line-comment.t
 t/30parameters-with-empty-values.t
 t/31comments_with_spaces.t
 t/32mswin-outputs-contain-crs.t
-tag-release.pl
 t/allowed-comment-chars.ini
 t/array.ini
 t/bad.ini
@@ -49,8 +49,8 @@ t/ca.ini
 t/case-sensitive-default.ini
 t/case-sensitive.ini
 t/cmt.ini
-t/end-of-line-comment.ini
 t/en.ini
+t/end-of-line-comment.ini
 t/es.ini
 t/for-27-empty.ini
 t/lib/Config/IniFiles/Debug.pm
@@ -60,4 +60,3 @@ t/pod-coverage.t
 t/pod.t
 t/test.ini
 t/trailing-comments.ini
-META.json
diff --git a/META.json b/META.json
index a2ef6b8..06a6397 100644
--- a/META.json
+++ b/META.json
@@ -57,7 +57,7 @@
    "provides" : {
       "Config::IniFiles" : {
          "file" : "lib/Config/IniFiles.pm",
-         "version" : "2.78"
+         "version" : "2.79"
       }
    },
    "release_status" : "stable",
@@ -70,5 +70,5 @@
          "url" : "https://bitbucket.org/shlomif/perl-config-inifiles"
       }
    },
-   "version" : "2.78"
+   "version" : "2.79"
 }
diff --git a/META.yml b/META.yml
index b4c0c35..b53d7ca 100644
--- a/META.yml
+++ b/META.yml
@@ -32,7 +32,7 @@ name: Config-IniFiles
 provides:
   Config::IniFiles:
     file: lib/Config/IniFiles.pm
-    version: 2.78
+    version: 2.79
 requires:
   Carp: 0
   Fcntl: 0
@@ -46,4 +46,4 @@ resources:
   homepage: https://sourceforge.net/projects/config-inifiles/
   license: http://dev.perl.org/licenses/
   repository: https://bitbucket.org/shlomif/perl-config-inifiles
-version: 2.78
+version: 2.79
diff --git a/lib/Config/IniFiles.pm b/lib/Config/IniFiles.pm
index db04c66..7a1bbfd 100644
--- a/lib/Config/IniFiles.pm
+++ b/lib/Config/IniFiles.pm
@@ -2,7 +2,7 @@ package Config::IniFiles;
 
 use vars qw($VERSION);
 
-$VERSION = '2.78';
+$VERSION = '2.79';
 
 require 5.004;
 use strict;
@@ -255,7 +255,7 @@ syntax.
 
 =item I<-allowempty> 0|1
 
-If set to 1, then empty files are allowed at L</ReadConfig|ReadConfig()>
+If set to 1, then empty files are allowed at L<ReadConfig|ReadConfig()>
 time. If set to 0 (the default), an empty configuration file is considered
 an error.
 
@@ -276,7 +276,7 @@ or
 If set to 0 (the default if not importing), these comments are treated
 like ordinary ones.
 
-The L</WriteConfig|WriteConfig($filename, -delta=>1)> form will output such
+The L<WriteConfig|WriteConfig($filename, -delta=>1)> form will output such
 comments to indicate deleted sections or parameters. This way,
 reloading a delta file using the same imported object produces the
 same results in memory again. See L<IMPORT / DELTA FEATURES> for more
diff --git a/tag-release.pl b/scripts/tag-release.pl
similarity index 55%
rename from tag-release.pl
rename to scripts/tag-release.pl
index be18566..f43cd16 100644
--- a/tag-release.pl
+++ b/scripts/tag-release.pl
@@ -5,8 +5,8 @@ use warnings;
 
 use IO::All;
 
-my ($version) = 
-    (map { m{\$VERSION *= *'([^']+)'} ? ($1) : () } 
+my ($version) =
+    (map { m{\$VERSION *= *'([^']+)'} ? ($1) : () }
     io->file('lib/Config/IniFiles.pm')->getlines()
     )
     ;
@@ -16,13 +16,10 @@ if (!defined ($version))
     die "Version is undefined!";
 }
 
-my $mini_repos_base = 'https://config-inifiles.svn.sourceforge.net/svnroot/config-inifiles';
-
 my @cmd = (
-    "svn", "copy", "-m",
+    "hg", "tag", "-m",
     "Tagging the Config-IniFiles release as $version",
-    "$mini_repos_base/trunk",
-    "$mini_repos_base/tags/releases/$version",
+    "releases/$version",
 );
 
 print join(" ", map { /\s/ ? qq{"$_"} : $_ } @cmd), "\n";

-- 
libconfig-inifiles-perl Debian packaging



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