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