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/Devel-LexAlias/
Date: Thu, 30 Jul 2020 06:37:32
Message-Id: 1596091007.d2fb1b00985f8b0691505437e032c04e8b94efa8.kentnl@gentoo
1 commit: d2fb1b00985f8b0691505437e032c04e8b94efa8
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 06:35:36 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 06:36:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2fb1b00
7
8 dev-perl/Devel-LexAlias: -r bump for EAPI7 & CFLAGS love
9
10 - EAPI7
11 - Parallel tests
12 - Ensure CFLAGS passed to make/compiler
13
14 Package-Manager: Portage-2.3.103, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../Devel-LexAlias/Devel-LexAlias-0.50.0-r1.ebuild | 28 ++++++++++++++++++++++
18 1 file changed, 28 insertions(+)
19
20 diff --git a/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0-r1.ebuild b/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..3b84c868f17
23 --- /dev/null
24 +++ b/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0-r1.ebuild
25 @@ -0,0 +1,28 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=RCLAMP
32 +DIST_VERSION=0.05
33 +inherit perl-module
34 +
35 +DESCRIPTION="Alias lexical variables"
36 +
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
39 +IUSE="test"
40 +RESTRICT="!test? ( test )"
41 +
42 +RDEPEND="
43 + >=dev-perl/Devel-Caller-0.30.0
44 +"
45 +BDEPEND="${RDEPEND}
46 + virtual/perl-ExtUtils-MakeMaker
47 +"
48 +src_compile() {
49 + mymake=(
50 + "OPTIMIZE=${CFLAGS}"
51 + )
52 + perl-module_src_compile
53 +}