Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/MIME-Lite/files/
Date: Tue, 23 Nov 2021 20:37:21
Message-Id: 1637699613.75810542b1f5a3f7fa76e3d3607c8e8c0a79348d.conikost@gentoo
1 commit: 75810542b1f5a3f7fa76e3d3607c8e8c0a79348d
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Tue Nov 16 16:50:54 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 23 20:33:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75810542
7
8 dev-perl/MIME-Lite: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/22974
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 dev-perl/MIME-Lite/files/3.030-makefilepl.patch | 43 -------------------------
16 1 file changed, 43 deletions(-)
17
18 diff --git a/dev-perl/MIME-Lite/files/3.030-makefilepl.patch b/dev-perl/MIME-Lite/files/3.030-makefilepl.patch
19 deleted file mode 100644
20 index 1fea2f7f53a4..000000000000
21 --- a/dev-perl/MIME-Lite/files/3.030-makefilepl.patch
22 +++ /dev/null
23 @@ -1,43 +0,0 @@
24 -diff -Naur MIME-Lite-3.030/Makefile.PL MIME-Lite-3.030.new/Makefile.PL
25 ---- MIME-Lite-3.030/Makefile.PL 2013-11-04 02:04:48.000000000 +0000
26 -+++ MIME-Lite-3.030.new/Makefile.PL 2016-02-22 10:15:49.107771292 +0000
27 -@@ -5,39 +5,12 @@
28 - #------------------------------------------------------------
29 - # Makefile:
30 - #------------------------------------------------------------
31 --my %extra_prereq = (
32 -- 'Mail::Address' => 1.62,
33 -- 'MIME::Types' => 1.28,
34 -- 'MIME::Base64' => undef,
35 -- 'MIME::QuotedPrint' => undef,
36 --);
37 --
38 --for my $module (sort keys %extra_prereq) {
39 -- local $@;
40 -- my $ok = eval "require $module; \$extra_prereq{\$module} && \$module->VERSION(\$extra_prereq{\$module}); 1";
41 -- delete $extra_prereq{ $module } if $ok;
42 --}
43 --
44 - my %prereq = (
45 - 'File::Spec' => 0,
46 - 'File::Basename' => 0,
47 - 'Email::Date::Format' => '1.000', # first release
48 - );
49 -
50 --if (%extra_prereq) {
51 -- print "MIME::Lite is designed to take advantage of a variety of external modules\n",
52 -- "if they are not present then MIME::Lite will attempt to do its best\n",
53 -- "but its strongly recommend that you install them.\n\n",
54 -- "These modules are:\n",
55 -- (map {; "\t$_\n" } sort keys %extra_prereq),
56 -- "I can add these modules to the prereq list which will cause the files to be\n",
57 -- "automatically installed if they aren't already present\n";
58 --
59 -- if (prompt("Add prereqs?",'Yes')=~/y/i) {
60 -- %prereq = (%prereq, %extra_prereq);
61 -- }
62 --}
63 --
64 - # Write the Makefile:
65 - WriteMakefile(
66 - NAME => 'MIME::Lite',