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-GOST/
Date: Thu, 30 Jul 2020 10:23:40
Message-Id: 1596104602.d6e1b77bb0e4d7fc1e4650a55bb0abeb0c9fa6ce.kentnl@gentoo
1 commit: d6e1b77bb0e4d7fc1e4650a55bb0abeb0c9fa6ce
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 10:23:11 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 10:23:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6e1b77b
7
8 dev-perl/Digest-GOST: -r bump for EAPI7 & CFLAGS love
9
10 - EAPI7
11 - Ensure CFLAGS passed to make/compiler
12
13 Package-Manager: Portage-2.3.103, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 dev-perl/Digest-GOST/Digest-GOST-0.60.0-r2.ebuild | 35 +++++++++++++++++++++++
17 1 file changed, 35 insertions(+)
18
19 diff --git a/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r2.ebuild b/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..93c4b19d60b
22 --- /dev/null
23 +++ b/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r2.ebuild
24 @@ -0,0 +1,35 @@
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=GRAY
31 +DIST_VERSION=0.06
32 +inherit perl-module
33 +
34 +DESCRIPTION="Perl interface to the GOST R 34.11-94 digest algorithm"
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~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"
37 +IUSE="test"
38 +RESTRICT="!test? ( test )"
39 +
40 +RDEPEND="
41 + virtual/perl-Digest
42 + virtual/perl-XSLoader
43 + virtual/perl-parent
44 +"
45 +BDEPEND="${RDEPEND}
46 + virtual/perl-ExtUtils-MakeMaker
47 + test? (
48 + >=virtual/perl-Test-Simple-0.820.0
49 + )
50 +"
51 +PATCHES=(
52 + "${FILESDIR}/${P}-bigendian-link.patch"
53 +)
54 +src_compile() {
55 + mymake=(
56 + "OPTIMIZE=${CFLAGS}"
57 + )
58 + perl-module_src_compile
59 +}