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