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