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/Digest-MD2/
Date: Fri, 31 Jul 2020 04:19:02
Message-Id: 1596169119.7901d55641fe65e48e829ff45d29fb3d3388c6b8.kentnl@gentoo
1 commit: 7901d55641fe65e48e829ff45d29fb3d3388c6b8
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 04:18:19 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 04:18:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7901d556
7
8 dev-perl/Digest-MD2: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Fix LICENSE
12 - Ensure CFLAGS passed to make/compile
13
14 Package-Manager: Portage-2.3.103, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 dev-perl/Digest-MD2/Digest-MD2-2.40.0-r1.ebuild | 20 ++++++++++++++++++++
18 1 file changed, 20 insertions(+)
19
20 diff --git a/dev-perl/Digest-MD2/Digest-MD2-2.40.0-r1.ebuild b/dev-perl/Digest-MD2/Digest-MD2-2.40.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..7700416484c
23 --- /dev/null
24 +++ b/dev-perl/Digest-MD2/Digest-MD2-2.40.0-r1.ebuild
25 @@ -0,0 +1,20 @@
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=GAAS
32 +DIST_VERSION=2.04
33 +inherit perl-module
34 +
35 +DESCRIPTION="Perl interface to the MD2 Algorithm"
36 +LICENSE="|| ( Artistic GPL-1+ ) RSA"
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
39 +
40 +src_compile() {
41 + mymake=(
42 + "OPTIMIZE=${CFLAGS}"
43 + )
44 + perl-module_src_compile
45 +}