From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E4562138359 for ; Thu, 2 Jul 2020 13:10:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3497BE0896; Thu, 2 Jul 2020 13:10:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19D1DE0896 for ; Thu, 2 Jul 2020 13:10:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E77F234F20D for ; Thu, 2 Jul 2020 13:10:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6640028F for ; Thu, 2 Jul 2020 13:10:08 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1593695396.5b09ea03e77c4f12e23b930b97ae125097bbe1ba.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-SMIME/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild X-VCS-Directories: dev-perl/Crypt-SMIME/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 5b09ea03e77c4f12e23b930b97ae125097bbe1ba X-VCS-Branch: master Date: Thu, 2 Jul 2020 13:10:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b498a275-da43-467b-a300-fa96ec33c62f X-Archives-Hash: 94137ff18ada116dc2f146dd9bfdada2 commit: 5b09ea03e77c4f12e23b930b97ae125097bbe1ba Author: Kent Fredric gentoo org> AuthorDate: Thu Jul 2 13:09:34 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Thu Jul 2 13:09:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b09ea03 dev-perl/Crypt-SMIME: -r bump for EAPI7 and CFLAGS love - EAPI7 - Unconditionally patch bad tests - Ensure CFLAGS passed through make/compiler Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) 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 new file mode 100644 index 00000000000..f7a56171e9d --- /dev/null +++ b/dev-perl/Crypt-SMIME/Crypt-SMIME-0.250.0-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=MIKAGE +DIST_VERSION=0.25 +inherit perl-module + +DESCRIPTION="S/MIME message signing, verification, encryption and decryption" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="libressl test minimal" +RESTRICT="!test? ( test )" + +RDEPEND=" + !libressl? ( >=dev-libs/openssl-0.9.9:0 ) + libressl? ( dev-libs/libressl ) + virtual/perl-XSLoader +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + dev-perl/ExtUtils-PkgConfig + dev-perl/ExtUtils-CChecker + >=virtual/perl-ExtUtils-Constant-0.230.0 + test? ( + dev-perl/Test-Exception + virtual/perl-Test-Simple + !minimal? ( + >=dev-perl/Test-Taint-1.60.0 + >=dev-perl/Taint-Util-0.80.0 + ) + ) +" +PERL_RM_FILES=( + t/boilerplate.t + t/manifest.t + t/dependencies.t + t/pod-coverage.t + t/pod.t +) + +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +}