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-Rijndael/
Date: Thu, 02 Jul 2020 12:58:00
Message-Id: 1593694620.1309ef45b7ec2ab96d023e66a926ea27dc835446.kentnl@gentoo
1 commit: 1309ef45b7ec2ab96d023e66a926ea27dc835446
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 12:50:43 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 12:57:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1309ef45
7
8 dev-perl/Crypt-Rijndael: -r bump for EAPI7 + fixes
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 .../Crypt-Rijndael-1.140.0-r1.ebuild | 29 ++++++++++++++++++++++
17 1 file changed, 29 insertions(+)
18
19 diff --git a/dev-perl/Crypt-Rijndael/Crypt-Rijndael-1.140.0-r1.ebuild b/dev-perl/Crypt-Rijndael/Crypt-Rijndael-1.140.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..26733862f2f
22 --- /dev/null
23 +++ b/dev-perl/Crypt-Rijndael/Crypt-Rijndael-1.140.0-r1.ebuild
24 @@ -0,0 +1,29 @@
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=LEONT
31 +DIST_VERSION=1.14
32 +inherit perl-module
33 +
34 +DESCRIPTION="Crypt::CBC compliant Rijndael encryption module"
35 +
36 +LICENSE="LGPL-3"
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~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"
39 +IUSE="test"
40 +RESTRICT="!test? ( test )"
41 +
42 +DEPEND="
43 + virtual/perl-ExtUtils-MakeMaker
44 + test? (
45 + virtual/perl-Test-Simple
46 + )
47 +"
48 +src_compile() {
49 + mymake=(
50 + "OPTIMIZE=${CFLAGS}"
51 + )
52 + perl-module_src_compile
53 +}