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 E3A501382C5 for ; Mon, 29 Jun 2020 19:13:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E512E08F4; Mon, 29 Jun 2020 19:13:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 EA39BE08F4 for ; Mon, 29 Jun 2020 19:13:30 +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 CE15E34ED5E for ; Mon, 29 Jun 2020 19:13:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55246292 for ; Mon, 29 Jun 2020 19:13:28 +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: <1593457784.11a5712911a99edc648ec27d5120f8d0476443ed.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-CBC/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r2.ebuild X-VCS-Directories: dev-perl/Crypt-CBC/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 11a5712911a99edc648ec27d5120f8d0476443ed X-VCS-Branch: master Date: Mon, 29 Jun 2020 19:13:28 +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: 9fb73950-4d92-410f-b0d2-a3857bb329ef X-Archives-Hash: d255a8ebaf6f93f9e65aa8ee7f6eba55 commit: 11a5712911a99edc648ec27d5120f8d0476443ed Author: Kent Fredric gentoo org> AuthorDate: Mon Jun 29 19:09:03 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Mon Jun 29 19:09:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11a57129 dev-perl/Crypt-CBC: -r bump for EAPI7 and fixes - EAPI7 - Fix incorrect license (removal=perl-module default=perl license) - Ensure Crypt-Rijndael installed for testing - Parallel tests - Add USE="examples" Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r2.ebuild | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r2.ebuild b/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r2.ebuild new file mode 100644 index 00000000000..9f060a76d78 --- /dev/null +++ b/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=LDS +DIST_VERSION=2.33 +DIST_EXAMPLES=("eg/*") +inherit perl-module + +DESCRIPTION="Encrypt Data with Cipher Block Chaining Mode" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=virtual/perl-Digest-MD5-2.0.0 +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + dev-perl/Crypt-Blowfish + dev-perl/Crypt-DES + dev-perl/Crypt-IDEA + dev-perl/Crypt-Rijndael + ) +"