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-OpenSSL-ECDSA/
Date: Wed, 01 Jul 2020 12:56:41
Message-Id: 1593608164.228dab937eed5f5d6ce11e8bd92d22e0a8504044.kentnl@gentoo
1 commit: 228dab937eed5f5d6ce11e8bd92d22e0a8504044
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 12:56:04 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 12:56:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=228dab93
7
8 dev-perl/Crypt-OpenSSL-ECDSA: -r bump for EAPI7 + Fixes
9
10 - EAPI7
11 - Ensure CFLAGS pass through to compiler in make
12
13 Package-Manager: Portage-2.3.100, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 .../Crypt-OpenSSL-ECDSA-0.80.0-r3.ebuild | 35 ++++++++++++++++++++++
17 1 file changed, 35 insertions(+)
18
19 diff --git a/dev-perl/Crypt-OpenSSL-ECDSA/Crypt-OpenSSL-ECDSA-0.80.0-r3.ebuild b/dev-perl/Crypt-OpenSSL-ECDSA/Crypt-OpenSSL-ECDSA-0.80.0-r3.ebuild
20 new file mode 100644
21 index 00000000000..60f22db0b51
22 --- /dev/null
23 +++ b/dev-perl/Crypt-OpenSSL-ECDSA/Crypt-OpenSSL-ECDSA-0.80.0-r3.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=MIKEM
31 +DIST_VERSION=0.08
32 +inherit perl-module
33 +
34 +DESCRIPTION="OpenSSL ECDSA (Elliptic Curve Digital Signature Algorithm) Perl extension"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE="libressl"
38 +
39 +RDEPEND="
40 + >=dev-perl/Crypt-OpenSSL-EC-0.50.0
41 + !libressl? ( dev-libs/openssl:0 )
42 + libressl? ( dev-libs/libressl )
43 +"
44 +DEPEND="
45 + !libressl? ( dev-libs/openssl:0 )
46 + libressl? ( dev-libs/libressl )
47 +"
48 +BDEPEND="${RDEPEND}
49 + virtual/perl-ExtUtils-MakeMaker
50 +"
51 +PATCHES=(
52 + "${FILESDIR}/${P}-0002-Port-to-OpenSSL-1.1.0.patch"
53 +)
54 +src_compile() {
55 + mymake=(
56 + "OPTIMIZE=${CFLAGS}"
57 + )
58 + perl-module_src_compile
59 +}