summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2017-04-06 08:35:48 +1200
committerKent Fredric <kentnl@gentoo.org>2017-04-06 08:36:04 +1200
commit44565cfa9aa5612f1992e8601fe43b5febe413c4 (patch)
tree21c797c2c0d5c57e7c7401b45a0c0494447d62e9 /dev-perl/Audio-WMA
parentdev-perl/List-AllUtils: add ~arm, bug #613158 (diff)
downloadgentoo-44565cfa9aa5612f1992e8601fe43b5febe413c4.tar.gz
gentoo-44565cfa9aa5612f1992e8601fe43b5febe413c4.tar.bz2
gentoo-44565cfa9aa5612f1992e8601fe43b5febe413c4.zip
dev-perl/Audio-WMA: Remove harmful test deps + Fix tests
Stupidly, this depended on POD stuff, but never ran tests... Instead, we no longer depend on POD stuff, nuke POD tests, and now actually run tests. Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'dev-perl/Audio-WMA')
-rw-r--r--dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild14
1 files changed, 9 insertions, 5 deletions
diff --git a/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild b/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild
index 9cf7efe865b0..d39d06b78a7b 100644
--- a/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild
+++ b/dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -14,8 +14,12 @@ KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=""
-DEPEND="
- test? ( dev-perl/Test-Pod
- dev-perl/Test-Pod-Coverage )"
+DEPEND=""
-SRC_TEST="do parallel"
+SRC_TEST=do
+
+src_prepare() {
+ # MI things
+ use test && perl_rm_files t/pod.t t/pod-coverage.t
+ perl-module_src_prepare
+}