dev-perl/Audio-WMA: Remove harmful test deps + Fix tests
authorKent Fredric <kentnl@gentoo.org>
Wed, 5 Apr 2017 20:35:48 +0000 (08:35 +1200)
committerKent Fredric <kentnl@gentoo.org>
Wed, 5 Apr 2017 20:36:04 +0000 (08:36 +1200)
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

dev-perl/Audio-WMA/Audio-WMA-1.300.0.ebuild

index 9cf7efe865b082b18d6eede3ef2896b0910f450b..d39d06b78a7b18a797a866a566fa11ac80b70d47 100644 (file)
@@ -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
+}