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