Codebase list libcode-tidyall-perl / dc7610b
drop patch 2001 to avoid perl library lib::relative; build-depend on liblib-relative-perl Jonas Smedegaard 2 years ago
4 changed file(s) with 1 addition(s) and 232 deletion(s). Raw diff Collapse all Expand all
1313 libfile-zglob-perl <!nocheck>,
1414 libipc-run3-perl <!nocheck>,
1515 libipc-system-simple-perl <!nocheck>,
16 liblib-relative-perl <!nocheck>,
1617 liblist-compare-perl <!nocheck>,
1718 liblist-someutils-perl <!nocheck>,
1819 liblog-any-perl <!nocheck>,
+0
-228
debian/patches/2001_avoid_lib::relative.patch less more
0 Description: avoid depending on lib::relative not yet in Debian
1 Author: Jonas Smedegaard <dr@jones.dk>
2 Last-Update: 2021-02-19
3 ---
4 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
5 --- a/t/Basic.t
6 +++ b/t/Basic.t
7 @@ -3,7 +3,7 @@
8 use strict;
9 use warnings;
10
11 -use lib::relative 'lib';
12 +use lib 't/lib';
13
14 use Config;
15 use File::Spec;
16 --- a/t/lib/TestFor/Code/TidyAll/Basic.pm
17 +++ b/t/lib/TestFor/Code/TidyAll/Basic.pm
18 @@ -204,18 +204,18 @@
19 }
20 }
21
22 -sub test_iterations : Tests {
23 - my $self = shift;
24 - my $root_dir = $self->create_dir( { 'foo.txt' => 'abc' } );
25 - my $ct = Code::TidyAll->new(
26 - plugins => { test_plugin('RepeatFoo') => { select => '**/foo*', times => 3 } },
27 - root_dir => $root_dir,
28 - iterations => 2
29 - );
30 - my $file = $root_dir->child('foo.txt');
31 - $ct->process_paths($file);
32 - is( $file->slurp, scalar( 'abc' x 9 ), '3^2 = 9' );
33 -}
34 +#sub test_iterations : Tests {
35 +# my $self = shift;
36 +# my $root_dir = $self->create_dir( { 'foo.txt' => 'abc' } );
37 +# my $ct = Code::TidyAll->new(
38 +# plugins => { test_plugin('RepeatFoo') => { select => '**/foo*', times => 3 } },
39 +# root_dir => $root_dir,
40 +# iterations => 2
41 +# );
42 +# my $file = $root_dir->child('foo.txt');
43 +# $ct->process_paths($file);
44 +# is( $file->slurp, scalar( 'abc' x 9 ), '3^2 = 9' );
45 +#}
46
47 sub test_caching_and_backups : Tests {
48 my $self = shift;
49 --- a/t/Conf.t
50 +++ b/t/Conf.t
51 @@ -1,4 +1,4 @@
52 #!/usr/bin/perl
53 -use lib::relative 'lib';
54 +use lib 't/lib';
55 use TestFor::Code::TidyAll::Conf;
56 TestFor::Code::TidyAll::Conf->runtests;
57 --- a/t/Git.t
58 +++ b/t/Git.t
59 @@ -1,4 +1,4 @@
60 #!/usr/bin/perl
61 -use lib::relative 'lib';
62 +use lib 't/lib';
63 use TestFor::Code::TidyAll::Git;
64 TestFor::Code::TidyAll::Git->runtests;
65 --- a/t/Plugin-CSSUnminifier.t
66 +++ b/t/Plugin-CSSUnminifier.t
67 @@ -1,4 +1,4 @@
68 #!/usr/bin/perl
69 -use lib::relative 'lib';
70 +use lib 't/lib';
71 use TestFor::Code::TidyAll::Plugin::CSSUnminifier;
72 TestFor::Code::TidyAll::Plugin::CSSUnminifier->runtests;
73 --- a/t/Plugin-GenericTransformer.t
74 +++ b/t/Plugin-GenericTransformer.t
75 @@ -1,4 +1,4 @@
76 #!/usr/bin/perl
77 -use lib::relative 'lib';
78 +use lib 't/lib';
79 use TestFor::Code::TidyAll::Plugin::GenericTransformer;
80 TestFor::Code::TidyAll::Plugin::GenericTransformer->runtests;
81 --- a/t/Plugin-GenericValidator.t
82 +++ b/t/Plugin-GenericValidator.t
83 @@ -1,4 +1,4 @@
84 #!/usr/bin/perl
85 -use lib::relative 'lib';
86 +use lib 't/lib';
87 use TestFor::Code::TidyAll::Plugin::GenericValidator;
88 TestFor::Code::TidyAll::Plugin::GenericValidator->runtests;
89 --- a/t/Plugin-JSBeautify.t
90 +++ b/t/Plugin-JSBeautify.t
91 @@ -1,5 +1,4 @@
92 #!/usr/bin/perl
93 -use lib::relative 'lib';
94 -use lib::relative 'lib';
95 +use lib 't/lib';
96 use TestFor::Code::TidyAll::Plugin::JSBeautify;
97 TestFor::Code::TidyAll::Plugin::JSBeautify->runtests;
98 --- a/t/Plugin-JSHint.t
99 +++ b/t/Plugin-JSHint.t
100 @@ -1,4 +1,4 @@
101 #!/usr/bin/perl
102 -use lib::relative 'lib';
103 +use lib 't/lib';
104 use TestFor::Code::TidyAll::Plugin::JSHint;
105 TestFor::Code::TidyAll::Plugin::JSHint->runtests;
106 --- a/t/Plugin-JSLint.t
107 +++ b/t/Plugin-JSLint.t
108 @@ -1,4 +1,4 @@
109 #!/usr/bin/perl
110 -use lib::relative 'lib';
111 +use lib 't/lib';
112 use TestFor::Code::TidyAll::Plugin::JSLint;
113 TestFor::Code::TidyAll::Plugin::JSLint->runtests;
114 --- a/t/Plugin-MasonTidy.t
115 +++ b/t/Plugin-MasonTidy.t
116 @@ -1,4 +1,4 @@
117 #!/usr/bin/perl
118 -use lib::relative 'lib';
119 +use lib 't/lib';
120 use TestFor::Code::TidyAll::Plugin::MasonTidy;
121 TestFor::Code::TidyAll::Plugin::MasonTidy->runtests;
122 --- a/t/Plugin-PHPCodeSniffer.t
123 +++ b/t/Plugin-PHPCodeSniffer.t
124 @@ -1,4 +1,4 @@
125 #!/usr/bin/perl
126 -use lib::relative 'lib';
127 +use lib 't/lib';
128 use TestFor::Code::TidyAll::Plugin::PHPCodeSniffer;
129 TestFor::Code::TidyAll::Plugin::PHPCodeSniffer->runtests;
130 --- a/t/Plugin-PerlCritic.t
131 +++ b/t/Plugin-PerlCritic.t
132 @@ -1,4 +1,4 @@
133 #!/usr/bin/perl
134 -use lib::relative 'lib';
135 +use lib 't/lib';
136 use TestFor::Code::TidyAll::Plugin::PerlCritic;
137 TestFor::Code::TidyAll::Plugin::PerlCritic->runtests;
138 --- a/t/Plugin-PerlTidy.t
139 +++ b/t/Plugin-PerlTidy.t
140 @@ -1,4 +1,4 @@
141 #!/usr/bin/perl
142 -use lib::relative 'lib';
143 +use lib 't/lib';
144 use TestFor::Code::TidyAll::Plugin::PerlTidy;
145 TestFor::Code::TidyAll::Plugin::PerlTidy->runtests;
146 --- a/t/Plugin-PerlTidySweet.t
147 +++ b/t/Plugin-PerlTidySweet.t
148 @@ -5,6 +5,6 @@
149 plan skip_all => 'This plugin requires Perl 5.10+'
150 unless $] >= 5.010;
151
152 -use lib::relative 'lib';
153 +use lib 't/lib';
154 use TestFor::Code::TidyAll::Plugin::PerlTidySweet;
155 TestFor::Code::TidyAll::Plugin::PerlTidySweet->runtests;
156 --- a/t/Plugin-PodChecker.t
157 +++ b/t/Plugin-PodChecker.t
158 @@ -1,4 +1,4 @@
159 #!/usr/bin/perl
160 -use lib::relative 'lib';
161 +use lib 't/lib';
162 use TestFor::Code::TidyAll::Plugin::PodChecker;
163 TestFor::Code::TidyAll::Plugin::PodChecker->runtests;
164 --- a/t/Plugin-PodSpell.t
165 +++ b/t/Plugin-PodSpell.t
166 @@ -1,4 +1,4 @@
167 #!/usr/bin/perl
168 -use lib::relative 'lib';
169 +use lib 't/lib';
170 use TestFor::Code::TidyAll::Plugin::PodSpell;
171 TestFor::Code::TidyAll::Plugin::PodSpell->runtests;
172 --- a/t/Plugin-PodTidy.t
173 +++ b/t/Plugin-PodTidy.t
174 @@ -1,4 +1,4 @@
175 #!/usr/bin/perl
176 -use lib::relative 'lib';
177 +use lib 't/lib';
178 use TestFor::Code::TidyAll::Plugin::PodTidy;
179 TestFor::Code::TidyAll::Plugin::PodTidy->runtests;
180 --- a/t/Plugin-SortLines.t
181 +++ b/t/Plugin-SortLines.t
182 @@ -1,4 +1,4 @@
183 #!/usr/bin/perl
184 -use lib::relative 'lib';
185 +use lib 't/lib';
186 use TestFor::Code::TidyAll::Plugin::SortLines;
187 TestFor::Code::TidyAll::Plugin::SortLines->runtests;
188 --- a/t/Util.t
189 +++ b/t/Util.t
190 @@ -1,4 +1,4 @@
191 #!/usr/bin/perl
192 -use lib::relative 'lib';
193 +use lib 't/lib';
194 use TestFor::Code::TidyAll::Util;
195 TestFor::Code::TidyAll::Util->runtests;
196 --- a/t/Zglob.t
197 +++ b/t/Zglob.t
198 @@ -1,4 +1,4 @@
199 #!/usr/bin/perl
200 -use lib::relative 'lib';
201 +use lib 't/lib';
202 use TestFor::Code::TidyAll::Util::Zglob;
203 TestFor::Code::TidyAll::Util::Zglob->runtests;
204 --- a/t/diff-on-tidy-error.t
205 +++ b/t/diff-on-tidy-error.t
206 @@ -1,4 +1,4 @@
207 #!/usr/bin/perl
208 -use lib::relative 'lib';
209 +use lib 't/lib';
210 use TestFor::Code::TidyAll::DiffOnTidyError;
211 TestFor::Code::TidyAll::DiffOnTidyError->runtests;
212 --- a/t/parallel.t
213 +++ b/t/parallel.t
214 @@ -1,4 +1,4 @@
215 #!/usr/bin/perl
216 -use lib::relative 'lib';
217 +use lib 't/lib';
218 use TestFor::Code::TidyAll::Parallel;
219 TestFor::Code::TidyAll::Parallel->runtests;
220 --- a/t/spaces-in-paths.t
221 +++ b/t/spaces-in-paths.t
222 @@ -1,4 +1,4 @@
223 #!/usr/bin/perl
224 -use lib::relative 'lib';
225 +use lib 't/lib';
226 use TestFor::Code::TidyAll::SpacesInPaths;
227 TestFor::Code::TidyAll::SpacesInPaths->runtests;
+0
-3
debian/patches/README less more
0 0xx: Backports from newer upstream CVS.
1 1xx: Possibly relevant for upstream adoption.
2 2xx: Only relevant for official Debian release.
+0
-1
debian/patches/series less more
0 2001_avoid_lib::relative.patch