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 95359138334 for ; Thu, 10 Jan 2019 04:08:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BCABE0AC5; Thu, 10 Jan 2019 04:08:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 0FBC5E0AC5 for ; Thu, 10 Jan 2019 04:08:19 +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 B64C7335C7B for ; Thu, 10 Jan 2019 04:08:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEA9E4ED for ; Thu, 10 Jan 2019 04:08:13 +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: <1547093277.098924c5c7f44e7bc6501dba1959540e323b112d.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/MIME-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/MIME-tools/MIME-tools-5.509.0.ebuild X-VCS-Directories: dev-perl/MIME-tools/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 098924c5c7f44e7bc6501dba1959540e323b112d X-VCS-Branch: master Date: Thu, 10 Jan 2019 04:08:13 +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: d72ac4bf-a1dc-4b77-87e2-c9014eaa3be3 X-Archives-Hash: 856d3727fbf04e934d490240cba3fbbe commit: 098924c5c7f44e7bc6501dba1959540e323b112d Author: Kent Fredric gentoo org> AuthorDate: Thu Jan 10 04:07:21 2019 +0000 Commit: Kent Fredric gentoo org> CommitDate: Thu Jan 10 04:07:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=098924c5 dev-perl/MIME-tools: Disable broken test under network-sandbox Package-Manager: Portage-2.3.54, Repoman-2.3.12 Signed-off-by: Kent Fredric gentoo.org> dev-perl/MIME-tools/MIME-tools-5.509.0.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-perl/MIME-tools/MIME-tools-5.509.0.ebuild b/dev-perl/MIME-tools/MIME-tools-5.509.0.ebuild index e88696e8e1a..d832dc90655 100644 --- a/dev-perl/MIME-tools/MIME-tools-5.509.0.ebuild +++ b/dev-perl/MIME-tools/MIME-tools-5.509.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -31,7 +31,11 @@ DEPEND="${RDEPEND} # tests fail when done in parallel DIST_TEST="do" -src_test() { - perl_rm_files t/02-kwalitee.t t/02-pod-coverage.t t/02-pod.t - perl-module_src_test -} +PERL_RM_FILES=( + # Author tests + t/02-kwalitee.t + t/02-pod.t + t/02-pod-coverage.t + # Fails under FEATURES="network-sandbox" + t/Smtpsend.t +)