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 526CC1396D9 for ; Tue, 24 Oct 2017 06:14:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66DDF2BC043; Tue, 24 Oct 2017 06:14:51 +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 47A982BC043 for ; Tue, 24 Oct 2017 06:14:51 +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 7D5CF33BF44 for ; Tue, 24 Oct 2017 06:14:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE1A97419 for ; Tue, 24 Oct 2017 06:14:48 +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: <1508825680.c204ae29381ea1aa344aba5501f47e9a2d7f2135.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/HTTP-Server-Simple-Mason/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/HTTP-Server-Simple-Mason/HTTP-Server-Simple-Mason-0.140.0-r1.ebuild X-VCS-Directories: dev-perl/HTTP-Server-Simple-Mason/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: c204ae29381ea1aa344aba5501f47e9a2d7f2135 X-VCS-Branch: master Date: Tue, 24 Oct 2017 06:14:48 +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: 36aa6f0a-f69a-41ab-8534-96b694c87c8a X-Archives-Hash: 2efca3f8f7e5240dc93a90b3b4359364 commit: c204ae29381ea1aa344aba5501f47e9a2d7f2135 Author: Kent Fredric gentoo org> AuthorDate: Tue Oct 24 06:14:27 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Tue Oct 24 06:14:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c204ae29 dev-perl/HTTP-Server-Simple-Mason: Fix parallel test failure bug #623112 Closes: https://bugs.gentoo.org/623112 Package-Manager: Portage-2.3.8, Repoman-2.3.3 .../HTTP-Server-Simple-Mason-0.140.0-r1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-perl/HTTP-Server-Simple-Mason/HTTP-Server-Simple-Mason-0.140.0-r1.ebuild b/dev-perl/HTTP-Server-Simple-Mason/HTTP-Server-Simple-Mason-0.140.0-r1.ebuild index 7fe36dbbefe..c37add1045a 100644 --- a/dev-perl/HTTP-Server-Simple-Mason/HTTP-Server-Simple-Mason-0.140.0-r1.ebuild +++ b/dev-perl/HTTP-Server-Simple-Mason/HTTP-Server-Simple-Mason-0.140.0-r1.ebuild @@ -22,8 +22,15 @@ RDEPEND=" " DEPEND="${RDEPEND}" +# Parallel failures, +# https://bugs.gentoo.org/623112 +DIST_TEST="do" src_prepare() { sed -i -e 's/use inc::Module::Install/use lib q[.]; use inc::Module::Install/' Makefile.PL || die "Can't patch Makefile.PL for 5.26 dot-in-inc" perl-module_src_prepare } +src_test() { + perl_rm_files t/02pod.t t/03podcoverage.t + perl-module_src_test +}