Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/gnome2-perl/files/, dev-perl/gnome2-perl/
Date: Mon, 17 Aug 2020 08:02:15
Message-Id: 1597651280.1e34e8f2ad19743f21b75c8ae09c6f11a3908e25.kentnl@gentoo
1 commit: 1e34e8f2ad19743f21b75c8ae09c6f11a3908e25
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 17 07:41:44 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 17 08:01:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e34e8f2
7
8 dev-perl/gnome2-perl: Tree clean as per last-rite notice.
9
10 Bug: https://bugs.gentoo.org/726784
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 dev-perl/gnome2-perl/Manifest | 1 -
14 .../files/Gnome2-1.046-no-dot-inc.patch | 355 ---------------------
15 dev-perl/gnome2-perl/gnome2-perl-1.46.0.ebuild | 30 --
16 dev-perl/gnome2-perl/metadata.xml | 13 -
17 4 files changed, 399 deletions(-)
18
19 diff --git a/dev-perl/gnome2-perl/Manifest b/dev-perl/gnome2-perl/Manifest
20 deleted file mode 100644
21 index 85be9d941cc..00000000000
22 --- a/dev-perl/gnome2-perl/Manifest
23 +++ /dev/null
24 @@ -1 +0,0 @@
25 -DIST Gnome2-1.046.tar.gz 80275 BLAKE2B b6586944ccaa3bb899f7438c32b231846fe89062a94f1031a9d1a9085e81286b7f5694569525c885946c02366bf9afc4a05ce81108a6b9471b35c468c9e3877f SHA512 0e4ee564b4514e63c3b66ef72aad6780e79d0f8d0376d7cbb925c579773d96d5fdf0918c90c0e1cc0f4b0be2c2d0043a54ec700361109c6b4b576627ca1d9efd
26
27 diff --git a/dev-perl/gnome2-perl/files/Gnome2-1.046-no-dot-inc.patch b/dev-perl/gnome2-perl/files/Gnome2-1.046-no-dot-inc.patch
28 deleted file mode 100644
29 index 1364a89247e..00000000000
30 --- a/dev-perl/gnome2-perl/files/Gnome2-1.046-no-dot-inc.patch
31 +++ /dev/null
32 @@ -1,355 +0,0 @@
33 -From 6d397faa7006e0f3a67595d317e10d3bb81d8792 Mon Sep 17 00:00:00 2001
34 -From: Kent Fredric <kentnl@g.o>
35 -Date: Sun, 22 Oct 2017 18:50:01 +1300
36 -Subject: Fix tests failing on Perl 5.26 without '.' in @INC
37 -
38 -eg: With PERL_USE_UNSAFE_INC=0 in ENV
39 -
40 -This patch additionally creates safeguards against tests being allowed
41 -to continue if the "do" call fails for any reason, as do does not
42 -auto-fatalize, only warns at best.
43 -
44 -Bug: https://rt.cpan.org/Ticket/Display.html?id=121440
45 -Bug: https://bugs.gentoo.org/616954
46 ----
47 - t/Gnome.t | 4 +++-
48 - t/GnomeApp.t | 4 +++-
49 - t/GnomeAppBar.t | 4 +++-
50 - t/GnomeAppHelper.t | 4 +++-
51 - t/GnomeColorPicker.t | 4 +++-
52 - t/GnomeConfig.t | 4 +++-
53 - t/GnomeDateEdit.t | 4 +++-
54 - t/GnomeDruid.t | 4 +++-
55 - t/GnomeEntry.t | 4 +++-
56 - t/GnomeFileEntry.t | 4 +++-
57 - t/GnomeFontPicker.t | 4 +++-
58 - t/GnomeHRef.t | 4 +++-
59 - t/GnomeIconEntry.t | 4 +++-
60 - t/GnomeIconList.t | 4 +++-
61 - t/GnomeIconSelection.t | 4 +++-
62 - t/GnomeIconTheme.t | 4 +++-
63 - t/GnomePasswordDialog.t | 4 +++-
64 - t/GnomePixmapEntry.t | 4 +++-
65 - t/GnomePopupMenu.t | 4 +++-
66 - t/GnomeScores.t | 4 +++-
67 - t/GnomeThumbnail.t | 4 +++-
68 - 21 files changed, 63 insertions(+), 21 deletions(-)
69 -
70 -diff --git a/t/Gnome.t b/t/Gnome.t
71 -index 8b6d0c5..e62b662 100644
72 ---- a/t/Gnome.t
73 -+++ b/t/Gnome.t
74 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
75 -
76 - SKIP: {
77 - our $application;
78 -- do "t/TestBoilerplate";
79 -+ do "./t/TestBoilerplate";
80 -+ die $@ if $@;
81 -+ die $! if $!;
82 -
83 - #############################################################################
84 -
85 -diff --git a/t/GnomeApp.t b/t/GnomeApp.t
86 -index d7fc143..49420c3 100644
87 ---- a/t/GnomeApp.t
88 -+++ b/t/GnomeApp.t
89 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
90 -
91 - SKIP: {
92 - our $application;
93 -- do "t/TestBoilerplate";
94 -+ do "./t/TestBoilerplate";
95 -+ die $@ if $@;
96 -+ die $! if $!;
97 -
98 - #############################################################################
99 -
100 -diff --git a/t/GnomeAppBar.t b/t/GnomeAppBar.t
101 -index 22ac53d..b127b2c 100644
102 ---- a/t/GnomeAppBar.t
103 -+++ b/t/GnomeAppBar.t
104 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
105 -
106 - SKIP: {
107 - our $application;
108 -- do "t/TestBoilerplate";
109 -+ do "./t/TestBoilerplate";
110 -+ die $@ if $@;
111 -+ die $! if $!;
112 -
113 - #############################################################################
114 -
115 -diff --git a/t/GnomeAppHelper.t b/t/GnomeAppHelper.t
116 -index 849bfe7..5ed6350 100644
117 ---- a/t/GnomeAppHelper.t
118 -+++ b/t/GnomeAppHelper.t
119 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
120 -
121 - SKIP: {
122 - our $application;
123 -- do "t/TestBoilerplate";
124 -+ do "./t/TestBoilerplate";
125 -+ die $@ if $@;
126 -+ die $! if $!;
127 -
128 - #############################################################################
129 -
130 -diff --git a/t/GnomeColorPicker.t b/t/GnomeColorPicker.t
131 -index 7f7fba9..8dcee3e 100644
132 ---- a/t/GnomeColorPicker.t
133 -+++ b/t/GnomeColorPicker.t
134 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
135 -
136 - SKIP: {
137 - our $application;
138 -- do "t/TestBoilerplate";
139 -+ do "./t/TestBoilerplate";
140 -+ die $@ if $@;
141 -+ die $! if $!;
142 -
143 - #############################################################################
144 -
145 -diff --git a/t/GnomeConfig.t b/t/GnomeConfig.t
146 -index 2c42a14..24973be 100644
147 ---- a/t/GnomeConfig.t
148 -+++ b/t/GnomeConfig.t
149 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
150 -
151 - SKIP: {
152 - our $application;
153 -- do "t/TestBoilerplate";
154 -+ do "./t/TestBoilerplate";
155 -+ die $@ if $@;
156 -+ die $! if $!;
157 -
158 - #############################################################################
159 -
160 -diff --git a/t/GnomeDateEdit.t b/t/GnomeDateEdit.t
161 -index a8f2e33..addd98d 100644
162 ---- a/t/GnomeDateEdit.t
163 -+++ b/t/GnomeDateEdit.t
164 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
165 -
166 - SKIP: {
167 - our $application;
168 -- do "t/TestBoilerplate";
169 -+ do "./t/TestBoilerplate";
170 -+ die $@ if $@;
171 -+ die $! if $!;
172 -
173 - #############################################################################
174 -
175 -diff --git a/t/GnomeDruid.t b/t/GnomeDruid.t
176 -index c209004..21a9fdd 100644
177 ---- a/t/GnomeDruid.t
178 -+++ b/t/GnomeDruid.t
179 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
180 -
181 - SKIP: {
182 - our $application;
183 -- do "t/TestBoilerplate";
184 -+ do "./t/TestBoilerplate";
185 -+ die $@ if $@;
186 -+ die $! if $!;
187 -
188 - #############################################################################
189 -
190 -diff --git a/t/GnomeEntry.t b/t/GnomeEntry.t
191 -index c2d2b68..a0aa95a 100644
192 ---- a/t/GnomeEntry.t
193 -+++ b/t/GnomeEntry.t
194 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
195 -
196 - SKIP: {
197 - our $application;
198 -- do "t/TestBoilerplate";
199 -+ do "./t/TestBoilerplate";
200 -+ die $@ if $@;
201 -+ die $! if $!;
202 -
203 - #############################################################################
204 -
205 -diff --git a/t/GnomeFileEntry.t b/t/GnomeFileEntry.t
206 -index 91befa8..1d572a9 100644
207 ---- a/t/GnomeFileEntry.t
208 -+++ b/t/GnomeFileEntry.t
209 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
210 -
211 - SKIP: {
212 - our $application;
213 -- do "t/TestBoilerplate";
214 -+ do "./t/TestBoilerplate";
215 -+ die $@ if $@;
216 -+ die $! if $!;
217 -
218 - #############################################################################
219 -
220 -diff --git a/t/GnomeFontPicker.t b/t/GnomeFontPicker.t
221 -index a2e8e68..98520db 100644
222 ---- a/t/GnomeFontPicker.t
223 -+++ b/t/GnomeFontPicker.t
224 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
225 -
226 - SKIP: {
227 - our $application;
228 -- do "t/TestBoilerplate";
229 -+ do "./t/TestBoilerplate";
230 -+ die $@ if $@;
231 -+ die $! if $!;
232 -
233 - #############################################################################
234 -
235 -diff --git a/t/GnomeHRef.t b/t/GnomeHRef.t
236 -index 256347b..484fa61 100644
237 ---- a/t/GnomeHRef.t
238 -+++ b/t/GnomeHRef.t
239 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
240 -
241 - SKIP: {
242 - our $application;
243 -- do "t/TestBoilerplate";
244 -+ do "./t/TestBoilerplate";
245 -+ die $@ if $@;
246 -+ die $! if $!;
247 -
248 - #############################################################################
249 -
250 -diff --git a/t/GnomeIconEntry.t b/t/GnomeIconEntry.t
251 -index 35ef1e6..957efc0 100644
252 ---- a/t/GnomeIconEntry.t
253 -+++ b/t/GnomeIconEntry.t
254 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
255 -
256 - SKIP: {
257 - our $application;
258 -- do "t/TestBoilerplate";
259 -+ do "./t/TestBoilerplate";
260 -+ die $@ if $@;
261 -+ die $! if $!;
262 -
263 - #############################################################################
264 -
265 -diff --git a/t/GnomeIconList.t b/t/GnomeIconList.t
266 -index 2bf9eb1..8067a70 100644
267 ---- a/t/GnomeIconList.t
268 -+++ b/t/GnomeIconList.t
269 -@@ -11,7 +11,9 @@ use Test::More skip_all => "Seems to be broken", tests => TESTS;
270 -
271 - SKIP: {
272 - our $application;
273 -- do "t/TestBoilerplate";
274 -+ do "./t/TestBoilerplate";
275 -+ die $@ if $@;
276 -+ die $! if $!;
277 -
278 - #############################################################################
279 -
280 -diff --git a/t/GnomeIconSelection.t b/t/GnomeIconSelection.t
281 -index 35117c9..566ae85 100644
282 ---- a/t/GnomeIconSelection.t
283 -+++ b/t/GnomeIconSelection.t
284 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
285 -
286 - SKIP: {
287 - our $application;
288 -- do "t/TestBoilerplate";
289 -+ do "./t/TestBoilerplate";
290 -+ die $@ if $@;
291 -+ die $! if $!;
292 -
293 - #############################################################################
294 -
295 -diff --git a/t/GnomeIconTheme.t b/t/GnomeIconTheme.t
296 -index 9baeb4c..dda3582 100644
297 ---- a/t/GnomeIconTheme.t
298 -+++ b/t/GnomeIconTheme.t
299 -@@ -13,7 +13,9 @@ Gnome2::VFS -> init();
300 -
301 - SKIP: {
302 - our $application;
303 -- do "t/TestBoilerplate";
304 -+ do "./t/TestBoilerplate";
305 -+ die $@ if $@;
306 -+ die $! if $!;
307 -
308 - skip("GnomeIconTheme is new in 2.0.6", TESTS)
309 - unless (Gnome2 -> CHECK_VERSION(2, 0, 6));
310 -diff --git a/t/GnomePasswordDialog.t b/t/GnomePasswordDialog.t
311 -index 51c548c..38b2dcb 100644
312 ---- a/t/GnomePasswordDialog.t
313 -+++ b/t/GnomePasswordDialog.t
314 -@@ -10,7 +10,9 @@ use Test::More tests => TESTS;
315 - ###############################################################################
316 -
317 - SKIP: {
318 -- do "t/TestBoilerplate";
319 -+ do "./t/TestBoilerplate";
320 -+ die $@ if $@;
321 -+ die $! if $!;
322 -
323 - skip("GnomePasswordDialog and GnomeAuthenticationManager didn't appear until 2.4.0", TESTS)
324 - unless (Gnome2 -> CHECK_VERSION(2, 4, 0));
325 -diff --git a/t/GnomePixmapEntry.t b/t/GnomePixmapEntry.t
326 -index 17e4996..dbfe42c 100644
327 ---- a/t/GnomePixmapEntry.t
328 -+++ b/t/GnomePixmapEntry.t
329 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
330 -
331 - SKIP: {
332 - our $application;
333 -- do "t/TestBoilerplate";
334 -+ do "./t/TestBoilerplate";
335 -+ die $@ if $@;
336 -+ die $! if $!;
337 -
338 - #############################################################################
339 -
340 -diff --git a/t/GnomePopupMenu.t b/t/GnomePopupMenu.t
341 -index 20275c9..151f410 100644
342 ---- a/t/GnomePopupMenu.t
343 -+++ b/t/GnomePopupMenu.t
344 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
345 -
346 - SKIP: {
347 - our $application;
348 -- do "t/TestBoilerplate";
349 -+ do "./t/TestBoilerplate";
350 -+ die $@ if $@;
351 -+ die $! if $!;
352 -
353 - #############################################################################
354 -
355 -diff --git a/t/GnomeScores.t b/t/GnomeScores.t
356 -index 1b21ab2..82aa3a3 100644
357 ---- a/t/GnomeScores.t
358 -+++ b/t/GnomeScores.t
359 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
360 -
361 - SKIP: {
362 - our $application;
363 -- do "t/TestBoilerplate";
364 -+ do "./t/TestBoilerplate";
365 -+ die $@ if $@;
366 -+ die $! if $!;
367 -
368 - #############################################################################
369 -
370 -diff --git a/t/GnomeThumbnail.t b/t/GnomeThumbnail.t
371 -index ec0095f..ba24928 100644
372 ---- a/t/GnomeThumbnail.t
373 -+++ b/t/GnomeThumbnail.t
374 -@@ -11,7 +11,9 @@ use Test::More tests => TESTS;
375 -
376 - SKIP: {
377 - our $application;
378 -- do "t/TestBoilerplate";
379 -+ do "./t/TestBoilerplate";
380 -+ die $@ if $@;
381 -+ die $! if $!;
382 -
383 - skip("GnomeThumbnail is new in 2.0.6", 4)
384 - unless (Gnome2 -> CHECK_VERSION(2, 0, 6));
385 ---
386 -2.14.2
387 -
388
389 diff --git a/dev-perl/gnome2-perl/gnome2-perl-1.46.0.ebuild b/dev-perl/gnome2-perl/gnome2-perl-1.46.0.ebuild
390 deleted file mode 100644
391 index 5b6bca45beb..00000000000
392 --- a/dev-perl/gnome2-perl/gnome2-perl-1.46.0.ebuild
393 +++ /dev/null
394 @@ -1,30 +0,0 @@
395 -# Copyright 1999-2020 Gentoo Authors
396 -# Distributed under the terms of the GNU General Public License v2
397 -
398 -EAPI=6
399 -
400 -DIST_NAME=Gnome2
401 -DIST_AUTHOR=XAOC
402 -DIST_VERSION=1.046
403 -inherit perl-module
404 -
405 -DESCRIPTION="Perl interface to the 2.x series of the Gnome libraries"
406 -HOMEPAGE="http://gtk2-perl.sourceforge.net/ https://metacpan.org/release/Gnome2"
407 -
408 -LICENSE="LGPL-2.1"
409 -SLOT="0"
410 -KEYWORDS="~alpha amd64 x86"
411 -IUSE=""
412 -
413 -RDEPEND="x11-libs/gtk+:2
414 - dev-perl/Gtk2
415 - gnome-base/libgnomeui
416 - gnome-base/libbonoboui
417 - dev-perl/gnome2-canvas
418 - >=dev-perl/glib-perl-1.40.0
419 - dev-perl/gnome2-vfs-perl"
420 -DEPEND="${RDEPEND}
421 - dev-perl/ExtUtils-Depends
422 - dev-perl/ExtUtils-PkgConfig"
423 -
424 -PATCHES=( "${FILESDIR}/${DIST_NAME}-${DIST_VERSION}-no-dot-inc.patch" )
425
426 diff --git a/dev-perl/gnome2-perl/metadata.xml b/dev-perl/gnome2-perl/metadata.xml
427 deleted file mode 100644
428 index cf4fe7a1677..00000000000
429 --- a/dev-perl/gnome2-perl/metadata.xml
430 +++ /dev/null
431 @@ -1,13 +0,0 @@
432 -<?xml version="1.0" encoding="UTF-8"?>
433 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
434 -<pkgmetadata>
435 - <maintainer type="project">
436 - <email>perl@g.o</email>
437 - <name>Gentoo Perl Project</name>
438 - </maintainer>
439 - <upstream>
440 - <remote-id type="cpan">Gnome2</remote-id>
441 - <remote-id type="cpan-module">Gnome2</remote-id>
442 - <remote-id type="sourceforge">gtk2-perl</remote-id>
443 - </upstream>
444 -</pkgmetadata>