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/Chart-Math-Axis/files/, dev-perl/Chart-Math-Axis/
Date: Fri, 22 May 2020 20:09:28
Message-Id: 1590178122.19415adb30166c5821c2bb3ff2f65fc1f435a580.kentnl@gentoo
1 commit: 19415adb30166c5821c2bb3ff2f65fc1f435a580
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 22 20:07:12 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri May 22 20:08:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19415adb
7
8 dev-perl/Chart-Math-Axis: -r bump for EAPI7
9
10 - EAPI7
11 - Rework dependencies to reflect current norms
12 - Replace "sed" with an actual patch
13 - Enable parallel testing
14
15 Package-Manager: Portage-2.3.99, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 .../Chart-Math-Axis-1.60.0-r3.ebuild | 30 ++++++++++++++++++++++
19 .../files/Chart-Math-Axis-1.06-no-dot-inc.patch | 21 +++++++++++++++
20 2 files changed, 51 insertions(+)
21
22 diff --git a/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r3.ebuild b/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r3.ebuild
23 new file mode 100644
24 index 00000000000..ddb74910ab1
25 --- /dev/null
26 +++ b/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r3.ebuild
27 @@ -0,0 +1,30 @@
28 +# Copyright 1999-2020 Gentoo Authors
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=7
32 +
33 +DIST_AUTHOR=ADAMK
34 +DIST_VERSION=1.06
35 +inherit perl-module
36 +
37 +DESCRIPTION="Implements an algorithm to find good values for chart axis"
38 +
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86"
41 +IUSE="test"
42 +RESTRICT="!test? ( test )"
43 +
44 +RDEPEND="
45 + >=virtual/perl-Math-BigInt-1.700.0
46 + >=dev-perl/Params-Util-0.150.0
47 + >=virtual/perl-Storable-2.120.0
48 +"
49 +BDEPEND="${RDEPEND}
50 + >=virtual/perl-ExtUtils-MakeMaker-6.420.0
51 + test? (
52 + >=virtual/perl-Test-Simple-0.420.0
53 + )
54 +"
55 +PATCHES=(
56 + "${FILESDIR}/${PN}-1.06-no-dot-inc.patch"
57 +)
58
59 diff --git a/dev-perl/Chart-Math-Axis/files/Chart-Math-Axis-1.06-no-dot-inc.patch b/dev-perl/Chart-Math-Axis/files/Chart-Math-Axis-1.06-no-dot-inc.patch
60 new file mode 100644
61 index 00000000000..2c52938ce7f
62 --- /dev/null
63 +++ b/dev-perl/Chart-Math-Axis/files/Chart-Math-Axis-1.06-no-dot-inc.patch
64 @@ -0,0 +1,21 @@
65 +From 64874d89806ec13e6ae58a1b0720cf97dff92654 Mon Sep 17 00:00:00 2001
66 +From: Kent Fredric <kentnl@g.o>
67 +Date: Sat, 23 May 2020 07:48:07 +1200
68 +Subject: Include '.' in @INC on perl 5.26+
69 +
70 +---
71 + Makefile.PL | 1 +
72 + 1 file changed, 1 insertion(+)
73 +
74 +diff --git a/Makefile.PL b/Makefile.PL
75 +index 54daf04..d6d71f3 100644
76 +--- a/Makefile.PL
77 ++++ b/Makefile.PL
78 +@@ -1,3 +1,4 @@
79 ++use lib '.';
80 + use inc::Module::Install::DSL 1.00;
81 +
82 + all_from lib/Chart/Math/Axis.pm
83 +--
84 +2.26.2
85 +