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/Array-RefElem/
Date: Fri, 03 Jul 2020 00:07:54
Message-Id: 1593734237.301c0545366524bb391f6d31a45f9714e08c3df4.kentnl@gentoo
1 commit: 301c0545366524bb391f6d31a45f9714e08c3df4
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 23:21:57 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 23:57:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=301c0545
7
8 dev-perl/Array-RefElem: -r bump for CFLAGS love
9
10 - Ensure CFLAGS get passed to make/compile
11
12 Package-Manager: Portage-2.3.100, Repoman-2.3.22
13 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
14
15 dev-perl/Array-RefElem/Array-RefElem-1.0.0-r3.ebuild | 20 ++++++++++++++++++++
16 1 file changed, 20 insertions(+)
17
18 diff --git a/dev-perl/Array-RefElem/Array-RefElem-1.0.0-r3.ebuild b/dev-perl/Array-RefElem/Array-RefElem-1.0.0-r3.ebuild
19 new file mode 100644
20 index 00000000000..9d34f825c02
21 --- /dev/null
22 +++ b/dev-perl/Array-RefElem/Array-RefElem-1.0.0-r3.ebuild
23 @@ -0,0 +1,20 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DIST_AUTHOR=GAAS
30 +DIST_VERSION=1.00
31 +inherit perl-module
32 +
33 +DESCRIPTION="Set up array elements as aliases"
34 +
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
37 +
38 +src_compile() {
39 + mymake=(
40 + "OPTIMIZE=${CFLAGS}"
41 + )
42 + perl-module_src_compile
43 +}