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-RIPEMD160/
Date: Thu, 02 Jul 2020 08:02:46
Message-Id: 1593676935.f00b07632126df10278f0f542d0475096fc8fda2.kentnl@gentoo
1 commit: f00b07632126df10278f0f542d0475096fc8fda2
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 08:02:15 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 08:02:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f00b0763
7
8 dev-perl/Crypt-RIPEMD160: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Ensure CFLAGS passed to make/compile
12 - Remove unused/empty variable assignment
13
14 Package-Manager: Portage-2.3.100, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../Crypt-RIPEMD160-0.60.0-r1.ebuild | 27 ++++++++++++++++++++++
18 1 file changed, 27 insertions(+)
19
20 diff --git a/dev-perl/Crypt-RIPEMD160/Crypt-RIPEMD160-0.60.0-r1.ebuild b/dev-perl/Crypt-RIPEMD160/Crypt-RIPEMD160-0.60.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..4efb9c20760
23 --- /dev/null
24 +++ b/dev-perl/Crypt-RIPEMD160/Crypt-RIPEMD160-0.60.0-r1.ebuild
25 @@ -0,0 +1,27 @@
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=TODDR
32 +DIST_VERSION=0.06
33 +inherit perl-module
34 +
35 +DESCRIPTION="Perl extension for the RIPEMD-160 Hash function"
36 +
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
39 +IUSE="test"
40 +RESTRICT="!test? ( test )"
41 +
42 +BDEPEND="
43 + virtual/perl-ExtUtils-MakeMaker
44 + test? ( virtual/perl-Test-Simple )
45 +"
46 +
47 +src_compile() {
48 + mymake=(
49 + "OPTIMIZE=${CFLAGS}"
50 + )
51 + perl-module_src_compile
52 +}