mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-perl/HTML-Format: Fix bad author tests
Lots of these tests declare dependencies which never get used, and aren't used by us, but another test checks for them being installed and subsequently fails. This patches out those superfluous dependencies. Package-Manager: portage-2.3.3
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
@@ -33,3 +33,12 @@ DEPEND="${RDEPEND}
|
||||
>=virtual/perl-Test-Simple-0.960.0
|
||||
)
|
||||
"
|
||||
src_test() {
|
||||
local badfile
|
||||
perl_rm_files t/author-* t/release-*
|
||||
for badfile in t/000-report-versions.t META.yml; do
|
||||
einfo "Stripping bad test dependencies from ${badfile}"
|
||||
sed -i -r -e '/Test::(CPAN|EOL|Kwalitee|NoTabs|Pod|Port|YAML)/d' "${badfile}" || die "Can't fix bad deps in ${badfile}"
|
||||
done
|
||||
perl-module_src_test
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user