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/autobox/
Date: Fri, 03 Jul 2020 00:07:54
Message-Id: 1593734262.5309a5e467f69ec1d88c19a6f772ce5eb5f791b2.kentnl@gentoo
1 commit: 5309a5e467f69ec1d88c19a6f772ce5eb5f791b2
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 23:52:44 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 23:57:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5309a5e4
7
8 dev-perl/autobox: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Ensure CFLAGS passed to make/compiler
12
13 Package-Manager: Portage-2.3.100, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 dev-perl/autobox/autobox-3.0.1-r1.ebuild | 31 +++++++++++++++++++++++++++++++
17 1 file changed, 31 insertions(+)
18
19 diff --git a/dev-perl/autobox/autobox-3.0.1-r1.ebuild b/dev-perl/autobox/autobox-3.0.1-r1.ebuild
20 new file mode 100644
21 index 00000000000..37acd5c19b9
22 --- /dev/null
23 +++ b/dev-perl/autobox/autobox-3.0.1-r1.ebuild
24 @@ -0,0 +1,31 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +DIST_AUTHOR=CHOCOLATE
30 +DIST_VERSION=v3.0.1
31 +inherit perl-module
32 +
33 +DESCRIPTION="Call methods on native types"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="test"
37 +RESTRICT="!test? ( test )"
38 +
39 +RDEPEND="
40 + >=dev-perl/Scope-Guard-0.210.0
41 + >=virtual/perl-version-0.770.0
42 +"
43 +BEPEND="${RDEPEND}
44 + virtual/perl-ExtUtils-MakeMaker
45 + test? (
46 + >=dev-perl/IPC-System-Simple-1.250.0
47 + >=dev-perl/Test-Fatal-0.14.0
48 + )
49 +"
50 +src_compile() {
51 + mymake=(
52 + "OPTIMIZE=${CFLAGS}"
53 + )
54 + perl-module_src_compile
55 +}