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