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 1E7BB138334 for ; Wed, 17 Jul 2019 06:42:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55333E07AE; Wed, 17 Jul 2019 06:42:22 +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 257B9E07AE for ; Wed, 17 Jul 2019 06:42:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2F80F347E12 for ; Wed, 17 Jul 2019 06:42:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EDA46DF for ; Wed, 17 Jul 2019 06:42:19 +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: <1563345719.5ef6864dc88e9e5288fd5563155c0e2ee1ef8fb4.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Perl-Critic-Dynamic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r3.ebuild X-VCS-Directories: dev-perl/Perl-Critic-Dynamic/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 5ef6864dc88e9e5288fd5563155c0e2ee1ef8fb4 X-VCS-Branch: master Date: Wed, 17 Jul 2019 06:42:19 +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: d468a887-93d3-4328-bde9-56a3f3bde123 X-Archives-Hash: 6eda88a603dbec2a23f3778f4cda3378 commit: 5ef6864dc88e9e5288fd5563155c0e2ee1ef8fb4 Author: Kent Fredric gentoo org> AuthorDate: Wed Jul 17 06:40:57 2019 +0000 Commit: Kent Fredric gentoo org> CommitDate: Wed Jul 17 06:41:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef6864d dev-perl/Perl-Critic-Dynamic: Add dev-perl/CGI into test deps bug #661808 Bug: https://bugs.gentoo.org/661808 Bug: https://bugs.gentoo.org/662294 Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Kent Fredric gentoo.org> .../Perl-Critic-Dynamic-0.50.0-r3.ebuild | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r3.ebuild b/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r3.ebuild new file mode 100644 index 00000000000..31bf8cc7947 --- /dev/null +++ b/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=THALJEF +DIST_VERSION=0.05 +inherit perl-module + +DESCRIPTION="Base class for dynamic Policies" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" +IUSE="test" + +RDEPEND="dev-perl/Perl-Critic + >=dev-perl/Devel-Symdump-2.08 + dev-perl/Readonly" +DEPEND="${RDEPEND} + dev-perl/Module-Build + test? ( + dev-perl/CGI + ) +" + +PATCHES=( "${FILESDIR}/${PN}-0.05-test-cgi.patch" )