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