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-SHA1/
Date: Fri, 31 Jul 2020 06:04:22
Message-Id: 1596175384.ffdd3b94cee3171efb89a5113be856b48ab354e3.kentnl@gentoo
1 commit: ffdd3b94cee3171efb89a5113be856b48ab354e3
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 06:03:04 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:03:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffdd3b94
7
8 dev-perl/Digest-SHA1: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Parallel tests
12 - Ensure CFLAGS passed to make/compiler
13 - Remove unused/empty variable assignments
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-SHA1/Digest-SHA1-2.130.0-r2.ebuild | 26 ++++++++++++++++++++++
19 1 file changed, 26 insertions(+)
20
21 diff --git a/dev-perl/Digest-SHA1/Digest-SHA1-2.130.0-r2.ebuild b/dev-perl/Digest-SHA1/Digest-SHA1-2.130.0-r2.ebuild
22 new file mode 100644
23 index 00000000000..5a9cf462a5b
24 --- /dev/null
25 +++ b/dev-perl/Digest-SHA1/Digest-SHA1-2.130.0-r2.ebuild
26 @@ -0,0 +1,26 @@
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=GAAS
33 +DIST_VERSION=2.13
34 +inherit perl-module
35 +
36 +DESCRIPTION="NIST SHA message digest algorithm"
37 +
38 +SLOT="0"
39 +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"
40 +
41 +RDEPEND="
42 + >=virtual/perl-Digest-1.0.0
43 +"
44 +BDEPEND="${DEPEND}
45 + virtual/perl-ExtUtils-MakeMaker
46 +"
47 +src_compile() {
48 + mymake=(
49 + "OPTIMIZE=${CFLAGS}"
50 + )
51 + perl-module_src_compile
52 +}