[libyaml-appconfig-perl] 04/08: Drop qw-parenthesis.patch, applied upstream.

gregor herrmann gregoa at debian.org
Wed Mar 12 22:09:38 UTC 2014


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

gregoa pushed a commit to branch master
in repository libyaml-appconfig-perl.

commit 0eb6e21d586d4903048bbd1a47eefba6473b001d
Author: gregor herrmann <gregoa at debian.org>
Date:   Wed Mar 12 23:02:30 2014 +0100

    Drop qw-parenthesis.patch, applied upstream.
---
 debian/patches/qw-parenthesis.patch | 26 --------------------------
 debian/patches/series               |  1 -
 2 files changed, 27 deletions(-)

diff --git a/debian/patches/qw-parenthesis.patch b/debian/patches/qw-parenthesis.patch
deleted file mode 100644
index e9ed984..0000000
--- a/debian/patches/qw-parenthesis.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Description: add ()s around qw() iteration
- This is mandatory with perl 5.18
-Author: gregor herrmann <gregoa at debian.org>
-Bug-Debian: http://bugs.debian.org/711627
-Bug: http://rt.cpan.org/Public/Bug/Display.html?id=85987
-
---- a/t/01-basic.t
-+++ b/t/01-basic.t
-@@ -11,7 +11,7 @@ BEGIN { use_ok('YAML::AppConfig') }
-     ok( $app, "Instantiated object from file." );
-     isa_ok( $app, "YAML::AppConfig", "Asserting isa YAML::AppConfig" );
-     my $c = 1;
--    for my $var qw(foo bar) {
-+    for my $var ( qw(foo bar) ) {
-         is( $app->get($var), $c, "Retrieving value for $var." );
-         my $method = "get_$var";
-         ok( $app->can($method), "Checking that \$app can get_$var." );
-@@ -31,7 +31,7 @@ BEGIN { use_ok('YAML::AppConfig') }
-     ok( $app, "Instantiated object from string." );
-     isa_ok( $app, "YAML::AppConfig", "Asserting isa YAML::AppConfig" );
-     my $c = 1;
--    for my $var qw(foo bar) {
-+    for my $var ( qw(foo bar) ) {
-         is( $app->get($var), $c, "Retrieving value for $var." );
-         my $method = "get_$var";
-         ok( $app->can($method), "Checking that \$app can get_$var." );
diff --git a/debian/patches/series b/debian/patches/series
index fc442a8..28801f0 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,2 @@
 no-UNIVERSAL-import.patch
 fix-POD-errors.patch
-qw-parenthesis.patch

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



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