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/Email-Address-List/, dev-perl/Email-Address-List/files/
Date: Fri, 07 Aug 2020 20:32:23
Message-Id: 1596832293.8b47f084d6c53877fa15e020fbbdbaa83271f333.kentnl@gentoo
1 commit: 8b47f084d6c53877fa15e020fbbdbaa83271f333
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 7 20:31:33 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 7 20:31:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b47f084
7
8 dev-perl/Email-Address-List: -r bump for EAPI7 + fixes
9
10 - EAPI7
11 - Fix LICENSE
12 - Migrate sed hack to a patch
13
14 Package-Manager: Portage-2.3.103, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../Email-Address-List-0.60.0-r1.ebuild | 26 ++++++++++++++++++++++
18 .../files/Email-Address-List-0.06-no-dot-inc.patch | 21 +++++++++++++++++
19 2 files changed, 47 insertions(+)
20
21 diff --git a/dev-perl/Email-Address-List/Email-Address-List-0.60.0-r1.ebuild b/dev-perl/Email-Address-List/Email-Address-List-0.60.0-r1.ebuild
22 new file mode 100644
23 index 00000000000..3692f91eea1
24 --- /dev/null
25 +++ b/dev-perl/Email-Address-List/Email-Address-List-0.60.0-r1.ebuild
26 @@ -0,0 +1,26 @@
27 +# Copyright 1999-2020 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DIST_AUTHOR=BPS
33 +DIST_VERSION=0.06
34 +inherit perl-module
35 +
36 +DESCRIPTION="RFC close address list parsing"
37 +SLOT="0"
38 +KEYWORDS="~amd64"
39 +IUSE="test"
40 +RESTRICT="!test? ( test )"
41 +
42 +RDEPEND="dev-perl/Email-Address"
43 +BDEPEND="${RDEPEND}
44 + >=virtual/perl-ExtUtils-MakeMaker-6.590.0
45 + test? (
46 + dev-perl/JSON
47 + virtual/perl-Test-Simple
48 + )
49 +"
50 +PATCHES=(
51 + "${FILESDIR}/${PN}-0.06-no-dot-inc.patch"
52 +)
53
54 diff --git a/dev-perl/Email-Address-List/files/Email-Address-List-0.06-no-dot-inc.patch b/dev-perl/Email-Address-List/files/Email-Address-List-0.06-no-dot-inc.patch
55 new file mode 100644
56 index 00000000000..ae1c3d10bc6
57 --- /dev/null
58 +++ b/dev-perl/Email-Address-List/files/Email-Address-List-0.06-no-dot-inc.patch
59 @@ -0,0 +1,21 @@
60 +From 9dfa071d15c3d84e38eb24f234df1aceb5fa06ba Mon Sep 17 00:00:00 2001
61 +From: Kent Fredric <kentnl@g.o>
62 +Date: Sat, 8 Aug 2020 08:20:54 +1200
63 +Subject: Include '.' in @INC on perl 5.26+
64 +
65 +---
66 + Makefile.PL | 1 +
67 + 1 file changed, 1 insertion(+)
68 +
69 +diff --git a/Makefile.PL b/Makefile.PL
70 +index fe67d0a..286b5ee 100644
71 +--- a/Makefile.PL
72 ++++ b/Makefile.PL
73 +@@ -1,3 +1,4 @@
74 ++use lib q[.];
75 + use inc::Module::Install;
76 + all_from 'lib/Email/Address/List.pm';
77 + readme_from 'lib/Email/Address/List.pm';
78 +--
79 +2.28.0
80 +