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