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/Text-CSV_XS/
Date: Thu, 04 Aug 2016 03:04:04
Message-Id: 1470279821.4052e5cdae38822c8c49d433301a0de053a98edf.kentnl@gentoo
1 commit: 4052e5cdae38822c8c49d433301a0de053a98edf
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 03:02:36 2016 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 03:03:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4052e5cd
7
8 dev-perl/Text-CSV_XS: Remove POD Author Tests
9
10 Not needed, and this fixes the broken dependencies on s390 and sh
11
12 Package-Manager: portage-2.3.0
13 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"
14
15 dev-perl/Text-CSV_XS/Text-CSV_XS-0.950.0.ebuild | 10 +++++++---
16 1 file changed, 7 insertions(+), 3 deletions(-)
17
18 diff --git a/dev-perl/Text-CSV_XS/Text-CSV_XS-0.950.0.ebuild b/dev-perl/Text-CSV_XS/Text-CSV_XS-0.950.0.ebuild
19 index 17970de..0168aa3 100644
20 --- a/dev-perl/Text-CSV_XS/Text-CSV_XS-0.950.0.ebuild
21 +++ b/dev-perl/Text-CSV_XS/Text-CSV_XS-0.950.0.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2013 Gentoo Foundation
24 +# Copyright 1999-2016 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 @@ -18,9 +18,13 @@ IUSE="test"
29 RDEPEND=""
30 DEPEND="${RDEPEND}
31 test? (
32 - dev-perl/Test-Pod
33 - dev-perl/Test-Pod-Coverage
34 + virtual/perl-Test-Simple
35 )
36 "
37
38 SRC_TEST="parallel"
39 +
40 +src_test() {
41 + perl_rm_files "t/00_pod.t" "t/01_pod.t"
42 + perl-module_src_test
43 +}