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/
Date: Fri, 28 Jan 2022 07:54:02
Message-Id: 1643356412.d4b59f063a05e65f354e4256582dfa2a4d3f8c15.sam@gentoo
1 commit: d4b59f063a05e65f354e4256582dfa2a4d3f8c15
2 Author: Philipp Rösner <rndxelement <AT> protonmail <DOT> com>
3 AuthorDate: Sun Jan 23 22:50:36 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 07:53:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b59f06
7
8 net-mail/grepmail: version bump to 5.3111
9
10 We added an ebuild for grepmail-5.3111 with support for EAPI 8.
11 The new ebuild doesn't need patches, it uses a source from CTAN and the
12 tests are working now.
13
14 Closes: https://bugs.gentoo.org/494350
15 Package-Manager: Portage-3.0.30, Repoman-3.0.3
16 Signed-off-by: Philipp Roesner <rndxelement <AT> protonmail.com>
17 Closes: https://github.com/gentoo/gentoo/pull/23936
18 Signed-off-by: Sam James <sam <AT> gentoo.org>
19
20 net-mail/grepmail/Manifest | 1 +
21 net-mail/grepmail/grepmail-5.3111.ebuild | 36 ++++++++++++++++++++++++++++++++
22 2 files changed, 37 insertions(+)
23
24 diff --git a/net-mail/grepmail/Manifest b/net-mail/grepmail/Manifest
25 index 3e7e1bb7fc14..d2fa605992b3 100644
26 --- a/net-mail/grepmail/Manifest
27 +++ b/net-mail/grepmail/Manifest
28 @@ -1 +1,2 @@
29 DIST grepmail-5.3033.tar.gz 536791 BLAKE2B 400cc3c30a291f6075d343522a4f506997e3328c2adda2cfa7d4449052ce5bd6112fc06a44f8359def6358c716422b5c33353c7247dd6b5cf6c5a0502a2c34d6 SHA512 58fb63c42b534ba32d8224753cd11701adc3ab6eeca838753982cd6fdc46c05142eeb34106ae585b48698c299648cc2e0135215900ce28dd7c84921c8ad7831f
30 +DIST grepmail-5.3111.tar.gz 560547 BLAKE2B 88c9e841aed419ae428c45dd9a1bfb294076d73a3635e06b50a1f5b3bb3d2d447a8c586054b80ad793ccd6b2b2cb16394486d044f988c5760c04f9fe2da0e73e SHA512 50df6585ecebb838a2b60c048e66588d7a161a88256ffce2c7313e61d32751739b3c30a64deb43dcd2a5933970cacc812fbb2dbd9f91a8ac34012e0581cd2962
31
32 diff --git a/net-mail/grepmail/grepmail-5.3111.ebuild b/net-mail/grepmail/grepmail-5.3111.ebuild
33 new file mode 100644
34 index 000000000000..b64820f1bd52
35 --- /dev/null
36 +++ b/net-mail/grepmail/grepmail-5.3111.ebuild
37 @@ -0,0 +1,36 @@
38 +# Copyright 1999-2022 Gentoo Authors
39 +# Distributed under the terms of the GNU General Public License v2
40 +
41 +EAPI=8
42 +
43 +inherit perl-module
44 +
45 +DESCRIPTION="Search normal or compressed mailbox using a regular expression or dates"
46 +HOMEPAGE="https://github.com/coppit/grepmail"
47 +SRC_URI="mirror://cpan/authors/id/D/DC/DCOPPIT/${P}.tar.gz"
48 +
49 +SLOT="0"
50 +LICENSE="GPL-2"
51 +KEYWORDS="~amd64 ~ppc ~x86"
52 +IUSE="test"
53 +RESTRICT="!test? ( test )"
54 +
55 +RDEPEND="
56 + dev-perl/Date-Manip
57 + dev-perl/File-HomeDir
58 + dev-perl/Inline
59 + >=dev-perl/Mail-Mbox-MessageParser-1.40.01
60 + dev-perl/TimeDate
61 + virtual/perl-Digest-MD5
62 +"
63 +DEPEND="${RDEPEND}
64 + test? (
65 + dev-perl/Test-Compile
66 + dev-perl/Test-Pod
67 + dev-perl/Test-Pod-Coverage
68 + )
69 +"
70 +
71 +src_prepare() {
72 + perl-module_src_prepare
73 +}