Date: Fri, 6 Jun 2008 17:20:12 +0100 Subject: FAIL Test-MonitorSites-0.13 darwin-2level 7.9.0 From: "JJ" To: cpan-testers@perl.org Cc: HESCO@cpan.org X-Reported-Via: Test::Reporter 1.4001, via CPAN::Reporter 1.15 ------------------------------ PROGRAM OUTPUT ------------------------------ Output from '/Users/jj/perl/perl-5.8.1/bin/perl Makefile.PL': Can't locate File/Util.pm in @INC (@INC contains: /Users/jj/perl/perl-5.8.1/lib/5.8.1/darwin-2level /Users/jj/perl/perl-5.8.1/lib/5.8.1 /Users/jj/perl/pe rl-5.8.1/lib/site_perl/5.8.1/darwin-2level /Users/jj/perl/perl-5.8.1/lib/site_perl/5.8.1 /Users/jj/perl/perl-5.8.1/lib/site_perl .) at Makefile.PL line 4 . BEGIN failed--compilation aborted at Makefile.PL line 4. ------------------------------ PREREQUISITES ------------------------------ Prerequisite modules loaded: No requirements found #### use strict; use warnings; use ExtUtils::MakeMaker; use File::Util; print "==> These tests generate email output <==\n"; print "==> Where would you like your test results sent? <==\n"; print "==> By default test email summaries go to dev-null\@example.com <==\n"; print "==> By default test sms summaries go to dev-null\@example.com <==\n"; my $email = prompt('Send test email summaries to?','devnull@example.com'); my $sms = prompt('Send test sms summaries to?','devnull@example.com'); my($f) = File::Util->new(); my @config_files = $f->list_dir( 't/ini' , '--pattern=\.ini$' ); foreach my $config_file (@config_files){ print "writing t/$config_file \n"; open ('INI','>',"t/$config_file"); open ('SRC',"t/ini/$config_file"); while(){ if(m/^sms_recipients =/){ $_ =~ s/$_/sms_recipients = '$sms'\n/; } if(m/^results_recipients =/){ $_ =~ s/$_/results_recipients = '$email'\n/; } print INI $_; } close SRC; close INI; } WriteMakefile( NAME => 'Test::MonitorSites', AUTHOR => 'Hugh Esco ', VERSION_FROM => 'lib/Test/MonitorSites.pm', ABSTRACT_FROM => 'lib/Test/MonitorSites.pm', PL_FILES => {}, PREREQ_PM => { 'Cwd' => 0, 'Carp' => 0, 'File::Util' => 0, 'Data::Dumper' => 0, 'Test::More' => 0, 'Test::Pod' => 1.14, 'Test::Pod::Coverage' => 1.04, 'Test::Builder' => 0, 'Mail::Mailer' => 0, 'Config::Simple' => 0, 'WWW::Mechanize' => 0, 'Test::WWW::Mechanize' => 0, 'Test::HTML::Tidy' => 0, 'HTTP::Request::Common' => 0, 'Test::Builder::Tester' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Test-MonitorSites-* t/*.ini' }, ); #### my($f) = File::Util->new(); my @config_files = $f->list_dir( 't/ini' , '--pattern=\.ini$' ); foreach my $config_file (@config_files){