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-SMIME/
Date: Thu, 02 Jul 2020 13:10:35
Message-Id: 1593695396.5b09ea03e77c4f12e23b930b97ae125097bbe1ba.kentnl@gentoo
1 commit: 5b09ea03e77c4f12e23b930b97ae125097bbe1ba
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 13:09:34 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 13:09:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b09ea03
7
8 dev-perl/Crypt-SMIME: -r bump for EAPI7 and CFLAGS love
9
10 - EAPI7
11 - Unconditionally patch bad tests
12 - Ensure CFLAGS passed through make/compiler
13
14 Package-Manager: Portage-2.3.100, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild | 49 ++++++++++++++++++++++
18 1 file changed, 49 insertions(+)
19
20 diff --git a/dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild b/dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..f7a56171e9d
23 --- /dev/null
24 +++ b/dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild
25 @@ -0,0 +1,49 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=MIKAGE
32 +DIST_VERSION=0.25
33 +inherit perl-module
34 +
35 +DESCRIPTION="S/MIME message signing, verification, encryption and decryption"
36 +
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE="libressl test minimal"
40 +RESTRICT="!test? ( test )"
41 +
42 +RDEPEND="
43 + !libressl? ( >=dev-libs/openssl-0.9.9:0 )
44 + libressl? ( dev-libs/libressl )
45 + virtual/perl-XSLoader
46 +"
47 +BDEPEND="${RDEPEND}
48 + virtual/perl-ExtUtils-MakeMaker
49 + dev-perl/ExtUtils-PkgConfig
50 + dev-perl/ExtUtils-CChecker
51 + >=virtual/perl-ExtUtils-Constant-0.230.0
52 + test? (
53 + dev-perl/Test-Exception
54 + virtual/perl-Test-Simple
55 + !minimal? (
56 + >=dev-perl/Test-Taint-1.60.0
57 + >=dev-perl/Taint-Util-0.80.0
58 + )
59 + )
60 +"
61 +PERL_RM_FILES=(
62 + t/boilerplate.t
63 + t/manifest.t
64 + t/dependencies.t
65 + t/pod-coverage.t
66 + t/pod.t
67 +)
68 +
69 +src_compile() {
70 + mymake=(
71 + "OPTIMIZE=${CFLAGS}"
72 + )
73 + perl-module_src_compile
74 +}