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