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