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/Audio-WMA/
Date: Wed, 05 Apr 2017 20:36:15
Message-Id: 1491424564.44565cfa9aa5612f1992e8601fe43b5febe413c4.kentnl@gentoo
1 commit: 44565cfa9aa5612f1992e8601fe43b5febe413c4
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 5 20:35:48 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 5 20:36:04 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44565cfa
7
8 dev-perl/Audio-WMA: Remove harmful test deps + Fix tests
9
10 Stupidly, this depended on POD stuff, but never ran tests...
11
12 Instead, we no longer depend on POD stuff, nuke POD tests,
13 and now actually run tests.
14
15 Package-Manager: Portage-2.3.4, Repoman-2.3.2
16
17 dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild | 14 +++++++++-----
18 1 file changed, 9 insertions(+), 5 deletions(-)
19
20 diff --git a/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild b/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild
21 index 9cf7efe865b..d39d06b78a7 100644
22 --- a/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild
23 +++ b/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2014 Gentoo Foundation
26 +# Copyright 1999-2017 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI=5
30 @@ -14,8 +14,12 @@ KEYWORDS="~amd64 ~x86"
31 IUSE="test"
32
33 RDEPEND=""
34 -DEPEND="
35 - test? ( dev-perl/Test-Pod
36 - dev-perl/Test-Pod-Coverage )"
37 +DEPEND=""
38
39 -SRC_TEST="do parallel"
40 +SRC_TEST=do
41 +
42 +src_prepare() {
43 + # MI things
44 + use test && perl_rm_files t/pod.t t/pod-coverage.t
45 + perl-module_src_prepare
46 +}