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/Class-MethodMaker/
Date: Tue, 30 Jun 2020 16:19:38
Message-Id: 1593533953.05ddedd84027b4495dc76929cf1076379d52b4c9.kentnl@gentoo
1 commit: 05ddedd84027b4495dc76929cf1076379d52b4c9
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 30 16:19:13 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 30 16:19:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ddedd8
7
8 dev-perl/Class-MethodMaker: -r bump for CFLAGS love & fixes
9
10 - Ensure CFLAGS passed to make
11 - Remove unused eclass 'eutils'
12
13 Package-Manager: Portage-2.3.100, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 .../Class-MethodMaker-2.240.0-r2.ebuild | 24 ++++++++++++++++++++++
17 1 file changed, 24 insertions(+)
18
19 diff --git a/dev-perl/Class-MethodMaker/Class-MethodMaker-2.240.0-r2.ebuild b/dev-perl/Class-MethodMaker/Class-MethodMaker-2.240.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..ce5a0cd60c4
22 --- /dev/null
23 +++ b/dev-perl/Class-MethodMaker/Class-MethodMaker-2.240.0-r2.ebuild
24 @@ -0,0 +1,24 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +DIST_AUTHOR=SCHWIGON
31 +DIST_VERSION=2.24
32 +DIST_SECTION="class-methodmaker"
33 +inherit perl-module
34 +
35 +DESCRIPTION="Create generic methods for OO Perl"
36 +
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
39 +
40 +BDEPEND="
41 + virtual/perl-ExtUtils-MakeMaker
42 +"
43 +src_compile() {
44 + mymake=(
45 + "OPTIMIZE=${CFLAGS}"
46 + )
47 + perl-module_src_compile
48 +}