no idea what's up with this error message
[gitmo/Moose.git] / xt / author / test-my-dependents.t
CommitLineData
f81522ba 1use strict;
2use warnings;
3
4use Cwd qw( abs_path );
5use Test::More;
6
52c21688 7BEGIN {
a559205a 8 my $help = <<'EOF';
9
10
11 This test will not run unless you set MOOSE_TEST_MD to a true value.
12 Valid values are:
13
14 all Test every distro which depends on Moose except those that we know
15 cannot be tested. This is a lot of distros (thousands).
16
17 MooseX Test all Moose extension distros
18 (MooseX modules plus a few others).
19
20 $true Any other true value runs the default tests. We pick 200 random
21 distros and test them.
22
23EOF
24
25 plan skip_all => $help
52c21688 26 unless $ENV{MOOSE_TEST_MD};
27}
f81522ba 28
4d438a84 29use Test::Requires {
0be78be0 30 'Archive::Zip' => 0, # or else .zip dists won't be able to be installed
31 'Test::DependentModules' => '0.13',
32 'MetaCPAN::API' => '0.33',
4d438a84 33};
0be78be0 34
3bf21566 35use Test::DependentModules qw( test_module );
f81522ba 36
7028866a 37use DateTime;
479647ca 38use List::MoreUtils qw(any);
7028866a 39use Moose ();
7028866a 40
41a0b2a9 41diag( 'Test run performed at: '
42 . DateTime->now
479647ca 43 . ' with Moose '
afcee994 44 . (Moose->VERSION || 'git repo') );
7028866a 45
f81522ba 46$ENV{PERL_TEST_DM_LOG_DIR} = abs_path('.');
e2f01bb9 47delete @ENV{ qw( AUTHOR_TESTING RELEASE_TESTING SMOKE_TESTING ) };
f81522ba 48
28885fe7 49$ENV{ANY_MOOSE} = 'Moose';
50
479647ca 51my $mcpan = MetaCPAN::API->new;
52my $res = $mcpan->post(
53 '/release/_search' => {
54 query => { match_all => {} },
55 size => 5000,
56 filter => { and => [
57 { or => [
58 { term => { 'release.dependency.module' => 'Moose' } },
59 { term => { 'release.dependency.module' => 'Moose::Role' } },
60 { term => { 'release.dependency.module' => 'Moose::Exporter' } },
61 { term => { 'release.dependency.module' => 'Class::MOP' } },
62 { term => { 'release.dependency.module' => 'MooseX::Role::Parameterized' } },
28885fe7 63 { term => { 'release.dependency.module' => 'Any::Moose' } },
479647ca 64 ] },
65 { term => { 'release.status' => 'latest' } },
66 { term => { 'release.maturity' => 'released' } },
67 ] },
68 fields => 'distribution'
69 }
70);
f81522ba 71
479647ca 72my @skip_prefix = qw(Acme Task Bundle);
afcee994 73my %skip;
74my %todo;
75
76my $hash;
77for my $line (<DATA>) {
78 chomp $line;
79 next unless $line =~ /\S/;
80 if ( $line =~ /^# (\w+)/ ) {
81 die "Invalid action in DATA section ($1)"
82 unless $1 eq 'SKIP' || $1 eq 'TODO';
83 $hash = $1 eq 'SKIP' ? \%skip : \%todo;
84 }
85
86 my ( $dist, $reason ) = $line =~ /^(\S*)\s*(?:#\s*(.*)\s*)?$/;
87 next unless defined $dist && length $dist;
88
89 $hash->{$dist} = $reason;
90}
91dab191 91
479647ca 92my %name_fix = (
b595f862 93 'App-passmanager' => 'App::PassManager',
479647ca 94 'App-PipeFilter' => 'App::PipeFilter::Generic',
95 'Constructible' => 'Constructible::Maxima',
96 'DCOLLINS-ANN-Locals' => 'DCOLLINS::ANN::Robot',
97 'Dist-Zilla-Deb' => 'Dist::Zilla::Plugin::Deb::VersionFromChangelog',
479647ca 98 'Dist-Zilla-Plugins-CJM' => 'Dist::Zilla::Plugin::TemplateCJM',
72dc4616 99 'Dist-Zilla-Plugin-TemplateFile' => 'Dist::Zilla::Plugin::TemplateFiles',
b595f862 100 'Google-Directions' => 'Google::Directions::Client',
479647ca 101 'helm' => 'Helm',
b595f862 102 'HTML-Untemplate' => 'HTML::Linear',
479647ca 103 'marc-moose' => 'MARC::Moose',
104 'mobirc' => 'App::Mobirc',
72dc4616 105 'OWL-Simple' => 'OWL::Simple::Class',
106 'Patterns-ChainOfResponsibility' => 'Patterns::ChainOfResponsibility::Application',
4de6e6a5 107 'Pod-Elemental-Transfomer-VimHTML' => 'Pod::Elemental::Transformer::VimHTML',
72dc4616 108 'Role-Identifiable' => 'Role::Identifiable::HasIdent',
479647ca 109 'smokebrew' => 'App::SmokeBrew',
b595f862 110 'Treex-Parser-MSTperl' => 'Treex::Tool::Parser::MSTperl',
479647ca 111 'v6-alpha' => 'v6',
b595f862 112 'WebService-LOC-CongRec' => 'WebService::LOC::CongRec::Crawler',
72dc4616 113 'X11-XCB' => 'X11::XCB::Connection',
114 'XML-Ant-BuildFile' => 'XML::Ant::BuildFile::Project',
479647ca 115);
916fcb5c 116
9fe055d9 117my @dists = sort
118 grep { !$skip{$_} }
119 grep { my $dist = $_; !any { $dist =~ /^$_-/ } @skip_prefix }
120 map { $_->{fields}{distribution} }
121 @{ $res->{hits}{hits} };
479647ca 122
a559205a 123if ( $ENV{MOOSE_TEST_MD} eq 'MooseX' ) {
124 @dists = grep { /^(?:MooseX-|Fey-ORM)/ } @dists;
125}
126elsif ( $ENV{MOOSE_TEST_MD} ne 'all' ) {
916fcb5c 127 diag(
33012ea9 128 <<'EOF'
129 Picking 200 random dependents to test. Set MOOSE_TEST_MD=all to test all
130 dependents or MOOSE_TEST_MD=MooseX to test extension modules only.
131EOF
916fcb5c 132 );
133
134 my %indexes;
135 while ( keys %indexes < 200 ) {
136 $indexes{ int rand( scalar @dists ) } = 1;
137 }
138
139 @dists = @dists[ sort keys %indexes ];
140}
141
23b59110 142plan tests => scalar @dists;
9fe055d9 143for my $dist (@dists) {
144 note($dist);
145 my $module = $dist;
146 $module = $name_fix{$module} if exists $name_fix{$module};
147 if ($todo{$dist}) {
afcee994 148 my $reason = $todo{$dist};
3bf21566 149 $reason = '???' unless defined $reason;
7e39015e 150 local $TODO = $reason;
151 eval { test_module($module); 1 }
152 or fail("Died when testing $module: $@");
3bf21566 153 }
154 else {
7e39015e 155 eval { test_module($module); 1 }
156 or fail("Died when testing $module: $@");
3bf21566 157 }
158}
734e40ed 159
c5e3151e 160__DATA__
afcee994 161# SKIP: indexing issues (test::dm bugs?)
0aff3f28 162Alice # couldn't find on cpan
b595f862 163Hopkins # couldn't find on cpan
b595f862 164PostScript-Barcode # couldn't find on cpan
d1dc6007 165WWW-Mechanize-Query # couldn't find on cpan
b595f862 166
afcee994 167# SKIP: doesn't install deps properly (test::dm bugs?)
0aff3f28 168App-Benchmark-Accessors # Mojo::Base isn't installed
169Bot-BasicBot-Pluggable # Crypt::SaltedHash isn't installed
170Code-Statistics # MooseX::HasDefaults::RO isn't installed
171Dist-Zilla-PluginBundle-MITHALDU # List::AllUtils isn't installed
172Dist-Zilla-Util-FileGenerator # MooseX::HasDefaults::RO isn't installed
173EBI-FGPT-FuzzyRecogniser # GO::Parser isn't installed
174Erlang-Parser # Parse::Yapp::Driver isn't installed
175Foorum # Sphinx::Search isn't installed
176Grimlock # DBIx::Class::EncodedColumn isn't installed
177Locale-Handle-Pluggable # MooseX::Types::VariantTable::Declare isn't installed
178mobirc # HTTP::Session::State::GUID isn't installed
179Net-Bamboo # XML::Tidy isn't installed
180Tatsumaki-Template-Markapl # Tatsumaki::Template isn't installed
181Text-Tradition # Bio::Phylo::IO isn't installed
c62b4642 182WebService-Strava # Any::URI::Escape isn't installed
ec58481b 183
afcee994 184# SKIP: no tests
72dc4616 185AI-ExpertSystem-Advanced # no tests
186API-Assembla # no tests
187App-mkfeyorm # no tests
acf165ea 188App-passmanager # no tests
0aff3f28 189App-Scrobble # no tests
72dc4616 190Bot-Applebot # no tests
191Catalyst-Authentication-Credential-Facebook-OAuth2 # no tests
192Catalyst-Authentication-Store-Fey-ORM # no tests
193Catalyst-Controller-MovableType # no tests
194Catalyst-Model-MenuGrinder # no tests
195Chef # no tests
196Data-SearchEngine-ElasticSearch # no tests
197Dist-Zilla-MintingProfile-Author-ARODLAND # no tests
198Dist-Zilla-PluginBundle-ARODLAND # no tests
199Dist-Zilla-PluginBundle-Author-OLIVER # no tests
200Dist-Zilla-PluginBundle-NUFFIN # no tests
201Dist-Zilla-Plugin-DualLife # no tests
a841b7e1 202Dist-Zilla-Plugin-Git-Describe # no tests
72dc4616 203Dist-Zilla-Plugin-GitFlow # no tests
204Dist-Zilla-Plugin-GitFmtChanges # no tests
205Dist-Zilla-Plugin-MetaResourcesFromGit # no tests
206Dist-Zilla-Plugin-ModuleBuild-OptionalXS # no tests
207Dist-Zilla-Plugin-Rsync # no tests
208Dist-Zilla-Plugin-TemplateFile # no tests
209Dist-Zilla-Plugin-UploadToDuckPAN # no tests
210Finance-Bank-SuomenVerkkomaksut # no tests
211Games-HotPotato # no tests
212IO-Storm # no tests
213JIRA-Client-REST # no tests
214Kafka-Client # no tests
215LWP-UserAgent-OfflineCache # no tests
216Markdown-Pod # no tests
217MooseX-Types-DateTimeX # no tests
b8e5ce4a 218MooseX-Types-DateTime-MoreCoercions # no tests unless DateTime::Format::DateManip is installed
0aff3f28 219Net-Azure-BlobService # no tests
72dc4616 220Net-Dropbox # no tests
221Net-Flowdock # no tests
222Net-OpenStack-Attack # no tests
223Net-Ostrich # no tests
224Net-Recurly # no tests
225OpenDocument-Template # no tests
0aff3f28 226Pod-Weaver-Section-Consumes # no tests
72dc4616 227Pod-Weaver-Section-Encoding # no tests
0aff3f28 228Pod-Weaver-Section-Extends # no tests
0729e229 229P50Tools # no tests
72dc4616 230POE-Component-Server-MySQL # no tests
231Random-Quantum # no tests
232SchemaEvolution # no tests
233STD # no tests
234Test-System # no tests
235Test-WWW-Mechanize-Dancer # no tests
236WebService-Buxfer # no tests
237WebService-CloudFlare-Host # no tests
238WWW-MenuGrinder # no tests
239WWW-WuFoo # no tests
240
afcee994 241# SKIP: external dependencies
dfa11004 242Alien-Ditaa # runs java code
b8e5ce4a 243AnyEvent-MSN # requires Net::SSLeay (which requires libssl)
2ec35f55 244AnyEvent-Multilog # requires multilog
245AnyEvent-Net-Curl-Queued # requires libcurl
72dc4616 246AnyEvent-ZeroMQ # requires zeromq installation
247AnyMQ-ZeroMQ # requires zeromq installation
248Apache2-HttpEquiv # requires apache (for mod_perl)
249App-Mimosa # requires fastacmd
250App-PgCryobit # requires postgres installation
67ede39e 251App-SimplenoteSync # requires File::ExtAttr which requires libattr
72dc4616 252Archive-RPM # requires cpio
2ec35f55 253Bot-Jabbot # requires libidn
72dc4616 254Catalyst-Engine-Stomp # depends on alien::activemq
b5937bb0 255Catalyst-Plugin-Session-Store-Memcached # requires memcached
72dc4616 256Cave-Wrapper # requires cave to be installed
257CHI-Driver-Redis # requires redis server
258Crypt-Random-Source-Strong-Win32 # windows only
2ec35f55 259Curses-Toolkit # requires Curses which requires ncurses library
72dc4616 260Dackup # requires ssh
261Data-Collector # requires ssh
a841b7e1 262Data-Riak # requires riak
72dc4616 263DBIx-PgLink # requires postgres installation
264Dist-Zilla-Plugin-Subversion # requires svn bindings
265Dist-Zilla-Plugin-SVK # requires svn bindings
266Dist-Zilla-Plugin-SvnObtain # requires svn bindings
267Fedora-App-MaintainerTools # requires rpm to be installed
268Fedora-App-ReviewTool # requires koji to be installed
2ec35f55 269Fuse-Template # requires libfuse
72dc4616 270Games-HotPotato # requires sdl
271Games-Tetris-Complete # requires threads
272helm # requires ssh
273HTML-Barcode-QRCode # requires libqrencode
2ec35f55 274IRC-RemoteControl # requires libssh2
72dc4616 275JavaScript-Sprockets # requires sprocketize
276JavaScript-V8x-TestMoreish # requires v8
277Koha-Contrib-Tamil # requires yaz
278K # requires kx
279Lighttpd-Control # requires lighttpd
280Lingua-TreeTagger # requires treetagger to be installed
281Math-Lsoda # requires f77
3a1f4e3f 282Message-Passing-ZeroMQ # requires zeromq installation
72dc4616 283MongoDBI # requires mongo
284MongoDB # requires mongo
285MSWord-ToHTML # requires abiword to be installed
2ec35f55 286Net-DBus-Skype # requires dbus
72dc4616 287Net-Route # requires route
afcee994 288Net-SFTP-Foreign-Exceptional # depends on running ssh
2ec35f55 289Net-UpYun # requires curl
290Net-ZooTool # requires curl
72dc4616 291Nginx-Control # requires nginx to be installed
292NLP-Service # requires javac
7e511a8c 293Padre-Plugin-Cookbook # requires Wx
72dc4616 294Padre-Plugin-Moose # requires threaded perl
295Padre-Plugin-PDL # requires threaded perl
296Padre-Plugin-Snippet # requires threaded perl
297Paludis-UseCleaner # depends on cave::wrapper
298Perlanet # HTML::Tidy requires tidyp
299Perl-Dist-Strawberry-BuildPerl-5123 # windows only
300Perl-Dist-Strawberry-BuildPerl-5123 # windows only
301Perl-Dist-WiX-BuildPerl-5123 # windows only
302Perl-Dist-WiX # windows only
303Perl-Dist-WiX # windows only
304POE-Component-OpenSSH # requires ssh
305RDF-TrineX-RuleEngine-Jena # requires Jena
306SimpleDB-Class # requires memcached
307SVN-Simple-Hook # requires svn
308SVN-Tree # requires svn
67ede39e 309Tapper-MCP # depends on everything under the sun - some of which is broken
72dc4616 310Template-JavaScript # requires v8
2ec35f55 311TheSchwartz-Moosified # requires DBI::Pg ?
312WebService-SendGrid # requires curl
313WebService-Tesco-API # requires curl
cdb8d8b2 314WWW-Contact # depends on curl
2ec35f55 315WWW-Curl-Simple # requires curl
72dc4616 316ZeroMQ-PubSub # requires zmq
317ZMQ-Declare # requires zmq
318
afcee994 319# SKIP: flaky internet tests
6539278a 320iTransact-Lite # tests rely on internet site
72cfef4f 321Unicode-Emoji-E4U # tests rely on internet site
322WWW-eNom # tests rely on internet site
0aff3f28 323WWW-Finances-Bovespa # tests rely on internet site
324WWW-Vimeo-Download # tests rely on internet site
72cfef4f 325WWW-YouTube-Download-Channel # tests rely on internet site
0aff3f28 326
afcee994 327# SKIP: graphical
72dc4616 328App-CPAN2Pkg # tk tests are graphical
329App-USBKeyCopyCon # gtk tests are graphical
330CatalystX-Restarter-GTK # gtk tests are graphical
331Forest-Tree-Viewer-Gtk2 # gtk tests are graphical
332Games-Pandemic # tk tests are graphical
333Games-RailRoad # tk tests are graphical
334Games-Risk # tk tests are graphical
335Log-Dispatch-Gtk2-Notify # gtk tests are graphical
336LPDS # gtk tests are graphical
337Periscope # gtk tests are graphical
338Tk-Role-Dialog # tk tests are graphical
339Weaving-Tablet # tk tests are graphical
479647ca 340
afcee994 341# SKIP: prompts (or a dep prompts) or does something else dumb
342Bot-Backbone # poe-loop-ev prompts
343Cache-Ehcache # hangs if server exists on port 8080
344CM-Permutation # OpenGL uses graphics in Makefile.PL
345Date-Biorhythm # Date::Business prompts in Makefile.PL
2282de12 346DBIx-VersionedDDL # runs a script with /usr/bin/perl in the shbang line
347File-Tail-Scribe # tests hang
afcee994 348Gearman-Driver # spews tar errors
4a7b93bf 349IPC-AnyEvent-Gearman # tests hang
a841b7e1 350Lingua-YALI # runs scripts with /usr/bin/env perl in the shbang line
afcee994 351Net-SSH-Mechanize # the mock-ssh script it runs seems to spin endlessly
726ade9b 352POE-Component-Server-SimpleHTTP-PreFork # tests hang
afcee994 353WWW-Hashdb # test hangs, pegging cpu
354Zucchini # File::Rsync prompts in Makefile.PL
2282de12 355
afcee994 356# TODO: failing for a reason
8f655ca2 357Algorithm-KernelKMeans # mx-types-common changes broke it
72dc4616 358AnyEvent-BitTorrent # broken
359AnyEvent-Cron # intermittent failures
8f655ca2 360AnyEvent-Inotify-Simple # ??? (maybe issue with test::sweet)
361AnyEvent-JSONRPC # tests require recommended deps
362AnyEvent-Retry # mx-types-common changes broke it
72dc4616 363AnyMongo # doesn't compile
364App-ArchiveDevelCover # depends on nonexistent testdata::setup
8f655ca2 365App-Dataninja # bad M::I install in inc/
ec58481b 366App-Fotagger # Imager doesn't compile
8f655ca2 367App-Magpie # deps on URPM which doesn't exist
72dc4616 368App-MediaWiki2Git # git::repository is broken
369App-Munchies # depends on XML::DTD
8f655ca2 370App-TemplateServer # broken use of types
371App-TemplateServer-Provider-HTML-Template # dep on app-templateserver
372App-TemplateServer-Provider-Mason # dep on app-templateserver
373App-TemplateServer-Provider-TD # dep on app-templateserver
72dc4616 374App-Twimap # dep on Web::oEmbed::Common
375App-Validation-Automation # dep on Switch
376App-Wubot # broken
377Beagle # depends on term::readline::perl
8f655ca2 378Cache-Profile # broken
8f655ca2 379Catalyst-Authentication-Store-LDAP-AD-Class # pod coverage fail
8f655ca2 380Catalyst-Controller-Resources # broken
72dc4616 381Catalyst-Controller-SOAP # broken
e8ba9394 382Catalyst-Model-Sedna # deps on Alien-Sedna which doesn't exist
383Catalyst-Plugin-Continuation # undeclared dep
72dc4616 384Catalyst-Plugin-Session-State-Cookie # broken
385Catalyst-Plugin-Session-Store-TestMemcached # dep with corrupt archive
e8ba9394 386Catalyst-Plugin-SwiffUploaderCookieHack # undeclared dep
72dc4616 387Catalyst-TraitFor-Request-PerLanguageDomains # dep on ::State::Cookie
cfac852c 388CatalystX-ExtJS-Direct # broken
72dc4616 389CatalystX-I18N # dep on ::State::Cookie
e8ba9394 390CatalystX-MooseComponent # broken
e8ba9394 391CatalystX-SimpleLogin # broken
392CatalystX-Usul # proc::processtable doesn't load
e8ba9394 393Cheater # parse::randgen is broken
394Class-OWL # uses CMOP::Class without loading cmop
395Cogwheel # uses ancient moose apis
0aff3f28 396Config-Model # broken
397Config-Model-Backend-Augeas # deps on Config::Model
398Config-Model-OpenSsh # deps on Config::Model
e8ba9394 399Constructible # GD::SVG is a broken dist
72dc4616 400Constructible-Maxima # GD::SVG is a broken dist
e8ba9394 401Coro-Amazon-SimpleDB # amazon::simpledb::client doesn't exist
4513d67e 402CPAN-Digger # requires DBD::SQLite
72dc4616 403Data-AMF # missing dep on YAML
cf9832d2 404Data-Apache-mod_status # invalid characters in type name
72dc4616 405Data-Edit # dist is missing some modules
b595f862 406Data-Feed # broken (only sometimes?)
cf9832d2 407Data-PackageName # broken
408Data-Pipeline # uses ancient moose apis
72dc4616 409Data-SCORM # pod coverage fail
cf9832d2 410DayDayUp # MojoX-Fixup-XHTML doesn't exist
ec58481b 411DBICx-Modeler-Generator # broken (weirdly)
ec58481b 412DBIx-SchemaChecksum # broken
413Debian-Apt-PM # configure time failures
cf9832d2 414Devel-Events # broken (role conflict)
72dc4616 415Dist-Zilla-Deb # pod coverage fail
416Dist-Zilla-Plugin-ChangelogFromGit-Debian # git::repository is broken
24871830 417Dist-Zilla-Plugin-CheckChangesHasContent # broken
3b1a1b22 418Dist-Zilla-Plugin-Git # tests fail when run in a temp dir
43dff819 419Dist-Zilla-Plugin-PerlTidy # expects to find dzil in the path
cc519dbb 420Dist-Zilla-Plugin-Pinto-Add # deps on Pinto::Common
9acdcfbb 421Dist-Zilla-Plugin-ProgCriticTests # broken
24871830 422Dist-Zilla-Plugin-Test-ReportPrereqs # broken
9acdcfbb 423DustyDB # uses old moose apis
72dc4616 424Dwimmer # broken
72dc4616 425Facebook-Graph # broken
726ade9b 426FCGI-Engine # runs scripts without using $^X
72dc4616 427Fedora-Bugzilla # deps on nonexistent things
ec58481b 428FFmpeg-Thumbnail # undeclared dep
9acdcfbb 429File-DataClass # XML::DTD is a broken dist
72dc4616 430File-Stat-Moose # old moose apis
4de6e6a5 431File-Tail-Dir # intermittent fails (i think)
9acdcfbb 432Form-Factory # uses old moose apis
726ade9b 433Form-Sensible # broken
72dc4616 434FormValidator-Nested # broken
9acdcfbb 435Frost # broken
d1dc6007 436Games-Dice-Loaded # flaky tests
437Gitalist # broken
ec58481b 438GOBO # coerce with no coercion
72dc4616 439Google-Chart # recreating type constraints
9acdcfbb 440Google-Spreadsheet-Agent # pod::coverage fail
9acdcfbb 441Hobocamp # configure_requires needs EU::CChecker
442Horris # App::Horris isn't on cpan
72dc4616 443HTML-Grabber # pod::coverage fail
ec58481b 444HTML-TreeBuilderX-ASP_NET # broken
72dc4616 445HTTP-Engine-Middleware # missing dep on yaml
446Image-Robohash # Graphics::Magick doesn't exist
9acdcfbb 447JavaScript-Framework-jQuery # coerce with no coercion
c62e19f4 448Jenkins-NotificationListener # missing dep on File::Read
72dc4616 449Jifty # Test::WWW::Selenium needs devel::repl
450JSORB # broken
9acdcfbb 451Jungle # broken
452Kamaitachi # pod::coverage fail
453KiokuDB-Backend-Files # broken
b5937bb0 454LaTeX-TikZ # broken (with moose)
0aff3f28 455marc-moose # broken (only sometimes?)
9acdcfbb 456Mail-Summary-Tools # DT::Format::DateManip is broken
457MediaWiki-USERINFO # broken
21f9bca6 458Metabase-Backend-MongoDB # broken
a31ce80a 459Metabase-Backend-SQL # broken (I think)
0aff3f28 460Method-Signatures # doesn't like ANY_MOOSE=Moose
ec58481b 461mobirc # http::engine broken
9acdcfbb 462MooseX-Attribute-Prototype # uses old moose apis
463MooseX-DBIC-Scaffold # needs unreleased sql-translator
9acdcfbb 464MooseX-Documenter # broken
ec58481b 465MooseX-DOM # "no Moose" unimports confess
9acdcfbb 466MooseX-Error-Exception-Class # metaclass compat breakage
72dc4616 467MooseX-Getopt-Usage # missing dep on Test::Class
3b1a1b22 468MooseX-GTIN # broken (under jenkins, at least)
9acdcfbb 469MooseX-Meta-Attribute-Index # old moose apis
470MooseX-Meta-Attribute-Lvalue # old moose apis
67ede39e 471MooseX-Role-XMLRPC-Client # requires LWP::Protocol::http which requires libssl
bab36045 472MooseX-Scaffold # broken
9acdcfbb 473MooseX-Struct # ancient moose apis
72dc4616 474MooseX-Types-Parameterizable # broken
106c1020 475MooseX-WithCache # broken
b5937bb0 476MouseX-Types # broken (with moose)
72dc4616 477MySQL-Util # pod-coverage fail
478Nagios-Passive # broken
b5937bb0 479Net-APNS # broken (with moose)
9acdcfbb 480Net-FluidDB # broken
481Net-Fluidinfo # broken
72dc4616 482Net-Google-Blogger # broken
483Net-Google-FederatedLogin # broken
ec58481b 484NetHack-Item # NH::Monster::Spoiler is broken
485NetHack-Monster-Spoiler # broken (MX::CA issues)
9acdcfbb 486Net-HTTP-Factual # broken
67ede39e 487Net-Jabber-Bot # broken
9acdcfbb 488Net-Journyx # broken
72dc4616 489Net-Mollom # broken
9acdcfbb 490Net-Parliament # broken
491Net-Plurk # broken
2ec35f55 492Net-SSLeay-OO # broken
9acdcfbb 493Net-StackExchange # broken
c62b4642 494Norma # fails when trying to write to a read-only SQLite db file under jenkins, also fails when run manually
9acdcfbb 495ODG-Record # Test::Benchmark broken
ec58481b 496Perlbal-Control # proc::processtable doesn't load
ec58481b 497Pg-BulkCopy # hardcodes /usr/bin/perl
72dc4616 498Pinto-Common # broken
cc519dbb 499Pinto-Remove # deps on Pinto::Common
500Pinto-Server # deps on Pinto::Common
72dc4616 501Plack-Middleware-Image-Scale # Image::Scale is broken
4de6e6a5 502Pod-Parser-I18N # missing dep on Data::Localize
ec58481b 503POE-Component-CPAN-Mirror-Multiplexer # broken
6539278a 504POE-Component-DirWatch # intermittent failures
505POE-Component-DirWatch-Object # intermittent failures
9acdcfbb 506POE-Component-ResourcePool # broken
9acdcfbb 507POE-Component-Server-PSGI # broken deps
ec58481b 508POE-Component-Server-SimpleHTTP-PreFork # broken deps
d1dc6007 509Poet # missing dep on Log::Any::Adapter::Log4perl
9acdcfbb 510POEx-ProxySession # broken deps
511POEx-PubSub # broken deps
512POEx-WorkerPool # broken deps
72dc4616 513PostScript-ScheduleGrid-XMLTV # XMLTV doesn't exist
514PRANG # broken
515Prophet # depends on term::readline::perl
9acdcfbb 516Queue-Leaky # broken
72dc4616 517Railsish # dep on nonexistent dist
9acdcfbb 518RDF-Server # "no Moose" unimports confess
9acdcfbb 519Reaction # signatures is broken
9acdcfbb 520Reflexive-Role-DataMover # broken (reflex::role changes?)
521Reflexive-Role-TCPServer # broken (reflex::role changes?)
72dc4616 522Reflexive-Stream-Filtering # broken
ec58481b 523RPC-Any # broken
9acdcfbb 524Scene-Graph # has '+attr' in roles
9acdcfbb 525Server-Control # proc::processtable doesn't load
0aff3f28 526Shipment # locale::subcountry is broken
72dc4616 527Silki # image::magick is broken
9acdcfbb 528SilkiX-Converter-Kwiki # file::mimeinfo expects (?-xism:
72dc4616 529Sloth # rest::utils is broken
d1dc6007 530Sque # couldn't fork server for testing
ec58481b 531SRS-EPP-Proxy # depends on xml::epp
9acdcfbb 532String-Blender # broken
533TAEB # broken
534Tail-Tool # Getopt::Alt doesn't exist
72dc4616 535Tapper-CLI # sys::info::driver::linux is broken
9acdcfbb 536Tapper-Installer # sys::info::driver::linux is broken
9acdcfbb 537Tapper-MCP-MessageReceiver # sys::info::driver::linux is broken
538Tapper-Reports-API # sys::info::driver::linux is broken
ec58481b 539Tapper-Testplan # sys::info::driver::linux is broken
9acdcfbb 540Telephone-Mnemonic-US # rpm-build-perl is broken
b5937bb0 541Template-Plugin-Heritable # weird dep issues (not test::dm related)
9acdcfbb 542Test-A8N # broken
ec58481b 543Test-Daily # configure errors
72dc4616 544Test-Pockito # broken
ec58481b 545Test-SFTP # Term::ReadPassword prompts in tests
72dc4616 546Test-WWW-Selenium-More # Test::WWW::Selenium needs devel::repl
547Text-Clevery # broken
726ade9b 548Text-Zilla # broken
72dc4616 549Thorium # depends on Hobocamp
9acdcfbb 550TryCatch-Error # broken
72dc4616 551Verby # deps on poe::component::resourcepool
552Weather-TW # missing dep on Mojo::DOM
553Web-API-Mapper # broken
554WebNano-Controller-CRUD # broken
cdb8d8b2 555Webservice-Intermine # broken tests
ec58481b 556WebService-Yes24 # broken
557WiX3 # broken
4513d67e 558WWW-Alltop # XML::SimpleObject configure fail
3b1a1b22 559WWW-Comix # uses ancient Moose::Policy stuff
d1dc6007 560WWW-DataWiki # broken
9acdcfbb 561WWW-Fandango # bad dist
ec58481b 562WWW-FMyLife # broken
0aff3f28 563WWW-Mechanize-Cached # tries to read from wrong build dir?
9acdcfbb 564WWW-Metalgate # Cache is broken
565WWW-Scramble # pod::coverage fail
72dc4616 566WWW-Sitemapper # broken
9acdcfbb 567WWW-StaticBlog # time::sofar is broken
72dc4616 568WWW-WebKit # missing configure_req on EU::PkgConfig
9acdcfbb 569WWW-Yahoo-Lyrics-JP # broken
9acdcfbb 570XIRCD # undeclared deps
571XML-EPP # coerce without coercion
72dc4616 572XML-SRS # deps on prang
2ec35f55 573XML-Writer-Compiler # broken tests
9acdcfbb 574Yukki # git::repository is broken