Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/File-MimeInfo/
Date: Thu, 04 Aug 2016 05:15:11
Message-Id: 1470287676.8463f8454111338527a2f8535bb2c16b0fccfaee.kentnl@gentoo
1 commit: 8463f8454111338527a2f8535bb2c16b0fccfaee
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 05:14:09 2016 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 05:14:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8463f845
7
8 dev-perl/File-MimeInfo: Remove POD Author Tests
9
10 These serve no benefit to end users, and merely complicate
11 dependency resolution and stabilization.
12
13 This change unbreaks the direct dependency graphs for
14 m68k, s390 and sh
15
16 Package-Manager: portage-2.3.0
17 RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"
18
19 dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild | 11 ++++++++---
20 1 file changed, 8 insertions(+), 3 deletions(-)
21
22 diff --git a/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild b/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild
23 index ba19925..5290039 100644
24 --- a/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild
25 +++ b/dev-perl/File-MimeInfo/File-MimeInfo-0.270.0.ebuild
26 @@ -1,4 +1,4 @@
27 -# Copyright 1999-2015 Gentoo Foundation
28 +# Copyright 1999-2016 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 # $Id$
31
32 @@ -21,9 +21,14 @@ RDEPEND=">=dev-perl/File-BaseDir-0.03
33 DEPEND="${RDEPEND}
34 dev-perl/Module-Build
35 test? (
36 - dev-perl/Test-Pod
37 - dev-perl/Test-Pod-Coverage
38 + virtual/perl-Test-Simple
39 )
40 virtual/perl-ExtUtils-MakeMaker"
41
42 SRC_TEST="do parallel"
43 +
44 +src_test() {
45 + perl_rm_files t/08_changes.t t/06_pod_ok.t t/07_pod_cover.t \
46 + t/09_no404s.t
47 + perl-module_src_test
48 +}