Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-SearchBuilder/files/
Date: Thu, 26 Aug 2021 22:32:49
Message-Id: 1630017153.f7dc84f6867807c62b27c814d0f6baf75dd778e9.sam@gentoo
1 commit: f7dc84f6867807c62b27c814d0f6baf75dd778e9
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Wed Aug 25 14:38:19 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 26 22:32:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7dc84f6
7
8 dev-perl/DBIx-SearchBuilder: remove unused patch
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 .../files/DBIx-SearchBuilder-1.66-no-dot-inc.patch | 341 ---------------------
15 1 file changed, 341 deletions(-)
16
17 diff --git a/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch b/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch
18 deleted file mode 100644
19 index 93ccd89c28e..00000000000
20 --- a/dev-perl/DBIx-SearchBuilder/files/DBIx-SearchBuilder-1.66-no-dot-inc.patch
21 +++ /dev/null
22 @@ -1,341 +0,0 @@
23 -From 859d5403887df584af7e88e7bea7899ea6549fd0 Mon Sep 17 00:00:00 2001
24 -From: Kent Fredric <kentfredric@×××××.com>
25 -Date: Sun, 25 Jun 2017 19:16:42 +1200
26 -Subject: Fix for '.' removal from @INC in Perl 5.26
27 -
28 -Bug: https://rt.cpan.org/Ticket/Display.html?id=121140
29 -Bug: https://bugs.gentoo.org/615602
30 -Bug: https://github.com/bestpractical/dbix-searchbuilder/pull/5
31 ----
32 - Makefile.PL | 1 +
33 - t/01basics.t | 2 +-
34 - t/01nocap_api.t | 2 +-
35 - t/01records.t | 2 +-
36 - t/01searches.t | 2 +-
37 - t/02distinct_values.t | 2 +-
38 - t/02null_order.t | 2 +-
39 - t/02order_outer.t | 2 +-
40 - t/02records_cachable.t | 2 +-
41 - t/02records_datetime.t | 2 +-
42 - t/02records_dt_interval.t | 2 +-
43 - t/02records_integers.t | 2 +-
44 - t/02records_object.t | 2 +-
45 - t/02searches_function.t | 2 +-
46 - t/02searches_joins.t | 2 +-
47 - t/03compatibility.t | 2 +-
48 - t/03cud_from_select.t | 2 +-
49 - t/03rebless.t | 2 +-
50 - t/03transactions.t | 2 +-
51 - t/03versions.t | 2 +-
52 - t/10schema.t | 4 ++--
53 - t/11schema_records.t | 2 +-
54 - t/20set_edge_cases.t | 2 +-
55 - 23 files changed, 24 insertions(+), 23 deletions(-)
56 -
57 -diff --git a/Makefile.PL b/Makefile.PL
58 -index 49ec3f0..837f26f 100755
59 ---- a/Makefile.PL
60 -+++ b/Makefile.PL
61 -@@ -1,3 +1,4 @@
62 -+use lib '.';
63 - use inc::Module::Install;
64 -
65 - name ('DBIx-SearchBuilder');
66 -diff --git a/t/01basics.t b/t/01basics.t
67 -index a46ede6..f0c18df 100644
68 ---- a/t/01basics.t
69 -+++ b/t/01basics.t
70 -@@ -3,7 +3,7 @@
71 - use strict;
72 -
73 - use Test::More;
74 --BEGIN { require "t/utils.pl" }
75 -+BEGIN { require "./t/utils.pl" }
76 - our (@AvailableDrivers);
77 -
78 - use constant TESTS_PER_DRIVER => 4;
79 -diff --git a/t/01nocap_api.t b/t/01nocap_api.t
80 -index 1ea417e..be45395 100644
81 ---- a/t/01nocap_api.t
82 -+++ b/t/01nocap_api.t
83 -@@ -3,7 +3,7 @@
84 - use strict;
85 -
86 - use Test::More;
87 --BEGIN { require "t/utils.pl" }
88 -+BEGIN { require "./t/utils.pl" }
89 -
90 - use vars qw(@SPEC_METHODS @MODULES);
91 - my @SPEC_METHODS = qw(AUTOLOAD DESTROY CLONE);
92 -diff --git a/t/01records.t b/t/01records.t
93 -index a1f1366..d701e94 100644
94 ---- a/t/01records.t
95 -+++ b/t/01records.t
96 -@@ -4,7 +4,7 @@
97 - use strict;
98 - use warnings;
99 - use Test::More;
100 --BEGIN { require "t/utils.pl" }
101 -+BEGIN { require "./t/utils.pl" }
102 - our (@AvailableDrivers);
103 -
104 - use constant TESTS_PER_DRIVER => 66;
105 -diff --git a/t/01searches.t b/t/01searches.t
106 -index 83a2001..1276544 100644
107 ---- a/t/01searches.t
108 -+++ b/t/01searches.t
109 -@@ -4,7 +4,7 @@
110 - use strict;
111 - use warnings;
112 - use Test::More;
113 --BEGIN { require "t/utils.pl" }
114 -+BEGIN { require "./t/utils.pl" }
115 - our (@AvailableDrivers);
116 -
117 - use constant TESTS_PER_DRIVER => 150;
118 -diff --git a/t/02distinct_values.t b/t/02distinct_values.t
119 -index f20328d..826db21 100644
120 ---- a/t/02distinct_values.t
121 -+++ b/t/02distinct_values.t
122 -@@ -4,7 +4,7 @@
123 - use strict;
124 - use warnings;
125 - use Test::More;
126 --BEGIN { require "t/utils.pl" }
127 -+BEGIN { require "./t/utils.pl" }
128 - our (@AvailableDrivers);
129 -
130 - use constant TESTS_PER_DRIVER => 9;
131 -diff --git a/t/02null_order.t b/t/02null_order.t
132 -index 9feda47..fab111d 100644
133 ---- a/t/02null_order.t
134 -+++ b/t/02null_order.t
135 -@@ -4,7 +4,7 @@
136 - use strict;
137 - use warnings;
138 - use Test::More;
139 --BEGIN { require "t/utils.pl" }
140 -+BEGIN { require "./t/utils.pl" }
141 - our (@AvailableDrivers);
142 -
143 - use constant TESTS_PER_DRIVER => 11;
144 -diff --git a/t/02order_outer.t b/t/02order_outer.t
145 -index 08a236b..14a39fe 100644
146 ---- a/t/02order_outer.t
147 -+++ b/t/02order_outer.t
148 -@@ -4,7 +4,7 @@
149 - use strict;
150 - use warnings;
151 - use Test::More;
152 --BEGIN { require "t/utils.pl" }
153 -+BEGIN { require "./t/utils.pl" }
154 - our (@AvailableDrivers);
155 -
156 - use constant TESTS_PER_DRIVER => 98;
157 -diff --git a/t/02records_cachable.t b/t/02records_cachable.t
158 -index cdbb9da..9418990 100644
159 ---- a/t/02records_cachable.t
160 -+++ b/t/02records_cachable.t
161 -@@ -4,7 +4,7 @@
162 - use strict;
163 - use warnings;
164 - use Test::More;
165 --BEGIN { require "t/utils.pl" }
166 -+BEGIN { require "./t/utils.pl" }
167 - our (@AvailableDrivers);
168 -
169 - use constant TESTS_PER_DRIVER => 16;
170 -diff --git a/t/02records_datetime.t b/t/02records_datetime.t
171 -index f1a0d7a..6882729 100644
172 ---- a/t/02records_datetime.t
173 -+++ b/t/02records_datetime.t
174 -@@ -5,7 +5,7 @@ BEGIN { $ENV{'TZ'} = 'Europe/Moscow' };
175 - use strict;
176 - use warnings;
177 - use Test::More;
178 --BEGIN { require "t/utils.pl" }
179 -+BEGIN { require "./t/utils.pl" }
180 - our (@AvailableDrivers);
181 -
182 - use constant TESTS_PER_DRIVER => 38;
183 -diff --git a/t/02records_dt_interval.t b/t/02records_dt_interval.t
184 -index ef1ead3..283746f 100644
185 ---- a/t/02records_dt_interval.t
186 -+++ b/t/02records_dt_interval.t
187 -@@ -5,7 +5,7 @@ BEGIN { $ENV{'TZ'} = 'Europe/Moscow' };
188 - use strict;
189 - use warnings;
190 - use Test::More;
191 --BEGIN { require "t/utils.pl" }
192 -+BEGIN { require "./t/utils.pl" }
193 - our (@AvailableDrivers);
194 -
195 - use constant TESTS_PER_DRIVER => 17;
196 -diff --git a/t/02records_integers.t b/t/02records_integers.t
197 -index d13e2ee..95b8504 100644
198 ---- a/t/02records_integers.t
199 -+++ b/t/02records_integers.t
200 -@@ -3,7 +3,7 @@
201 - use strict;
202 - use warnings;
203 - use Test::More;
204 --BEGIN { require "t/utils.pl" }
205 -+BEGIN { require "./t/utils.pl" }
206 - our (@AvailableDrivers);
207 -
208 - use constant TESTS_PER_DRIVER => 37;
209 -diff --git a/t/02records_object.t b/t/02records_object.t
210 -index 18c724e..34576db 100644
211 ---- a/t/02records_object.t
212 -+++ b/t/02records_object.t
213 -@@ -5,7 +5,7 @@ use strict;
214 - use warnings;
215 - use Test::More;
216 -
217 --BEGIN { require "t/utils.pl" }
218 -+BEGIN { require "./t/utils.pl" }
219 - our (@AvailableDrivers);
220 -
221 - use constant TESTS_PER_DRIVER => 11;
222 -diff --git a/t/02searches_function.t b/t/02searches_function.t
223 -index 2fd6e7e..c8682de 100644
224 ---- a/t/02searches_function.t
225 -+++ b/t/02searches_function.t
226 -@@ -3,7 +3,7 @@
227 - use strict;
228 - use Test::More;
229 -
230 --BEGIN { require "t/utils.pl" }
231 -+BEGIN { require "./t/utils.pl" }
232 - our (@AvailableDrivers);
233 -
234 - use constant TESTS_PER_DRIVER => 18;
235 -diff --git a/t/02searches_joins.t b/t/02searches_joins.t
236 -index 1661f2b..cbdc3c9 100644
237 ---- a/t/02searches_joins.t
238 -+++ b/t/02searches_joins.t
239 -@@ -3,7 +3,7 @@
240 - use strict;
241 - use Test::More;
242 -
243 --BEGIN { require "t/utils.pl" }
244 -+BEGIN { require "./t/utils.pl" }
245 - our (@AvailableDrivers);
246 -
247 - use constant TESTS_PER_DRIVER => 59;
248 -diff --git a/t/03compatibility.t b/t/03compatibility.t
249 -index 14eb382..3939503 100644
250 ---- a/t/03compatibility.t
251 -+++ b/t/03compatibility.t
252 -@@ -4,7 +4,7 @@
253 - use strict;
254 - use warnings;
255 - use Test::More;
256 --BEGIN { require "t/utils.pl" }
257 -+BEGIN { require "./t/utils.pl" }
258 - our (@AvailableDrivers);
259 -
260 - use constant TESTS_PER_DRIVER => 2;
261 -diff --git a/t/03cud_from_select.t b/t/03cud_from_select.t
262 -index 7f5d21b..2f324b7 100644
263 ---- a/t/03cud_from_select.t
264 -+++ b/t/03cud_from_select.t
265 -@@ -3,7 +3,7 @@
266 - use strict;
267 - use Test::More;
268 -
269 --BEGIN { require "t/utils.pl" }
270 -+BEGIN { require "./t/utils.pl" }
271 - our (@AvailableDrivers);
272 -
273 - use constant TESTS_PER_DRIVER => 14;
274 -diff --git a/t/03rebless.t b/t/03rebless.t
275 -index 888bb94..467cf00 100644
276 ---- a/t/03rebless.t
277 -+++ b/t/03rebless.t
278 -@@ -6,7 +6,7 @@ use warnings;
279 - use Test::More;
280 - use DBIx::SearchBuilder::Handle;
281 -
282 --BEGIN { require "t/utils.pl" }
283 -+BEGIN { require "./t/utils.pl" }
284 - our (@AvailableDrivers);
285 -
286 - use constant TESTS_PER_DRIVER => 4;
287 -diff --git a/t/03transactions.t b/t/03transactions.t
288 -index e641c19..ef0f973 100644
289 ---- a/t/03transactions.t
290 -+++ b/t/03transactions.t
291 -@@ -4,7 +4,7 @@
292 - use strict;
293 - use warnings;
294 - use Test::More;
295 --BEGIN { require "t/utils.pl" }
296 -+BEGIN { require "./t/utils.pl" }
297 - our (@AvailableDrivers);
298 -
299 - use constant TESTS_PER_DRIVER => 52;
300 -diff --git a/t/03versions.t b/t/03versions.t
301 -index 79bb2e9..4acba37 100644
302 ---- a/t/03versions.t
303 -+++ b/t/03versions.t
304 -@@ -5,7 +5,7 @@ use warnings;
305 - use Test::More;
306 - use DBIx::SearchBuilder::Handle;
307 -
308 --BEGIN { require "t/utils.pl" }
309 -+BEGIN { require "./t/utils.pl" }
310 - our (@AvailableDrivers);
311 -
312 - use constant TESTS_PER_DRIVER => 6;
313 -diff --git a/t/10schema.t b/t/10schema.t
314 -index 2ff5ab6..fcf1a7b 100644
315 ---- a/t/10schema.t
316 -+++ b/t/10schema.t
317 -@@ -8,7 +8,7 @@ use constant TESTS_PER_DRIVER => 14;
318 - our @AvailableDrivers;
319 -
320 - BEGIN {
321 -- require("t/utils.pl");
322 -+ require("./t/utils.pl");
323 - my $total = 3 + scalar(@AvailableDrivers) * TESTS_PER_DRIVER;
324 - if( not eval { require DBIx::DBSchema } ) {
325 - plan skip_all => "DBIx::DBSchema not installed";
326 -@@ -22,7 +22,7 @@ BEGIN {
327 - use_ok("DBIx::SearchBuilder::Handle");
328 - }
329 -
330 --require_ok("t/testmodels.pl");
331 -+require_ok("./t/testmodels.pl");
332 -
333 - foreach my $d ( @AvailableDrivers ) {
334 - SKIP: {
335 -diff --git a/t/11schema_records.t b/t/11schema_records.t
336 -index 4fc4dc4..a586cda 100644
337 ---- a/t/11schema_records.t
338 -+++ b/t/11schema_records.t
339 -@@ -5,7 +5,7 @@ use strict;
340 - use warnings;
341 - use Test::More;
342 -
343 --BEGIN { require "t/utils.pl" }
344 -+BEGIN { require "./t/utils.pl" }
345 - our (@AvailableDrivers);
346 -
347 - use constant TESTS_PER_DRIVER => 63;
348 -diff --git a/t/20set_edge_cases.t b/t/20set_edge_cases.t
349 -index 943f76a..d22b1ee 100644
350 ---- a/t/20set_edge_cases.t
351 -+++ b/t/20set_edge_cases.t
352 -@@ -3,7 +3,7 @@
353 - use strict;
354 - use warnings;
355 - use Test::More;
356 --BEGIN { require "t/utils.pl" }
357 -+BEGIN { require "./t/utils.pl" }
358 - our (@AvailableDrivers);
359 -
360 - use constant TESTS_PER_DRIVER => 20;
361 ---
362 -2.14.1
363 -