diff options
author | Kent Fredric <kentnl@gentoo.org> | 2016-08-05 21:25:25 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2016-08-05 21:25:39 +1200 |
commit | 132450d0e56aba7fe7690aefffa766a01438c7bf (patch) | |
tree | ece271c31975a8df5fae9b55518109b272e53e06 /dev-perl/XML-RSS/files | |
parent | dev-java/icedtea: Remove old 7.2.6.6 (diff) | |
download | gentoo-132450d0e56aba7fe7690aefffa766a01438c7bf.tar.gz gentoo-132450d0e56aba7fe7690aefffa766a01438c7bf.tar.bz2 gentoo-132450d0e56aba7fe7690aefffa766a01438c7bf.zip |
dev-perl/XML-RSS: Remove POD/Author tests.
This is a little unusual because they've subclassed Module::Build
to so some horrible things that mean there are *2* manifests, one for tests
which it also pointlessly tests.
So stock deleting the bad tests results in test failures.
The only way to subjugate this bad behaviour is patch out the use of the
test-specific sub-class to avoid those pointless testing shenanigans.
Package-Manager: portage-2.3.0
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"
Diffstat (limited to 'dev-perl/XML-RSS/files')
-rw-r--r-- | dev-perl/XML-RSS/files/nomanifest.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-perl/XML-RSS/files/nomanifest.patch b/dev-perl/XML-RSS/files/nomanifest.patch new file mode 100644 index 000000000000..fcade6be4cc0 --- /dev/null +++ b/dev-perl/XML-RSS/files/nomanifest.patch @@ -0,0 +1,26 @@ +diff --git a/Build.PL b/Build.PL +index 010efb6..4559535 100644 +--- a/Build.PL ++++ b/Build.PL +@@ -2,11 +2,10 @@ use strict; + use warnings; + + use File::Spec; +-use lib File::Spec->catdir(File::Spec->curdir(), "inc"); + +-use Test::Run::Builder::Manifest; ++use Module::Build; + +-my $build = Test::Run::Builder::Manifest->new( ++my $build = Module::Build->new( + 'module_name' => "XML::RSS", + 'requires' => + { +@@ -19,7 +18,6 @@ my $build = Test::Run::Builder::Manifest->new( + }, + build_requires => + { +- 'Test::Manifest' => '0.9', + 'Test::More' => 0, + }, + configure_requires => |