Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/grepmail/files/, net-mail/grepmail/
Date: Sat, 02 Jul 2022 21:59:55
Message-Id: 1656799176.ac81de14378c6f9635daec00f663011b72de712a.sam@gentoo
1 commit: ac81de14378c6f9635daec00f663011b72de712a
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 21:59:36 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 21:59:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac81de14
7
8 net-mail/grepmail: drop 5.30.33-r2
9
10 Closes: https://bugs.gentoo.org/430128
11 Closes: https://bugs.gentoo.org/635756
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-mail/grepmail/Manifest | 1 -
15 .../5.30.33-fix_nonexistent_mailbox_test.patch | 33 ----------------
16 net-mail/grepmail/files/5.30.33-midnight.patch | 17 ---------
17 net-mail/grepmail/grepmail-5.30.33-r2.ebuild | 44 ----------------------
18 4 files changed, 95 deletions(-)
19
20 diff --git a/net-mail/grepmail/Manifest b/net-mail/grepmail/Manifest
21 index d2fa605992b3..452947fda8de 100644
22 --- a/net-mail/grepmail/Manifest
23 +++ b/net-mail/grepmail/Manifest
24 @@ -1,2 +1 @@
25 -DIST grepmail-5.3033.tar.gz 536791 BLAKE2B 400cc3c30a291f6075d343522a4f506997e3328c2adda2cfa7d4449052ce5bd6112fc06a44f8359def6358c716422b5c33353c7247dd6b5cf6c5a0502a2c34d6 SHA512 58fb63c42b534ba32d8224753cd11701adc3ab6eeca838753982cd6fdc46c05142eeb34106ae585b48698c299648cc2e0135215900ce28dd7c84921c8ad7831f
26 DIST grepmail-5.3111.tar.gz 560547 BLAKE2B 88c9e841aed419ae428c45dd9a1bfb294076d73a3635e06b50a1f5b3bb3d2d447a8c586054b80ad793ccd6b2b2cb16394486d044f988c5760c04f9fe2da0e73e SHA512 50df6585ecebb838a2b60c048e66588d7a161a88256ffce2c7313e61d32751739b3c30a64deb43dcd2a5933970cacc812fbb2dbd9f91a8ac34012e0581cd2962
27
28 diff --git a/net-mail/grepmail/files/5.30.33-fix_nonexistent_mailbox_test.patch b/net-mail/grepmail/files/5.30.33-fix_nonexistent_mailbox_test.patch
29 deleted file mode 100644
30 index cdab28bb635c..000000000000
31 --- a/net-mail/grepmail/files/5.30.33-fix_nonexistent_mailbox_test.patch
32 +++ /dev/null
33 @@ -1,33 +0,0 @@
34 -Description: Fix FTBFS with libmail-mbox-messageparser-perl 1.5002
35 - From 1.5002, it does not return "No data on standard input" anymore.
36 -Author: Vincent Legout <vincent@××××××.info>
37 -Last-Update: 2010-04-28
38 -Bug-Debian: http://bugs.debian.org/549782
39 -Bug-Gentoo: https://bugs.gentoo.org/296657
40 -
41 ---- grepmail/t/nonexistent_mailbox.t
42 -+++ grepmail/t/nonexistent_mailbox.t
43 -@@ -13,21 +13,15 @@
44 - => ['none','no_such_file'],
45 - "$^X -MExtUtils::Command -e cat no_such_file 2>" . devnull() .
46 - " | grepmail pattern"
47 -- => ['none','no_data'],
48 -+ => ['none','none'],
49 - "grepmail -E $single_quote\$email =~ /pattern/$single_quote no_such_file"
50 - => ['none','no_such_file'],
51 - "$^X -MExtUtils::Command -e cat no_such_file 2>" . devnull() .
52 - " | grepmail -E $single_quote\$email =~ /pattern/$single_quote"
53 -- => ['none','no_data'],
54 -+ => ['none','none'],
55 - );
56 -
57 - my %expected_errors = (
58 --"$^X -MExtUtils::Command -e cat no_such_file 2>" . devnull() .
59 -- " | grepmail pattern"
60 -- => 1,
61 --"$^X -MExtUtils::Command -e cat no_such_file 2>" . devnull() .
62 -- " | grepmail -E $single_quote\$email =~ /pattern/$single_quote"
63 -- => 1,
64 - );
65 -
66 - my %localization = (
67
68 diff --git a/net-mail/grepmail/files/5.30.33-midnight.patch b/net-mail/grepmail/files/5.30.33-midnight.patch
69 deleted file mode 100644
70 index d861774df81a..000000000000
71 --- a/net-mail/grepmail/files/5.30.33-midnight.patch
72 +++ /dev/null
73 @@ -1,17 +0,0 @@
74 -Description: Fix bug with midnight
75 -Author: Manuel Prinz <manuel@××××××.org>
76 -Last-Update: 2010-02-22
77 -Bug-Debian: http://bugs.debian.org/559588
78 -Bug-Gentoo: https://bugs.gentoo.org/355067
79 -
80 ---- grepmail/grepmail
81 -+++ grepmail/grepmail
82 -@@ -397,7 +397,7 @@
83 - if (eval 'require Date::Manip')
84 - {
85 - my ($version_number) = $Date::Manip::VERSION =~ /^(\d+\.\d+)/;
86 -- Date::Manip::Date_Init("TodayIsMidnight=1") if $version_number >= 5.43;
87 -+ Date::Manip::Date_Init("TodayIsMidnight=1") if $version_number >= 5.43 and $version_number < 6;
88 - }
89 - }
90 -
91
92 diff --git a/net-mail/grepmail/grepmail-5.30.33-r2.ebuild b/net-mail/grepmail/grepmail-5.30.33-r2.ebuild
93 deleted file mode 100644
94 index c02c6360e139..000000000000
95 --- a/net-mail/grepmail/grepmail-5.30.33-r2.ebuild
96 +++ /dev/null
97 @@ -1,44 +0,0 @@
98 -# Copyright 1999-2019 Gentoo Authors
99 -# Distributed under the terms of the GNU General Public License v2
100 -
101 -EAPI=6
102 -
103 -inherit versionator perl-module
104 -
105 -MY_P="${PN}-$(delete_version_separator 2)"
106 -S="${WORKDIR}/${MY_P}"
107 -
108 -DESCRIPTION="Search normal or compressed mailbox using a regular expression or dates"
109 -HOMEPAGE="https://github.com/coppit/grepmail"
110 -SRC_URI="mirror://sourceforge/grepmail/${MY_P}.tar.gz"
111 -
112 -SLOT="0"
113 -LICENSE="GPL-2"
114 -KEYWORDS="amd64 ppc x86"
115 -IUSE="test"
116 -RESTRICT="!test? ( test )"
117 -
118 -RDEPEND="
119 - dev-perl/Inline
120 - dev-perl/TimeDate
121 - dev-perl/Date-Manip
122 - virtual/perl-Digest-MD5
123 - >=dev-perl/Mail-Mbox-MessageParser-1.40.01
124 -"
125 -DEPEND="${RDEPEND}
126 -"
127 -# test? ( dev-perl/Mail-Mbox-MessageParser )
128 -
129 -# 100% failure on running
130 -DIST_TEST="skip"
131 -
132 -PATCHES=(
133 - "${FILESDIR}"/5.30.33-fix_nonexistent_mailbox_test.patch
134 - "${FILESDIR}"/5.30.33-midnight.patch
135 -)
136 -
137 -src_prepare() {
138 - sed -i -e 's/use inc::Module::Install/use lib q[.]; use inc::Module::Install/' Makefile.PL ||
139 - die "Can't patch Makefile.PL for 5.26 dot-in-inc"
140 - perl-module_src_prepare
141 -}