From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BF7E1138247 for ; Sun, 12 Oct 2014 16:14:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52A01E0AC3; Sun, 12 Oct 2014 16:14:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED6C4E0AC3 for ; Sun, 12 Oct 2014 16:14:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F39F33403F0 for ; Sun, 12 Oct 2014 16:14:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD4B97A89 for ; Sun, 12 Oct 2014 16:14:43 +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: <1413130439.8dee449d4cfcf26c1c0217e8defae5f1bbb81992.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Test-Regression/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: dev-perl/Test-Regression/Test-Regression-0.60.0.ebuild dev-perl/Test-Regression/Test-Regression-0.70.0.ebuild X-VCS-Directories: dev-perl/Test-Regression/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 8dee449d4cfcf26c1c0217e8defae5f1bbb81992 X-VCS-Branch: master Date: Sun, 12 Oct 2014 16:14:43 +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-Archives-Salt: b046e20a-9e42-4a41-b997-1516a22950bc X-Archives-Hash: 4229cb00154ae4dd141b3e7745dd412a commit: 8dee449d4cfcf26c1c0217e8defae5f1bbb81992 Author: Kent Fredric gmail com> AuthorDate: Sun Oct 12 16:13:59 2014 +0000 Commit: Kent Fredric gmail com> CommitDate: Sun Oct 12 16:13:59 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=8dee449d [bump] dev-perl/Test-Regression to 0.70.0 to avoid a bug where it blocks forever doing rm ... Package-Manager: portage-2.2.10 --- ...0.60.0.ebuild => Test-Regression-0.70.0.ebuild} | 37 +++++++++++----------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/dev-perl/Test-Regression/Test-Regression-0.60.0.ebuild b/dev-perl/Test-Regression/Test-Regression-0.70.0.ebuild similarity index 56% rename from dev-perl/Test-Regression/Test-Regression-0.60.0.ebuild rename to dev-perl/Test-Regression/Test-Regression-0.70.0.ebuild index e9e8517..32528b8 100644 --- a/dev-perl/Test-Regression/Test-Regression-0.60.0.ebuild +++ b/dev-perl/Test-Regression/Test-Regression-0.70.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 -MODULE_AUTHOR=SILASMONK -MODULE_VERSION=0.06 +MODULE_AUTHOR=MITHALDU +MODULE_VERSION=0.07 inherit perl-module DESCRIPTION="A two-phase Test library. One: Generate outputs. Two: Compare them" @@ -13,24 +13,25 @@ DESCRIPTION="A two-phase Test library. One: Generate outputs. Two: Compare them" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" - -COMMON_DEPEND=" - virtual/perl-Test-Simple +# rdep FileHandle -> perl +# Test::More -> perl-Test-Simple +RDEPEND=" + dev-perl/Algorithm-Diff dev-perl/Test-Differences + virtual/perl-Test-Simple dev-perl/Text-Diff - dev-perl/Algorithm-Diff " +# bdep DirHandle -> perl DEPEND=" - >=virtual/perl-Module-Build-0.35 - dev-perl/Test-MockObject + ${RDEPEND} + >=virtual/perl-Module-Build-0.400.0 virtual/perl-File-Spec - ${COMMON_DEPEND} -" -RDEPEND=" - ${COMMON_DEPEND} + dev-perl/Test-MockObject " -src_configure () { - rm "${S}/t/pod.t" - perl-module_src_configure -} -SRC_TEST="do parallel" +PERL_RM_FILES=( + t/boilerplate.t + t/perlcritic.t + t/pod-coverage.t + t/pod.t + t/podspell.t +)