[libtest-portability-files-perl] 07/10: drop negative_options.patch, applied upstream
Florian Schlichting
fsfs at alioth.debian.org
Sat Aug 10 18:25:58 UTC 2013
This is an automated email from the git hooks/post-receive script.
fsfs pushed a commit to branch master
in repository libtest-portability-files-perl.
commit 2165bbfad060c455c5ee2a1e021cd1fa271f4970
Author: Florian Schlichting <fsfs at debian.org>
Date: Sat Aug 10 20:16:21 2013 +0200
drop negative_options.patch, applied upstream
---
debian/patches/negative_options.patch | 27 ---------------------------
debian/patches/series | 1 -
2 files changed, 28 deletions(-)
diff --git a/debian/patches/negative_options.patch b/debian/patches/negative_options.patch
deleted file mode 100644
index f0e0e1b..0000000
--- a/debian/patches/negative_options.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Author: Chris Dolan <cdolan at cpan.org>
-Applied-By: Jonathan Yu <frequency at cpan.org>
-Debian-Specific: no
-Bug: http://rt.cpan.org/Public/Bug/Display.html?id=21631
-Description: Fix negative options (setting test to false)
- Test::Portability::Files has had a problem (since its last release circa 2006)
- with turning off tests. While you do get the choice of enabling tests, you
- cannot disable tests -- thus leaving you with a superset of the defaults +
- whatever extra tests you have enabled.
---- a/lib/Test/Portability/Files.pm
-+++ b/lib/Test/Portability/Files.pm
-@@ -276,12 +276,12 @@
- sub options {
- my %opts = @_;
- for my $test (keys %tests) {
-- $tests{$test} = $opts{"test_$test"} if $opts{"test_$test"}
-+ $tests{$test} = $opts{"test_$test"} if exists $opts{"test_$test"}
- }
- for my $opt (keys %options) {
-- $options{$opt} = $opts{$opt} if $opts{$opt}
-+ $options{$opt} = $opts{$opt} if exists $opts{$opt}
- }
-- @tests{keys %tests} = (1)x(keys %tests) if $opts{all_tests};
-+ @tests{keys %tests} = (1)x(keys %tests) if exists $opts{all_tests};
- }
-
- =item C<test_name_portability()>
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 2b09d16..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-negative_options.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libtest-portability-files-perl.git
More information about the Pkg-perl-cvs-commits
mailing list