[libcgi-formbuilder-perl] 10/12: Drop patch fixing test failures with perl5.18: Applied upstream.

Jonas Smedegaard dr at jones.dk
Sat Oct 25 00:10:33 UTC 2014


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

js pushed a commit to branch master
in repository libcgi-formbuilder-perl.

commit d318380ca8a2c026eb145b185074f26d1c63c223
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Sat Oct 25 02:00:51 2014 +0200

    Drop patch fixing test failures with perl5.18: Applied upstream.
---
 debian/patches/perl5.18-hashes.patch | 33 ---------------------------------
 debian/patches/series                |  1 -
 2 files changed, 34 deletions(-)

diff --git a/debian/patches/perl5.18-hashes.patch b/debian/patches/perl5.18-hashes.patch
deleted file mode 100644
index 0cc4149..0000000
--- a/debian/patches/perl5.18-hashes.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Description: tests fail due to Perl 5.18 hash randomization
- With this patch the hashes are walked in alphabetic order during tests,
- avoiding the failures.
- .
- This is not flagged forwarded, since RT is not used by upstream, and upstream
- mailing list is a google group. Hopefuly others will look at RT.
-Author: Damyan Ivanov <dmn at debian.org>
-Forwarded: no
-
---- a/t/2c-template-tt2.t
-+++ b/t/2c-template-tt2.t
-@@ -114,7 +114,8 @@ for (@test) {
-                );
- 
-     # the ${mod} key twiddles fields
--    while(my($f,$o) = each %{$_->{mod} || {}}) {
-+    for my $f ( sort keys %{$_->{mod} || {}} ) {
-+        my $o = $_->{mod}{$f};
-         $o->{name} = $f;
-         $form->field(%$o);
-     }
---- a/t/1a-generate.t
-+++ b/t/1a-generate.t
-@@ -579,7 +579,8 @@ for (@test) {
-                );
- 
-     # the ${mod} key twiddles fields
--    while(my($f,$o) = each %{$_->{mod} || {}}) {
-+    for my $f ( sort keys %{$_->{mod} || {}} ) {
-+        my $o = $_->{mod}{$f};
-         $o->{name} = $f;
-         $form->field(%$o);
-     }
diff --git a/debian/patches/series b/debian/patches/series
index ae55f21..af743c0 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
-perl5.18-hashes.patch
 pod-encoding.patch
 pod-spelling.patch
 0004-Avoid-unneeded-warning-from-CGI.pm-4.05-or-newer.patch

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



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