From 0a5b90bb2f3179fb463d66e196a77fce930ed142 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Wed, 21 Mar 2012 13:59:13 +0000 Subject: [PATCH] Remove unused patch --- .gitignore | 2 +- perl-Test-Perl-Critic-1.01-fixtest.patch | 21 --------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 perl-Test-Perl-Critic-1.01-fixtest.patch diff --git a/.gitignore b/.gitignore index 250f8c7..93c70c9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -Test-Perl-Critic-1.02.tar.gz +/Test-Perl-Critic-[0-9.]*.tar.gz diff --git a/perl-Test-Perl-Critic-1.01-fixtest.patch b/perl-Test-Perl-Critic-1.01-fixtest.patch deleted file mode 100644 index 6ce99da..0000000 --- a/perl-Test-Perl-Critic-1.01-fixtest.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -up Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm.BAD Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm ---- Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm.BAD 2008-01-15 11:21:37.000000000 -0500 -+++ Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm 2008-01-15 11:22:10.000000000 -0500 -@@ -92,7 +92,7 @@ sub critic_ok { - - sub all_critic_ok { - -- my @dirs = @_ ? @_ : _starting_points(); -+ my (@dirs) = @_ ? @_ : _starting_points(); - my @files = all_code_files( @dirs ); - $TEST->plan( tests => scalar @files ); - -@@ -103,7 +103,7 @@ sub all_critic_ok { - #--------------------------------------------------------------------------- - - sub all_code_files { -- my @dirs = @_ ? @_ : _starting_points(); -+ my (@dirs) = @_ ? @_ : _starting_points(); - return Perl::Critic::Utils::all_perl_files(@dirs); - } -