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/Crypt-IDEA/
Date: Wed, 01 Jul 2020 11:10:36
Message-Id: 1593601806.543233cebfdc398fb4c88f9005026bc3bf20b037.kentnl@gentoo
1 commit: 543233cebfdc398fb4c88f9005026bc3bf20b037
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 11:08:11 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 11:10:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543233ce
7
8 dev-perl/Crypt-IDEA: -r bump for CFLAGS love
9
10 - Ensure CFLAGS are handed through make to cc
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/Crypt-IDEA/Crypt-IDEA-1.100.0-r2.ebuild | 29 ++++++++++++++++++++++++
16 1 file changed, 29 insertions(+)
17
18 diff --git a/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0-r2.ebuild b/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0-r2.ebuild
19 new file mode 100644
20 index 00000000000..b093191e619
21 --- /dev/null
22 +++ b/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0-r2.ebuild
23 @@ -0,0 +1,29 @@
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=DPARIS
30 +DIST_VERSION=1.10
31 +inherit perl-module
32 +
33 +DESCRIPTION="An implementation of the IDEA symmetric-key block cipher"
34 +
35 +LICENSE="Crypt-IDEA"
36 +SLOT="0"
37 +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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 +IUSE="test"
39 +RESTRICT="!test? ( test )"
40 +
41 +DEPEND=""
42 +BDEPEND="virtual/perl-ExtUtils-MakeMaker
43 + test? (
44 + virtual/perl-Test-Simple
45 + )
46 +"
47 +src_compile() {
48 + mymake=(
49 + "OPTIMIZE=${CFLAGS}"
50 + )
51 + perl-module_src_compile
52 +}