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