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-DSA/
Date: Wed, 01 Jul 2020 11:43:55
Message-Id: 1593603788.7a8a3468a8ce6207f46c0a7f03a76984c93e89fa.kentnl@gentoo
1 commit: 7a8a3468a8ce6207f46c0a7f03a76984c93e89fa
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 11:43:08 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 11:43:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8a3468
7
8 dev-perl/Crypt-OpenSSL-DSA: -r bump for EAPI7 + fixes
9
10 - EAPI7
11 - Ensure CFLAGS passed through to compiler
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-DSA-0.190.0-r2.ebuild | 30 ++++++++++++++++++++++
17 1 file changed, 30 insertions(+)
18
19 diff --git a/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0-r2.ebuild b/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..f9674d7a6f4
22 --- /dev/null
23 +++ b/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0-r2.ebuild
24 @@ -0,0 +1,30 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +DIST_AUTHOR=KMX
30 +DIST_VERSION=0.19
31 +inherit perl-module
32 +
33 +DESCRIPTION="Digital Signature Algorithm using OpenSSL"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
36 +IUSE="libressl"
37 +
38 +RDEPEND="
39 + !libressl? ( dev-libs/openssl:0 )
40 + libressl? ( >=dev-libs/libressl-2.7.2 )
41 +"
42 +DEPEND="${RDEPEND}"
43 +BDEPEND="${RDEPEND}
44 + virtual/perl-ExtUtils-MakeMaker
45 +"
46 +
47 +DIST_TEST=do
48 +# otherwise random fails occur
49 +src_compile() {
50 + mymake=(
51 + "OPTIMIZE=${CFLAGS}"
52 + )
53 + perl-module_src_compile
54 +}