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