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-MD4/
Date: Fri, 31 Jul 2020 04:47:02
Message-Id: 1596170509.5bef6be5042508c8102575f03af10f6f441b3b28.kentnl@gentoo
1 commit: 5bef6be5042508c8102575f03af10f6f441b3b28
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 04:41:35 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 04:41:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bef6be5
7
8 dev-perl/Digest-MD4: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Fix LICENSE
12 - Ensure CFLAGS passed to make/compiler
13 - Parallel tests
14
15 Package-Manager: Portage-2.3.103, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 dev-perl/Digest-MD4/Digest-MD4-1.900.0-r2.ebuild | 27 ++++++++++++++++++++++++
19 1 file changed, 27 insertions(+)
20
21 diff --git a/dev-perl/Digest-MD4/Digest-MD4-1.900.0-r2.ebuild b/dev-perl/Digest-MD4/Digest-MD4-1.900.0-r2.ebuild
22 new file mode 100644
23 index 00000000000..605c838b5f8
24 --- /dev/null
25 +++ b/dev-perl/Digest-MD4/Digest-MD4-1.900.0-r2.ebuild
26 @@ -0,0 +1,27 @@
27 +# Copyright 1999-2020 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DIST_AUTHOR=MIKEM
33 +DIST_VERSION=1.9
34 +DIST_SECTION=DigestMD4
35 +inherit perl-module
36 +
37 +DESCRIPTION="MD4 message digest algorithm"
38 +LICENSE="|| ( Artistic GPL-1+ ) RSA"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
41 +
42 +RDEPEND="
43 + virtual/perl-File-Spec
44 +"
45 +BDEPEND="${RDEPEND}
46 + virtual/perl-ExtUtils-MakeMaker
47 +"
48 +src_compile() {
49 + mymake=(
50 + "OPTIMIZE=${CFLAGS}"
51 + )
52 + perl-module_src_compile
53 +}