なんだこれは

はてなダイアリーから移転しました。

and I do faults

なんだか、gnuplotで日付でグラフ書いていたんだけど、どうも線形回帰が使いにくい。
何とかならないものかと思っていた。

んー、それperlでできるんじゃない?

Statistics::OLSでできるらしいよ!

というわけでやってみた。

準備

日付データ使いにくいということで、ダイエット開始日からの日数と、体重、脂肪率、脂肪重の半角スペース区切りのデータを作成することに!

それから、cpanで Statistics::OLS をいれてみた!

でごにょごにょしてみた。

しいぱん!

mac portにみつからない!なんで無いんだよ!とかいわずにcpanでGo!Go!
マニアックだなとか言わない!*1

sudo cpan Statistics::OLS

すぐおわる。

CPAN: Storable loaded ok (v2.19)
Going to read /Users/fu7mu4/.cpan/Metadata
Database was generated on Sun, 31 Jan 2010 03:37:56 GMT
CPAN: LWP::UserAgent loaded ok (v5.835)
CPAN: Time::HiRes loaded ok (v1.9715)
Fetching with LWP:
http://www.perl.org/CPAN/authors/01mailrc.txt.gz
Going to read /Users/fu7mu4/.cpan/sources/authors/01mailrc.txt.gz
CPAN: Compress::Zlib loaded ok (v2.027)
............................................................................DONE
Fetching with LWP:
http://www.perl.org/CPAN/modules/02packages.details.txt.gz
Going to read /Users/fu7mu4/.cpan/sources/modules/02packages.details.txt.gz
Database was generated on Sat, 10 Jul 2010 02:28:18 GMT
...............
New CPAN.pm version (v1.9402) available.
[Currently running version is v1.9301]
You might want to try
install CPAN
reload cpan
to both upgrade CPAN.pm and run the new version without leaving
the current session.


.............................................................DONE
Fetching with LWP:
http://www.perl.org/CPAN/modules/03modlist.data.gz
Going to read /Users/fu7mu4/.cpan/sources/modules/03modlist.data.gz
............................................................................DONE
Going to write /Users/fu7mu4/.cpan/Metadata
Running install for module 'Statistics::OLS'
CPAN: Data::Dumper loaded ok (v2.121_17)
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for S/SM/SMORTON/Statistics-OLS-0.07.tar.gz
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/S/SM/SMORTON/Statistics-OLS-0.07.tar.gz

CPAN: checksum security checks disabled because Digest::SHA not installed.
Please consider installing the Digest::SHA module.

x Statistics-OLS-0.07/
x Statistics-OLS-0.07/Makefile.PL
x Statistics-OLS-0.07/OLS.pm
x Statistics-OLS-0.07/Changes
x Statistics-OLS-0.07/test.pl
x Statistics-OLS-0.07/README
x Statistics-OLS-0.07/MANIFEST
CPAN: File::Temp loaded ok (v0.20)

CPAN.pm: Going to build S/SM/SMORTON/Statistics-OLS-0.07.tar.gz

Checking if your kit is complete...
Looks good
Writing Makefile for Statistics::OLS
cp OLS.pm blib/lib/Statistics/OLS.pm
Manifying blib/man3/Statistics::OLS.3pm
OLS.pm:610: Unknown escape E
SMORTON/Statistics-OLS-0.07.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-Iblib/lib" "-Iblib/arch" test.pl
1..2
ok 1
ok 2
SMORTON/Statistics-OLS-0.07.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/Statistics-OLS-0.07-7pNlse/blib/arch /Users/fu7mu4/.cpan/build/Statistics-OLS-0.07-7pNlse/blib/lib to PERL5LIB for 'install'
OLS.pm:610: Unknown escape E
Manifying blib/man3/Statistics::OLS.3pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/Statistics/OLS.pm
Installing /opt/local/share/man/man3/Statistics::OLS.3pm
Writing /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/Statistics/OLS/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
SMORTON/Statistics-OLS-0.07.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state

入ったらしい!

ごにょごにょしてみた。

#!/opt/local/bin/perl
use strict;
use warnings;

use Statistics::OLS; 

# ready for regression objects

my $weightlist  = Statistics::OLS->new();
my $ratelist    = Statistics::OLS->new();
my $fweightlist = Statistics::OLS->new();
my $datafile = "new.dat";

# read @day, @weight, @rate, @fweight from $datafile

my @day = ();     #: number of day started from recording diet
my @weight = ();  #: body weight (kg)
my @rate = ();    #: fat rate (%)
my @fweight = (); #: fat weight (=weight * rate )

open( FILE, "$datafile" ) or die( "cannot open $datafile" );
my $counter = 0;
while(my $cline=<FILE>){
    if($counter != 0){
	chomp($cline);
	($day[$counter-1],$weight[$counter-1],$rate[$counter-1],$fweight[$counter-1]) 
	    = split(' ',$cline);
	# strings To numeric
	$day[$counter]+=0.00;
	$weight[$counter]+=0.00;
	$rate[$counter]+=0.00;
	$fweight[$counter]+=0.00;
    }
    $counter++;
}
close( FILE );

#setdata to ready for regress
$weightlist  -> setData( \@day,\@weight ) or die( $weightlist->error() );
$ratelist    -> setData( \@day,\@rate ) or die( $ratelist->error() );
$fweightlist -> setData( \@day,\@fweight ) or die( $fweightlist->error() );

#calcutation
$weightlist  -> regress() or die( $weightlist->error() );
$ratelist    -> regress() or die( $ratelist->error() );
$fweightlist -> regress() or die( $fweightlist->error() );

#
my ($weightintercept,  $weightslope)  = $weightlist  -> coefficients();
my ($rateintercept,    $rateslope)    = $ratelist    -> coefficients();
my ($fweightintercept, $fweightslope) = $fweightlist -> coefficients();

print "        :intercept, slope\n";
print "weight  :$weightintercept,  $weightslope\n";
print "rate    :$rateintercept,  $rateslope\n";
print "fweight :$fweightintercept,  $fweightslope\n";

これでOKですな!あとはリファクタリングして、近似式からのずれをグラフにしてみよう。

おまけ!

cpan[2]> install CPAN
Running install for module 'CPAN'
CPAN: Data::Dumper loaded ok (v2.121_17)
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for A/AN/ANDK/CPAN-1.9402.tar.gz
CPAN: LWP::UserAgent loaded ok (v5.835)
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/A/AN/ANDK/CPAN-1.9402.tar.gz

CPAN: checksum security checks disabled because Digest::SHA not installed.
Please consider installing the Digest::SHA module.

Scanning cache /Users/fu7mu4/.cpan/build for sizes
............................................................................DONE
CPAN: Compress::Zlib loaded ok (v2.027)
x CPAN-1.9402/
x CPAN-1.9402/inc/
x CPAN-1.9402/inc/Test/
x CPAN-1.9402/inc/Test/Builder.pm
x CPAN-1.9402/inc/Test/More.pm
x CPAN-1.9402/lib/
x CPAN-1.9402/lib/CPAN.pm
x CPAN-1.9402/lib/CPAN/
x CPAN-1.9402/lib/CPAN/Admin.pm
x CPAN-1.9402/lib/CPAN/Distroprefs.pm
x CPAN-1.9402/lib/CPAN/CacheMgr.pm
x CPAN-1.9402/lib/CPAN/Prompt.pm
x CPAN-1.9402/lib/CPAN/Kwalify/
x CPAN-1.9402/lib/CPAN/Kwalify/distroprefs.dd
x CPAN-1.9402/lib/CPAN/Kwalify/distroprefs.yml
x CPAN-1.9402/lib/CPAN/Version.pm
x CPAN-1.9402/lib/CPAN/API/
x CPAN-1.9402/lib/CPAN/API/HOWTO.pod
x CPAN-1.9402/lib/CPAN/HandleConfig.pm
x CPAN-1.9402/lib/CPAN/Tarzip.pm
x CPAN-1.9402/lib/CPAN/Distribution.pm
x CPAN-1.9402/lib/CPAN/InfoObj.pm
x CPAN-1.9402/lib/CPAN/Author.pm
x CPAN-1.9402/lib/CPAN/FTP.pm
x CPAN-1.9402/lib/CPAN/FTP/
x CPAN-1.9402/lib/CPAN/FTP/netrc.pm
x CPAN-1.9402/lib/CPAN/DeferredCode.pm
x CPAN-1.9402/lib/CPAN/Shell.pm
x CPAN-1.9402/lib/CPAN/Distrostatus.pm
x CPAN-1.9402/lib/CPAN/Bundle.pm
x CPAN-1.9402/lib/CPAN/Exception/
x CPAN-1.9402/lib/CPAN/Exception/yaml_not_installed.pm
x CPAN-1.9402/lib/CPAN/Exception/RecursiveDependency.pm
x CPAN-1.9402/lib/CPAN/Exception/blocked_urllist.pm
x CPAN-1.9402/lib/CPAN/Queue.pm
x CPAN-1.9402/lib/CPAN/Module.pm
x CPAN-1.9402/lib/CPAN/Complete.pm
x CPAN-1.9402/lib/CPAN/Debug.pm
x CPAN-1.9402/lib/CPAN/Kwalify.pm
x CPAN-1.9402/lib/CPAN/Nox.pm
x CPAN-1.9402/lib/CPAN/URL.pm
x CPAN-1.9402/lib/CPAN/FirstTime.pm
x CPAN-1.9402/lib/CPAN/LWP/
x CPAN-1.9402/lib/CPAN/LWP/UserAgent.pm
x CPAN-1.9402/lib/CPAN/Index.pm
x CPAN-1.9402/MANIFEST.SKIP
x CPAN-1.9402/Changes
x CPAN-1.9402/scripts/
x CPAN-1.9402/scripts/cpan
x CPAN-1.9402/PAUSE2003.pub
x CPAN-1.9402/Makefile.PL
x CPAN-1.9402/PAUSE2009.pub
x CPAN-1.9402/PAUSE2005.pub
x CPAN-1.9402/SIGNATURE
x CPAN-1.9402/MANIFEST
x CPAN-1.9402/META.yml
x CPAN-1.9402/PAUSE2007.pub
x CPAN-1.9402/SlayMakefile
x CPAN-1.9402/Todo
x CPAN-1.9402/distroprefs/
x CPAN-1.9402/distroprefs/00.README
x CPAN-1.9402/distroprefs/SZABGAB.Spreadsheet-ParseExcel.yml
x CPAN-1.9402/distroprefs/MSERGEANT.DBIx-AnyDBD.yml
x CPAN-1.9402/distroprefs/MSCHILLI.RRDTool-OO.yml
x CPAN-1.9402/distroprefs/ZOOLEIKA.RDF-Simple.yml
x CPAN-1.9402/distroprefs/CLKAO.IO-Digest.yml
x CPAN-1.9402/distroprefs/KARMAN.SWISH-Prog.yml
x CPAN-1.9402/distroprefs/ILYAZ.Term-ReadLine-Perl.yml
x CPAN-1.9402/distroprefs/AGENT.OpenResty.yml
x CPAN-1.9402/distroprefs/RONAN.Transform-Canvas.yml
x CPAN-1.9402/distroprefs/EWILHELM.Math-Vec.yml
x CPAN-1.9402/distroprefs/MTHURN.Tk-Wizard.yml
x CPAN-1.9402/distroprefs/JMASON.Mail-SpamAssassin.yml
x CPAN-1.9402/distroprefs/CORION.List-Sliding-Changes.yml
x CPAN-1.9402/distroprefs/DAGOLDEN.CPAN-Reporter.yml
x CPAN-1.9402/distroprefs/CLAESJAC.JavaScript.yml
x CPAN-1.9402/distroprefs/NESTING.Unicode-Wrap.yml
x CPAN-1.9402/distroprefs/JAYK.Catalyst-Authen-S-D-C.yml
x CPAN-1.9402/distroprefs/SREZIC.Tk-Pod.yml
x CPAN-1.9402/distroprefs/OVID.HOP-Parser.yml
x CPAN-1.9402/distroprefs/CLKAO.App-CLI.yml
x CPAN-1.9402/distroprefs/DJBERG.Tk-JListbox.yml
x CPAN-1.9402/distroprefs/DMARTIN.Unix-SavedIDs.yml
x CPAN-1.9402/distroprefs/KBROWN.SOAP.yml
x CPAN-1.9402/distroprefs/BRYCE.SVG-Metadata.yml
x CPAN-1.9402/distroprefs/ANDYA.TAP-Parser.yml
x CPAN-1.9402/distroprefs/RCLAMP.Devel-Caller.yml
x CPAN-1.9402/distroprefs/AVIF.Time-Duration.yml
x CPAN-1.9402/distroprefs/MLEHMANN.PApp.yml
x CPAN-1.9402/distroprefs/NICOLAW.WWW-Comic.yml
x CPAN-1.9402/distroprefs/ABELTJE.Test-Smoke.yml
x CPAN-1.9402/distroprefs/ANDREWF.LaTeX-Driver.yml
x CPAN-1.9402/distroprefs/BTROTT.Crypt-DSA.yml
x CPAN-1.9402/distroprefs/RRWO.Graphics-ColorNames.yml
x CPAN-1.9402/distroprefs/JOHNL.DBD-Informix.yml
x CPAN-1.9402/distroprefs/ADAMK.Chart-Math-Axis.yml
x CPAN-1.9402/distroprefs/DMAKI.File-Extract.yml
x CPAN-1.9402/distroprefs/JESSE.Jifty-DBI.yml
x CPAN-1.9402/distroprefs/MIROD.XML-Twig.yml
x CPAN-1.9402/distroprefs/GIULIENK.Audio-Beep.yml
x CPAN-1.9402/distroprefs/DMUEY.File-Copy-Recursive.yml
x CPAN-1.9402/distroprefs/KNORR.Net-MirrorDir.yml
x CPAN-1.9402/distroprefs/PDCAWLEY.Class-Inner.yml
x CPAN-1.9402/distroprefs/YOSHIDA.WebService-YouTube.yml
x CPAN-1.9402/distroprefs/MRAMBERG.Catalyst-View-TT.yml
x CPAN-1.9402/distroprefs/MSISK.HTML-TableExtract.yml
x CPAN-1.9402/distroprefs/KCLARK.SQL-Translator.yml
x CPAN-1.9402/distroprefs/PARDUS.File-MimeInfo.yml
x CPAN-1.9402/distroprefs/STAS.libapreq.yml
x CPAN-1.9402/distroprefs/MLEHMANN.EV.yml
x CPAN-1.9402/distroprefs/SCHWIGON.Class-MethodMaker.yml
x CPAN-1.9402/distroprefs/MIYAGAWA.Net-IDN-Nameprep.yml
x CPAN-1.9402/distroprefs/VKON.Tcl-Tk.yml
x CPAN-1.9402/distroprefs/ACH.Tk-Contrib.yml
x CPAN-1.9402/distroprefs/DROLSKY.DateTime-Locale.yml
x CPAN-1.9402/distroprefs/BTROTT.Crypt-OpenPGP.yml
x CPAN-1.9402/distroprefs/YANICK.XML-XPathScript.yml
x CPAN-1.9402/distroprefs/RUZ.DBIx-SearchBuilder.yml
x CPAN-1.9402/distroprefs/JOHNSCA.TkCarp.yml
x CPAN-1.9402/distroprefs/GEOFF.Apache-Test.yml
x CPAN-1.9402/distroprefs/TIMB.Apache-Status-DBI.yml
x CPAN-1.9402/distroprefs/MAURICE.IPC-ShareLite.yml
x CPAN-1.9402/distroprefs/MJD.Devel-Trace.yml
x CPAN-1.9402/distroprefs/GRANTM.XML-SAX.yml
x CPAN-1.9402/distroprefs/RIZEN.Config-JSON.yml
x CPAN-1.9402/distroprefs/OVID.Test-JSON.yml
x CPAN-1.9402/distroprefs/DOM.OpenGuides.yml
x CPAN-1.9402/distroprefs/MLEHMANN.Coro.yml
x CPAN-1.9402/distroprefs/BLUEFEET.GIS-Distance.yml
x CPAN-1.9402/distroprefs/JJORE.AI-Prolog.yml
x CPAN-1.9402/distroprefs/HORROCKS.PersistentPerl.yml
x CPAN-1.9402/distroprefs/SCHUBIGER.DateTime-Format.yml
x CPAN-1.9402/distroprefs/BRIANSKI.XML-Comma.yml
x CPAN-1.9402/distroprefs/CHANG-LIU.XML-Node.yml
x CPAN-1.9402/distroprefs/ANDK.CPAN-Test-Dummy-Perl5-Build-Fails.yml
x CPAN-1.9402/distroprefs/DRTECH.Config-Loader.yml
x CPAN-1.9402/distroprefs/DMAKI.DateTime-X.yml
x CPAN-1.9402/distroprefs/MInoinc.yml
x CPAN-1.9402/distroprefs/JMGDOC.OpenOffice-OODoc.yml
x CPAN-1.9402/distroprefs/ZEV.Test-Dependencies.yml
x CPAN-1.9402/distroprefs/ARFREITAS.DTS.yml
x CPAN-1.9402/distroprefs/PEVANS.IPC-PerlSSH.yml
x CPAN-1.9402/distroprefs/DJKERNEN.Mail-IMAPClient.yml
x CPAN-1.9402/distroprefs/HANJE.Syntax-Highlight-Engine-Kate.yml
x CPAN-1.9402/distroprefs/DSKOLL.MIME-tools.yml
x CPAN-1.9402/distroprefs/DROLSKY.Devel-StackTrace.yml
x CPAN-1.9402/distroprefs/KRUSCOE.Tie-DxHash.yml
x CPAN-1.9402/distroprefs/CHARTGRP.Chart.yml
x CPAN-1.9402/distroprefs/RCSEEGE.Tk-JComboBox.yml
x CPAN-1.9402/distroprefs/JDIEPEN.Audio-LADSPA.yml
x CPAN-1.9402/distroprefs/MARKOV.Mail-Box.yml
x CPAN-1.9402/distroprefs/PETDANCE.HTML-Tidy.yml
x CPAN-1.9402/distroprefs/JROBINSON.SQL-Translator.yml
x CPAN-1.9402/distroprefs/KANE.CPANPLUS.yml
x CPAN-1.9402/distroprefs/ANDYA.Test-Harness.yml
x CPAN-1.9402/distroprefs/SEANO.Sepia.yml
x CPAN-1.9402/distroprefs/EESTABROO.IMAP-Admin.yml
x CPAN-1.9402/distroprefs/GAAS.Data-Dump.yml
x CPAN-1.9402/distroprefs/NI-S.Tk.yml
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-Server-SimpleHTTP.yml
x CPAN-1.9402/distroprefs/NKH.PerlBuildSystem.yml
x CPAN-1.9402/distroprefs/GOMOR.Net-Write.yml
x CPAN-1.9402/distroprefs/KROW.DBIx-Password.yml
x CPAN-1.9402/distroprefs/MIYAGAWA.Plagger.yml
x CPAN-1.9402/distroprefs/YAMATO.QDBM_File.yml
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-CPAN-YACSmoke.yml
x CPAN-1.9402/distroprefs/GBARR.perl-ldap.yml
x CPAN-1.9402/distroprefs/AUDREYT.PDF-FromHTML.yml
x CPAN-1.9402/distroprefs/FLUFFY.Class-MethodMaker.yml
x CPAN-1.9402/distroprefs/ANDYA.Perl-Version.yml
x CPAN-1.9402/distroprefs/DOMM.Module-CPANTS-ProcessCPAN.yml
x CPAN-1.9402/distroprefs/KASEI.Class-Accessor.yml
x CPAN-1.9402/distroprefs/02.NOREPORT.yml
x CPAN-1.9402/distroprefs/YVES.Date-Simple.yml
x CPAN-1.9402/distroprefs/RYBSKEJ.forks.yml
x CPAN-1.9402/distroprefs/NI-S.Tk-HTML.yml
x CPAN-1.9402/distroprefs/INGY.Inline.yml
x CPAN-1.9402/distroprefs/PETDANCE.WWW-Mechanize.yml
x CPAN-1.9402/distroprefs/ROODE.Time-Format.yml
x CPAN-1.9402/distroprefs/JPRIT.Event.yml
x CPAN-1.9402/distroprefs/AMICHAUER.Unicode-Lite.yml
x CPAN-1.9402/distroprefs/MLFISHER.Test-MockDBI.yml
x CPAN-1.9402/distroprefs/ITYNDALL.Net-Amazon-Thumbnail.yml
x CPAN-1.9402/distroprefs/LDS.Crypt-CBC.yml
x CPAN-1.9402/distroprefs/JJORE.Carp-Clan.yml
x CPAN-1.9402/distroprefs/RJRAY.RPC-XML.yml
x CPAN-1.9402/distroprefs/ILYAZ.FreezeThaw.yml
x CPAN-1.9402/distroprefs/MTHURN.I18N-Charset.yml
x CPAN-1.9402/distroprefs/DAGOLDEN.Term-Title.yml
x CPAN-1.9402/distroprefs/JENDA.Mail-Sender.yml
x CPAN-1.9402/distroprefs/BTROTT.XML-FOAF.yml
x CPAN-1.9402/distroprefs/SCHWERN.Class-Fields.yml
x CPAN-1.9402/distroprefs/DLAND.Crypt-SSLeay.yml
x CPAN-1.9402/distroprefs/HMBRAND.Spreadsheet-Read.yml
x CPAN-1.9402/distroprefs/RSOD.IPC-Run.yml
x CPAN-1.9402/distroprefs/YVES.Data-Dump-Streamer.yml
x CPAN-1.9402/distroprefs/RICKM.DateTime-Format-Strptime.yml
x CPAN-1.9402/distroprefs/MRAMBERG.MojoMojo.yml
x CPAN-1.9402/distroprefs/PHOENIX.Term-ReadPassword.yml
x CPAN-1.9402/distroprefs/DCOPPIT.Mail-Mbox-MessageParser.yml
x CPAN-1.9402/distroprefs/GWYN.POE-Component-Daemon.yml
x CPAN-1.9402/distroprefs/ANDYA.File-Find-Parallel.yml
x CPAN-1.9402/distroprefs/SWALTERS.typesafety.yml
x CPAN-1.9402/distroprefs/JHOBLITT.DateTime-Format-ISO8601.yml
x CPAN-1.9402/distroprefs/PCIMPRICH.XML-SAX-ExpatXS.yml
x CPAN-1.9402/distroprefs/DMAKI.Xango.yml
x CPAN-1.9402/distroprefs/CHISEL.Zucchini.yml
x CPAN-1.9402/distroprefs/AUDREYT.YAML-Syck.yml
x CPAN-1.9402/distroprefs/MCEGLOWS.Bloom-Filter.yml
x CPAN-1.9402/distroprefs/GBROCK.Tk-StayOnTop.yml
x CPAN-1.9402/distroprefs/ADAMK.PPI.yml
x CPAN-1.9402/distroprefs/FLORA.File-Extractor.yml
x CPAN-1.9402/distroprefs/YEWENBIN.Calendar.yml
x CPAN-1.9402/distroprefs/ERIC.OpenThought.yml
x CPAN-1.9402/distroprefs/URI.File-Slurp.yml
x CPAN-1.9402/distroprefs/ANDK.CPAN-Test-Dummy-Perl5-Make-Expect.yml
x CPAN-1.9402/distroprefs/SHEVEK.Mail-Karmasphere-Client.yml
x CPAN-1.9402/distroprefs/FOTANGO.Data-Structure-Util.yml
x CPAN-1.9402/distroprefs/METZZO.Java.yml
x CPAN-1.9402/distroprefs/LUSOL.Tk-Gauge.yml
x CPAN-1.9402/distroprefs/BSMITH.Devel-EvalContext.yml
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-Server-SimpleContent.yml
x CPAN-1.9402/distroprefs/ATOURBIN.rpm-build-perl.yml
x CPAN-1.9402/distroprefs/LUKEC.Socialtext-Resting.yml
x CPAN-1.9402/distroprefs/NUFFIN.Devel-Events.yml
x CPAN-1.9402/distroprefs/JOSEPHW.XML-Writer.yml
x CPAN-1.9402/distroprefs/BRADFITZ.Perlbal.yml
x CPAN-1.9402/distroprefs/CERNEY.Tk-IDElayout.yml
x CPAN-1.9402/distroprefs/GIRAFFED.Curses.yml
x CPAN-1.9402/distroprefs/HMBRAND.Tk-Clock.yml
x CPAN-1.9402/distroprefs/MSERGEANT.AxKit.yml
x CPAN-1.9402/distroprefs/QANTINS.BitTorrent.yml
x CPAN-1.9402/distroprefs/RRA.PGP-Sign.yml
x CPAN-1.9402/distroprefs/TKEEFER.Gantry.yml
x CPAN-1.9402/distroprefs/KARASIK.IO-Lambda.yml
x CPAN-1.9402/distroprefs/RJBS.Data-UUID.yml
x CPAN-1.9402/distroprefs/MIYAGAWA.XML-Atom.yml
x CPAN-1.9402/distroprefs/DBROBINS.Net-SSH-Perl.yml
x CPAN-1.9402/distroprefs/MIKER.IPtables-IPv4-DBTarpit.yml
x CPAN-1.9402/distroprefs/GRICHTER.Embperl.yml
x CPAN-1.9402/distroprefs/VPIT.Variable-Magic.yml
x CPAN-1.9402/distroprefs/FDALY.Test-Deep.yml
x CPAN-1.9402/distroprefs/KWILLIAMS.Crypt-SKey.yml
x CPAN-1.9402/distroprefs/DURIST.WWW-Babelfish.yml
x CPAN-1.9402/distroprefs/MSERGEANT.XML-Filter-XInclude.yml
x CPAN-1.9402/distroprefs/BTROTT.Convert-PEM.yml
x CPAN-1.9402/distroprefs/ROBIN.PadWalker.yml
x CPAN-1.9402/distroprefs/GBARR.libnet.dd
x CPAN-1.9402/distroprefs/OVID.TAPx-Parser.yml
x CPAN-1.9402/distroprefs/WYANT.Astro-SpaceTrack.yml
x CPAN-1.9402/distroprefs/TIMB.DBI.yml
x CPAN-1.9402/distroprefs/OVID.Perl6-Caller.yml
x CPAN-1.9402/distroprefs/MJD.Text-Template.yml
x CPAN-1.9402/distroprefs/LICHTKIND.Kephra.yml
x CPAN-1.9402/distroprefs/BYRNE.SOAP-Lite.yml
x CPAN-1.9402/distroprefs/DKWILSON.Tk-DKW.yml
x CPAN-1.9402/distroprefs/CMOORE.Archive-Any.yml
x CPAN-1.9402/distroprefs/MSERGEANT.XML-Parser.yml
x CPAN-1.9402/distroprefs/MJCARMAN.Tie-Tk-Text.yml
x CPAN-1.9402/distroprefs/WYANT.Astro-satpass.yml
x CPAN-1.9402/distroprefs/BDFOY.Module-Release.yml
x CPAN-1.9402/distroprefs/RJBS.MIME-Light.yml
x CPAN-1.9402/distroprefs/DOWENS.JSON-DWIW.yml
x CPAN-1.9402/distroprefs/TJENNESS.Tk-TextANSIColor.yml
x CPAN-1.9402/distroprefs/MARKOV.MailTools.yml
x CPAN-1.9402/distroprefs/NODINE.Text-Restructured.yml
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-Client-FTP.yml
x CPAN-1.9402/distroprefs/MSERGEANT.DBD-SQLite.yml
x CPAN-1.9402/distroprefs/DBRIAN.XML-SimpleObject.yml
x CPAN-1.9402/distroprefs/PODMASTER.HTML-Scrubber.yml
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-SmokeBox-Recent.yml
x CPAN-1.9402/distroprefs/MIYAGAWA.Catalyst-View-JSON.yml
x CPAN-1.9402/distroprefs/STEVAN.Class-MOP.yml
x CPAN-1.9402/distroprefs/EIJABB.MARC-Errorchecks.yml
x CPAN-1.9402/distroprefs/LETO.Math-GSL.yml
x CPAN-1.9402/distroprefs/RKOBES.PPM-Make.yml
x CPAN-1.9402/distroprefs/LOCAL.trailing_dot_distros.yml
x CPAN-1.9402/distroprefs/CSOE.PDL.yml
x CPAN-1.9402/distroprefs/KVAIL.Tk-Stderr.yml
x CPAN-1.9402/distroprefs/ADAMK.Image-Delivery.yml
x CPAN-1.9402/distroprefs/CRISB.WWW-Curl.yml
x CPAN-1.9402/distroprefs/PHRED.Apache-Reload.yml
x CPAN-1.9402/distroprefs/HDP.Perl-Version.yml
x CPAN-1.9402/distroprefs/MAKAMAKA.JSON.yml
x CPAN-1.9402/distroprefs/SAMTREGAR.Devel-Profiler.yml
x CPAN-1.9402/distroprefs/KWILLIAMS.Module-Build.yml
x CPAN-1.9402/distroprefs/INGY.YAML.yml
x CPAN-1.9402/distroprefs/ADAMK.Test-ClassAPI.yml
x CPAN-1.9402/distroprefs/JSHIRLEY.Catalyst-Action-REST.yml
x CPAN-1.9402/distroprefs/AUDREYT.Module-Signature.yml
x CPAN-1.9402/distroprefs/GBARR.libnet.yml
x CPAN-1.9402/distroprefs/LZE.HTML-Menu-TreeView.yml
x CPAN-1.9402/distroprefs/DANKOGAI.Regexp-Optimizer.yml
x CPAN-1.9402/distroprefs/NEILW.Inline-CPP.yml
x CPAN-1.9402/distroprefs/ROBIN.Want.yml
x CPAN-1.9402/distroprefs/DUNNIGANJ.Tk-CursorControl.yml
x CPAN-1.9402/distroprefs/HAYASHI.Term-ReadLine-Gnu.yml
x CPAN-1.9402/distroprefs/DDUMONT.Tk-ObjScanner.yml
x CPAN-1.9402/distroprefs/VMAN.Net-Libdnet.yml
x CPAN-1.9402/distroprefs/TELS.Math-BigInt-GMP.yml
x CPAN-1.9402/distroprefs/TODDR.Net-Jabber-Bot.yml
x CPAN-1.9402/distroprefs/CORDATA.Kwiki-Formatter-Emphasis.yml
x CPAN-1.9402/distroprefs/LEAKIN.File-Rsync.yml
x CPAN-1.9402/distroprefs/STEPANOV.IMDB-Film.yml
x CPAN-1.9402/distroprefs/ESUMMERS.MARC-Charset.yml
x CPAN-1.9402/distroprefs/OWEN.PDF-Labels.yml
x CPAN-1.9402/distroprefs/DCONWAY.Parse-RecDescent.yml
x CPAN-1.9402/distroprefs/ZINCDEV.tk-zinc.yml
x CPAN-1.9402/distroprefs/ACG.Scrabble-Dict.yml
x CPAN-1.9402/distroprefs/GRM.App-CamelPKI.yml
x CPAN-1.9402/distroprefs/BDFOY.Business-ISBN.yml
x CPAN-1.9402/distroprefs/JRENNIE.WordNet-QueryData.yml
x CPAN-1.9402/distroprefs/ABW.Template-Toolkit.yml
x CPAN-1.9402/distroprefs/JGMYERS.Encode-Detect.yml
x CPAN-1.9402/distroprefs/TBONE.HTTP-File.yml
x CPAN-1.9402/distroprefs/GAAS.Font-AFM.yml
x CPAN-1.9402/distroprefs/CDENT.Kwiki-Test.yml
x CPAN-1.9402/distroprefs/DMAKI.Class-DBI-Plugin-DateTime.yml
x CPAN-1.9402/distroprefs/RBS.XML-AutoWriter.yml
x CPAN-1.9402/distroprefs/BDFOY.Test-HTTPStatus.yml
x CPAN-1.9402/distroprefs/WITTROCK.Tk-PathEntry.yml
x CPAN-1.9402/distroprefs/RMUHLE.classes.yml
x CPAN-1.9402/distroprefs/DHARRIS.DB_File-Lock.yml
x CPAN-1.9402/distroprefs/MAHEX.Image-Grab.yml
x CPAN-1.9402/distroprefs/REDTREE.PDF-API2-Simple.yml
x CPAN-1.9402/distroprefs/ASCOPE.Net-Google.yml
x CPAN-1.9402/distroprefs/MBARBON.Alien-wxWidgets.yml
x CPAN-1.9402/distroprefs/01.DISABLED.yml
x CPAN-1.9402/distroprefs/TIMB.GoferTransport-http.yml
x CPAN-1.9402/distroprefs/SLANNING.Ogre.yml
x CPAN-1.9402/distroprefs/SREZIC.Tk-HistEntry.yml
x CPAN-1.9402/distroprefs/DONEILL.MIME-tools.yml
x CPAN-1.9402/distroprefs/AGRUNDMA.POE-Loop-EV.yml
x CPAN-1.9402/distroprefs/MARKOV.Mail-IMAPClient.yml
x CPAN-1.9402/distroprefs/ADAMK.Test-Inline.yml
x CPAN-1.9402/distroprefs/GOZER.mod_perl.yml
x CPAN-1.9402/distroprefs/SCHWERN.Exporter-Lite.yml
x CPAN-1.9402/distroprefs/SANKO.Net-BitTorrent.yml
x CPAN-1.9402/distroprefs/RCAPUTO.POE.yml
x CPAN-1.9402/distroprefs/JKEGL.Test-Weaken.yml
x CPAN-1.9402/distroprefs/TLOWERY.DBI-Shell.yml
x CPAN-1.9402/distroprefs/BWARFIELD.GDGraph.yml
x CPAN-1.9402/distroprefs/CAPTTOFU.DBD-mysql.yml
x CPAN-1.9402/distroprefs/MLEHMANN.IO-AIO.yml
x CPAN-1.9402/distroprefs/JSTENZEL.Getopt-ArgvFile.yml
x CPAN-1.9402/distroprefs/GTERMARS.Apache2-Filter-Minifier-JavaScript.yml
x CPAN-1.9402/distroprefs/JCRISTY.PerlMagick.yml
x CPAN-1.9402/distroprefs/RJBS.Email-Send.yml
x CPAN-1.9402/distroprefs/MLEHMANN.AnyEvent.yml
x CPAN-1.9402/distroprefs/RCLAMP.POE-Component-Server-HTTP.yml
x CPAN-1.9402/distroprefs/RHOOPER.HTTP-Lite.yml
x CPAN-1.9402/distroprefs/DSUGAL.Devel-Size.yml
x CPAN-1.9402/distroprefs/JV.Getopt-Long.yml
x CPAN-1.9402/distroprefs/ILMARI.DBIx-Class-Schema-Loader.yml
x CPAN-1.9402/distroprefs/OLAF.Net-DNS.yml
x CPAN-1.9402/distroprefs/SAMTREGAR.DBIx-Timeout.yml
x CPAN-1.9402/distroprefs/PETERW.SVG-Parser.yml
x CPAN-1.9402/distroprefs/ERYQ.Convert-BinHex.yml
x CPAN-1.9402/distroprefs/RDF.Clone.yml
x CPAN-1.9402/distroprefs/LBROCARD.Test-WWW-Mechanize-Catalyst.yml
x CPAN-1.9402/distroprefs/JPIERCE.IO-Pager.yml
x CPAN-1.9402/distroprefs/DWHEELER.Params-CallbackRequest.yml
x CPAN-1.9402/distroprefs/NEELY.Data-Serializer.yml
x CPAN-1.9402/distroprefs/MARKSTOS.CGI-Session.yml
x CPAN-1.9402/distroprefs/ILYAZ.Term-ReadLine-Perl.dd
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-Server-NSCA.yml
x CPAN-1.9402/distroprefs/TELS.Devel-Size.yml
x CPAN-1.9402/distroprefs/RBERJON.JSON-Any.yml
x CPAN-1.9402/distroprefs/LAMPRECHT.Tk-GraphItems.yml
x CPAN-1.9402/distroprefs/KWILLIAMS.AI-Categorizer.yml
x CPAN-1.9402/distroprefs/ROODE.Readonly-XS.yml
x CPAN-1.9402/distroprefs/ZOFFIX.LWP-UserAgent-ProxyHopper.yml
x CPAN-1.9402/distroprefs/JPEACOCK.SVN-Notify-Mirror.yml
x CPAN-1.9402/distroprefs/EBOHLMAN.Text-Query.yml
x CPAN-1.9402/distroprefs/YSAS.SWF-Builder.yml
x CPAN-1.9402/distroprefs/NUFFIN.Catalyst-Plugin-Session.yml
x CPAN-1.9402/distroprefs/DROLSKY.Params-Validate.yml
x CPAN-1.9402/distroprefs/FLORA.Net_SSLeay.yml
x CPAN-1.9402/distroprefs/INGY.YAML.dd
x CPAN-1.9402/distroprefs/PIERS.sapnwrfc.yml
x CPAN-1.9402/distroprefs/MARKOV.CPAN-Site.yml
x CPAN-1.9402/distroprefs/PAJAS.XML-LibXML.yml
x CPAN-1.9402/distroprefs/MI.yml
x CPAN-1.9402/distroprefs/SREZIC.Tk-Autoscroll.yml
x CPAN-1.9402/distroprefs/WRW.Barcode-Code128.yml
x CPAN-1.9402/distroprefs/FHOXH.Test-Reporter.yml
x CPAN-1.9402/distroprefs/MSCHWERN.Test-Simple.yml
x CPAN-1.9402/distroprefs/DCANTRELL.Devel-CheckOS.yml
x CPAN-1.9402/distroprefs/BOBTFISH.Text-Markdown.yml
x CPAN-1.9402/distroprefs/GAAS.libwww.yml
x CPAN-1.9402/distroprefs/DROLSKY.Alzabo.yml
x CPAN-1.9402/distroprefs/RKINYON.DBM-Deep.yml
x CPAN-1.9402/distroprefs/CHOCOLATE.Scalar-Util-Clone.yml
x CPAN-1.9402/distroprefs/CLACO.Class-Accessor-Grouped.yml
x CPAN-1.9402/distroprefs/DAXIM.Yahoo-Photos.yml
x CPAN-1.9402/distroprefs/ZOOLEIKA.SVG-Plot.yml
x CPAN-1.9402/distroprefs/OVID.Class-Trait.yml
x CPAN-1.9402/distroprefs/KAWASAKI.Lingua-JA-Romanize-Japanese.yml
x CPAN-1.9402/distroprefs/CLKAO.SVN-Mirror.yml
x CPAN-1.9402/distroprefs/VKON.Tcl.yml
x CPAN-1.9402/distroprefs/BINGOS.POE-Component-Client-NSCA.yml
x CPAN-1.9402/distroprefs/MSERGEANT.CDB_File.yml
x CPAN-1.9402/distroprefs/MJEVANS.DBD-ODBC.yml
x CPAN-1.9402/distroprefs/NIKIP.Authen-PAM.yml
x CPAN-1.9402/distroprefs/MLEHMANN.Gtk-Perl.yml
x CPAN-1.9402/distroprefs/GRAY.IO-AIO-Util.yml
x CPAN-1.9402/distroprefs/ILYAZ.Math-Pari.yml
x CPAN-1.9402/distroprefs/TSCH.Cairo.yml
x CPAN-1.9402/distroprefs/ARJAY.Compress-Bzip2.yml
x CPAN-1.9402/distroprefs/JESSE.HTTP-Server-Simple.yml
x CPAN-1.9402/distroprefs/JROCKWAY.Chroniton.yml
x CPAN-1.9402/distroprefs/FABPOT.Plucene-Plugin-Analyzer-SnowballAnalyzer.yml
x CPAN-1.9402/distroprefs/BTROTT.Crypt-DH.yml
x CPAN-1.9402/distroprefs/TSCH.Gtk2.yml
x CPAN-1.9402/distroprefs/DAMS.RT-Client-REST.yml
x CPAN-1.9402/t/
x CPAN-1.9402/t/data/
x CPAN-1.9402/t/data/META-static.yml
x CPAN-1.9402/t/data/META-dynamic.yml
x CPAN-1.9402/t/12cpan.t
x CPAN-1.9402/t/local_utils.pm
x CPAN-1.9402/t/60credentials.t
x CPAN-1.9402/t/13tarzip.t
x CPAN-1.9402/t/31sessions.t
x CPAN-1.9402/t/perlcriticrc
x CPAN-1.9402/t/30shell.t
x CPAN-1.9402/t/30shell.coverage
x CPAN-1.9402/t/42distroprefs.t
x CPAN-1.9402/t/41distribution.t
x CPAN-1.9402/t/00signature.t
x CPAN-1.9402/t/03pkgs.t
x CPAN-1.9402/t/14forkbomb.t
x CPAN-1.9402/t/70_critic.t
x CPAN-1.9402/t/52podcover.t
x CPAN-1.9402/t/01loadme.t
x CPAN-1.9402/t/43distroprefspref.t
x CPAN-1.9402/t/11mirroredby.t
x CPAN-1.9402/t/CPAN/
x CPAN-1.9402/t/CPAN/TestMirroredBy
x CPAN-1.9402/t/CPAN/TestPatch.txt
x CPAN-1.9402/t/CPAN/modules/
x CPAN-1.9402/t/CPAN/modules/03modlist.data
x CPAN-1.9402/t/CPAN/modules/02packages.details.txt
x CPAN-1.9402/t/CPAN/authors/
x CPAN-1.9402/t/CPAN/authors/id/
x CPAN-1.9402/t/CPAN/authors/id/A/
x CPAN-1.9402/t/CPAN/authors/id/A/AN/
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-BuildOrMake-1.02.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Build-1.03.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-CircDepeTwo-1.00.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Build-Fails-1.03.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-CircDepeOne-1.00.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-ConfReq-1.00.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Build-DepeFails-1.02.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/NotInChecksums-0.000.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-CircDepeThree-1.00.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/patches/
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/patches/CHECKSUMS
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-Expect-1.00.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-UnsatPrereq-1.00.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CHECKSUMS
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/cpantestdummies/
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/cpantestdummies/CPAN-Test-Dummy-Perl5-Make-Features-1.05.tgz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/cpantestdummies/CHECKSUMS
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-Zip-1.03.zip
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CHECKSUMS.2nd
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-1.05.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/ANDK/CPAN-Test-Dummy-Perl5-Make-Failearly-1.02.tar.gz
x CPAN-1.9402/t/CPAN/authors/id/A/AN/CHECKSUMS
x CPAN-1.9402/t/CPAN/authors/id/A/CHECKSUMS
x CPAN-1.9402/t/CPAN/authors/id/CHECKSUMS
x CPAN-1.9402/t/CPAN/authors/01mailrc.txt
x CPAN-1.9402/t/CPAN/CpanTestDummies-1.55.pm
x CPAN-1.9402/t/CPAN/TestConfig.pm
x CPAN-1.9402/t/51pod.t
x CPAN-1.9402/t/02nox.t
x CPAN-1.9402/t/50pod.t
x CPAN-1.9402/t/10version.t
x CPAN-1.9402/t/yaml_code.yml
x CPAN-1.9402/t/04clean_load.t
x CPAN-1.9402/README
CPAN: File::Temp loaded ok (v0.20)

CPAN.pm: Going to build A/AN/ANDK/CPAN-1.9402.tar.gz

Checking if your kit is complete...
Looks good
Warning: prerequisite File::HomeDir 0.69 not found.
Writing Makefile for CPAN
Could not read '/Users/fu7mu4/.cpan/build/CPAN-1.9402-_qc1FQ/META.yml'. Falling back to other methods to determine prerequisites

        • Unsatisfied dependencies detected during ----
        • ANDK/CPAN-1.9402.tar.gz ----

File::HomeDir [requires]
Shall I follow them and prepend them to the queue
of modules we are processing right now? [yes]
Running make test
Delayed until after prerequisites
Running make install
Delayed until after prerequisites
Running install for module 'File::HomeDir'
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for A/AD/ADAMK/File-HomeDir-0.91.tar.gz
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/A/AD/ADAMK/File-HomeDir-0.91.tar.gz
CPAN: checksum security checks disabled because Digest::SHA not installed.
x File-HomeDir-0.91/
x File-HomeDir-0.91/README
x File-HomeDir-0.91/Makefile.PL
x File-HomeDir-0.91/LICENSE
x File-HomeDir-0.91/xt/
x File-HomeDir-0.91/xt/pmv.t
x File-HomeDir-0.91/xt/meta.t
x File-HomeDir-0.91/xt/pod.t
x File-HomeDir-0.91/t/
x File-HomeDir-0.91/t/10_test.t
x File-HomeDir-0.91/t/02_main.t
x File-HomeDir-0.91/t/12_darwin_carbon.t
x File-HomeDir-0.91/t/11_darwin.t
x File-HomeDir-0.91/t/13_darwin_cocoa.t
x File-HomeDir-0.91/t/01_compile.t
x File-HomeDir-0.91/META.yml
x File-HomeDir-0.91/MANIFEST
x File-HomeDir-0.91/Changes
x File-HomeDir-0.91/inc/
x File-HomeDir-0.91/inc/Module/
x File-HomeDir-0.91/inc/Module/Install/
x File-HomeDir-0.91/inc/Module/Install/Can.pm
x File-HomeDir-0.91/inc/Module/Install/Base.pm
x File-HomeDir-0.91/inc/Module/Install/Fetch.pm
x File-HomeDir-0.91/inc/Module/Install/Win32.pm
x File-HomeDir-0.91/inc/Module/Install/WriteAll.pm
x File-HomeDir-0.91/inc/Module/Install/Metadata.pm
x File-HomeDir-0.91/inc/Module/Install/Makefile.pm
x File-HomeDir-0.91/inc/Module/Install.pm
x File-HomeDir-0.91/lib/
x File-HomeDir-0.91/lib/File/
x File-HomeDir-0.91/lib/File/HomeDir.pm
x File-HomeDir-0.91/lib/File/HomeDir/
x File-HomeDir-0.91/lib/File/HomeDir/FreeDesktop.pm
x File-HomeDir-0.91/lib/File/HomeDir/Unix.pm
x File-HomeDir-0.91/lib/File/HomeDir/MacOS9.pm
x File-HomeDir-0.91/lib/File/HomeDir/Driver.pm
x File-HomeDir-0.91/lib/File/HomeDir/Darwin.pm
x File-HomeDir-0.91/lib/File/HomeDir/Windows.pm
x File-HomeDir-0.91/lib/File/HomeDir/Test.pm
x File-HomeDir-0.91/lib/File/HomeDir/Darwin/
x File-HomeDir-0.91/lib/File/HomeDir/Darwin/Carbon.pm
x File-HomeDir-0.91/lib/File/HomeDir/Darwin/Cocoa.pm

CPAN.pm: Going to build A/AD/ADAMK/File-HomeDir-0.91.tar.gz

Checking if your kit is complete...
Looks good
Warning: prerequisite File::Which 0 not found.
Writing Makefile for File::HomeDir
Could not read '/Users/fu7mu4/.cpan/build/File-HomeDir-0.91-c4HelI/META.yml'. Falling back to other methods to determine prerequisites

        • Unsatisfied dependencies detected during ----
        • ADAMK/File-HomeDir-0.91.tar.gz ----

File::Which [requires]
Shall I follow them and prepend them to the queue
of modules we are processing right now? [yes]
Running make test
Delayed until after prerequisites
Running make install
Delayed until after prerequisites
Running install for module 'File::Which'
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for A/AD/ADAMK/File-Which-1.09.tar.gz
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/A/AD/ADAMK/File-Which-1.09.tar.gz
CPAN: checksum security checks disabled because Digest::SHA not installed.
x File-Which-1.09/
x File-Which-1.09/META.yml
x File-Which-1.09/LICENSE
x File-Which-1.09/Makefile.PL
x File-Which-1.09/README
x File-Which-1.09/script/
x File-Which-1.09/script/pwhich
x File-Which-1.09/MANIFEST
x File-Which-1.09/Changes
x File-Which-1.09/lib/
x File-Which-1.09/lib/File/
x File-Which-1.09/lib/File/Which.pm
x File-Which-1.09/t/
x File-Which-1.09/t/04_pwhich.t
x File-Which-1.09/t/02_all.t
x File-Which-1.09/t/97_meta.t
x File-Which-1.09/t/01_compile.t
x File-Which-1.09/t/98_pod.t
x File-Which-1.09/t/03_simple.t
x File-Which-1.09/t/99_pmv.t
x File-Which-1.09/t/test-bin/
x File-Which-1.09/t/test-bin/test2.bat
x File-Which-1.09/t/test-bin/all
x File-Which-1.09/t/test-bin/test1.exe
x File-Which-1.09/t/test-bin/all.exe
x File-Which-1.09/t/test-bin/README.txt
x File-Which-1.09/t/test-bin/all.bat
x File-Which-1.09/t/test-bin/test4/
x File-Which-1.09/t/test-bin/test4/foo.txt
x File-Which-1.09/t/test-bin/test3

CPAN.pm: Going to build A/AD/ADAMK/File-Which-1.09.tar.gz

Checking if your kit is complete...
Looks good
Warning: prerequisite Test::Script 1.05 not found.
Writing Makefile for File::Which
Could not read '/Users/fu7mu4/.cpan/build/File-Which-1.09-vWyzyQ/META.yml'. Falling back to other methods to determine prerequisites

        • Unsatisfied dependencies detected during ----
        • ADAMK/File-Which-1.09.tar.gz ----

Test::Script [requires]
Shall I follow them and prepend them to the queue
of modules we are processing right now? [yes]
Running make test
Delayed until after prerequisites
Running make install
Delayed until after prerequisites
Running install for module 'Test::Script'
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for A/AD/ADAMK/Test-Script-1.07.tar.gz
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/A/AD/ADAMK/Test-Script-1.07.tar.gz
CPAN: checksum security checks disabled because Digest::SHA not installed.
x Test-Script-1.07/
x Test-Script-1.07/README
x Test-Script-1.07/Makefile.PL
x Test-Script-1.07/LICENSE
x Test-Script-1.07/META.yml
x Test-Script-1.07/MANIFEST
x Test-Script-1.07/lib/
x Test-Script-1.07/lib/Test/
x Test-Script-1.07/lib/Test/Script.pm
x Test-Script-1.07/Changes
x Test-Script-1.07/inc/
x Test-Script-1.07/inc/Module/
x Test-Script-1.07/inc/Module/Install/
x Test-Script-1.07/inc/Module/Install/DSL.pm
x Test-Script-1.07/inc/Module/Install/Win32.pm
x Test-Script-1.07/inc/Module/Install/WriteAll.pm
x Test-Script-1.07/inc/Module/Install/Can.pm
x Test-Script-1.07/inc/Module/Install/Metadata.pm
x Test-Script-1.07/inc/Module/Install/Base.pm
x Test-Script-1.07/inc/Module/Install/Makefile.pm
x Test-Script-1.07/inc/Module/Install/Fetch.pm
x Test-Script-1.07/inc/Module/Install.pm
x Test-Script-1.07/t/
x Test-Script-1.07/t/03_compiles_bad.t
x Test-Script-1.07/t/04_runs_good.t
x Test-Script-1.07/t/97_meta.t
x Test-Script-1.07/t/01_compile.t
x Test-Script-1.07/t/98_pod.t
x Test-Script-1.07/t/02_compiles_good.t
x Test-Script-1.07/t/05_runs_bad.t
x Test-Script-1.07/t/99_pmv.t
x Test-Script-1.07/t/bin/
x Test-Script-1.07/t/bin/bad.pl
x Test-Script-1.07/t/bin/good.pl
x Test-Script-1.07/t/bin/print.pl
x Test-Script-1.07/t/bin/four.pl

CPAN.pm: Going to build A/AD/ADAMK/Test-Script-1.07.tar.gz

Checking if your kit is complete...
Looks good
Warning: prerequisite IPC::Run3 0.034 not found.
Warning: prerequisite Probe::Perl 0.01 not found.
Writing Makefile for Test::Script
Could not read '/Users/fu7mu4/.cpan/build/Test-Script-1.07-7h5T8w/META.yml'. Falling back to other methods to determine prerequisites

        • Unsatisfied dependencies detected during ----
        • ADAMK/Test-Script-1.07.tar.gz ----

Probe::Perl [requires]
IPC::Run3 [requires]
Shall I follow them and prepend them to the queue
of modules we are processing right now? [yes]
Running make test
Delayed until after prerequisites
Running make install
Delayed until after prerequisites
Running install for module 'Probe::Perl'
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for K/KW/KWILLIAMS/Probe-Perl-0.01.tar.gz
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/K/KW/KWILLIAMS/Probe-Perl-0.01.tar.gz
CPAN: checksum security checks disabled because Digest::SHA not installed.
x Probe-Perl-0.01/
x Probe-Perl-0.01/Build.PL
x Probe-Perl-0.01/Changes
x Probe-Perl-0.01/lib/
x Probe-Perl-0.01/lib/Probe/
x Probe-Perl-0.01/lib/Probe/Perl.pm
x Probe-Perl-0.01/Makefile.PL
x Probe-Perl-0.01/MANIFEST
x Probe-Perl-0.01/META.yml
x Probe-Perl-0.01/README
x Probe-Perl-0.01/SIGNATURE
x Probe-Perl-0.01/t/
x Probe-Perl-0.01/t/basic.t

CPAN.pm: Going to build K/KW/KWILLIAMS/Probe-Perl-0.01.tar.gz

Checking if your kit is complete...
Looks good
Writing Makefile for Probe::Perl
Could not read '/Users/fu7mu4/.cpan/build/Probe-Perl-0.01-J_CYcn/META.yml'. Falling back to other methods to determine prerequisites
cp lib/Probe/Perl.pm blib/lib/Probe/Perl.pm
Manifying blib/man3/Probe::Perl.3pm
KWILLIAMS/Probe-Perl-0.01.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/basic....ok
All tests successful.
Files=1, Tests=19, 0 wallclock secs ( 0.03 cusr + 0.02 csys = 0.05 CPU)
KWILLIAMS/Probe-Perl-0.01.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/Probe-Perl-0.01-J_CYcn/blib/arch /Users/fu7mu4/.cpan/build/Probe-Perl-0.01-J_CYcn/blib/lib to PERL5LIB for 'install'
Installing /opt/local/lib/perl5/site_perl/5.8.9/Probe/Perl.pm
Installing /opt/local/share/man/man3/Probe::Perl.3pm
Writing /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/Probe/Perl/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
KWILLIAMS/Probe-Perl-0.01.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running install for module 'IPC::Run3'
'YAML' not installed, falling back to Data::Dumper and Storable to read prefs '/Users/fu7mu4/.cpan/prefs'
Running make for R/RJ/RJBS/IPC-Run3-0.043.tar.gz
Fetching with LWP:
http://www.perl.org/CPAN/authors/id/R/RJ/RJBS/IPC-Run3-0.043.tar.gz
CPAN: checksum security checks disabled because Digest::SHA not installed.
x IPC-Run3-0.043/
x IPC-Run3-0.043/Changes
x IPC-Run3-0.043/LICENSE
x IPC-Run3-0.043/MANIFEST
x IPC-Run3-0.043/MANIFEST.SKIP
x IPC-Run3-0.043/META.yml
x IPC-Run3-0.043/Makefile.PL
x IPC-Run3-0.043/README
x IPC-Run3-0.043/bin/
x IPC-Run3-0.043/bin/run3profpp
x IPC-Run3-0.043/lib/
x IPC-Run3-0.043/lib/IPC/
x IPC-Run3-0.043/lib/IPC/Run3/
x IPC-Run3-0.043/lib/IPC/Run3/ProfArrayBuffer.pm
x IPC-Run3-0.043/lib/IPC/Run3/ProfLogReader.pm
x IPC-Run3-0.043/lib/IPC/Run3/ProfLogger.pm
x IPC-Run3-0.043/lib/IPC/Run3/ProfPP.pm
x IPC-Run3-0.043/lib/IPC/Run3/ProfReporter.pm
x IPC-Run3-0.043/lib/IPC/Run3.pm
x IPC-Run3-0.043/t/
x IPC-Run3-0.043/t/IPC-Run3-ProfArrayBuffer.t
x IPC-Run3-0.043/t/IPC-Run3-ProfLogReader.t
x IPC-Run3-0.043/t/IPC-Run3-ProfLogger.t
x IPC-Run3-0.043/t/IPC-Run3-ProfPP.t
x IPC-Run3-0.043/t/IPC-Run3-ProfReporter.t
x IPC-Run3-0.043/t/IPC-Run3-profiling.t
x IPC-Run3-0.043/t/IPC-Run3.t
x IPC-Run3-0.043/t/fd_leak.t
x IPC-Run3-0.043/t/fork.t
x IPC-Run3-0.043/t/pod-coverage.t
x IPC-Run3-0.043/t/pod.t
x IPC-Run3-0.043/t/utf8.t

CPAN.pm: Going to build R/RJ/RJBS/IPC-Run3-0.043.tar.gz

Checking if your kit is complete...
Looks good
Writing Makefile for IPC::Run3
Could not read '/Users/fu7mu4/.cpan/build/IPC-Run3-0.043-WTqy9m/META.yml'. Falling back to other methods to determine prerequisites
cp lib/IPC/Run3/ProfArrayBuffer.pm blib/lib/IPC/Run3/ProfArrayBuffer.pm
cp lib/IPC/Run3/ProfPP.pm blib/lib/IPC/Run3/ProfPP.pm
cp lib/IPC/Run3.pm blib/lib/IPC/Run3.pm
cp lib/IPC/Run3/ProfLogReader.pm blib/lib/IPC/Run3/ProfLogReader.pm
cp lib/IPC/Run3/ProfLogger.pm blib/lib/IPC/Run3/ProfLogger.pm
cp lib/IPC/Run3/ProfReporter.pm blib/lib/IPC/Run3/ProfReporter.pm
Manifying blib/man3/IPC::Run3::ProfArrayBuffer.3pm
Manifying blib/man3/IPC::Run3::ProfPP.3pm
Manifying blib/man3/IPC::Run3::ProfLogger.3pm
Manifying blib/man3/IPC::Run3::ProfLogReader.3pm
Manifying blib/man3/IPC::Run3.3pm
Manifying blib/man3/IPC::Run3::ProfReporter.3pm
RJBS/IPC-Run3-0.043.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/fd_leak.....................ok
t/fork........................ok
t/IPC-Run3-ProfArrayBuffer....ok
t/IPC-Run3-profiling..........ok
t/IPC-Run3-ProfLogger.........ok
t/IPC-Run3-ProfLogReader......ok
t/IPC-Run3-ProfPP.............ok
t/IPC-Run3-ProfReporter.......ok
t/IPC-Run3....................ok
t/pod-coverage................skipped
all skipped: Test::Pod::Coverage 1.04 required for testing POD coverage
t/pod.........................skipped
all skipped: Test::Pod 1.00 required for testing POD
t/utf8........................ok
All tests successful, 2 tests skipped.
Files=12, Tests=63, 1 wallclock secs ( 0.54 cusr + 0.43 csys = 0.97 CPU)
RJBS/IPC-Run3-0.043.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/IPC-Run3-0.043-WTqy9m/blib/arch /Users/fu7mu4/.cpan/build/IPC-Run3-0.043-WTqy9m/blib/lib to PERL5LIB for 'install'
Installing /opt/local/lib/perl5/site_perl/5.8.9/IPC/Run3.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/IPC/Run3/ProfArrayBuffer.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/IPC/Run3/ProfLogReader.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/IPC/Run3/ProfLogger.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/IPC/Run3/ProfPP.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/IPC/Run3/ProfReporter.pm
Installing /opt/local/share/man/man3/IPC::Run3.3pm
Installing /opt/local/share/man/man3/IPC::Run3::ProfArrayBuffer.3pm
Installing /opt/local/share/man/man3/IPC::Run3::ProfLogReader.3pm
Installing /opt/local/share/man/man3/IPC::Run3::ProfLogger.3pm
Installing /opt/local/share/man/man3/IPC::Run3::ProfPP.3pm
Installing /opt/local/share/man/man3/IPC::Run3::ProfReporter.3pm
Writing /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/IPC/Run3/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
RJBS/IPC-Run3-0.043.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make for A/AD/ADAMK/Test-Script-1.07.tar.gz
Has already been unwrapped into directory /Users/fu7mu4/.cpan/build/Test-Script-1.07-7h5T8w

CPAN.pm: Going to build A/AD/ADAMK/Test-Script-1.07.tar.gz

cp lib/Test/Script.pm blib/lib/Test/Script.pm
Manifying blib/man3/Test::Script.3pm
ADAMK/Test-Script-1.07.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t
t/01_compile..........ok
t/02_compiles_good....ok
t/03_compiles_bad.....ok
t/04_runs_good........ok
t/05_runs_bad.........ok
t/97_meta.............skipped
all skipped: Author tests not required for installation
t/98_pod..............skipped
all skipped: Author tests not required for installation
t/99_pmv..............skipped
all skipped: Author tests not required for installation
All tests successful, 3 tests skipped.
Files=8, Tests=20, 1 wallclock secs ( 0.49 cusr + 0.14 csys = 0.63 CPU)
ADAMK/Test-Script-1.07.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/Test-Script-1.07-7h5T8w/blib/arch /Users/fu7mu4/.cpan/build/Test-Script-1.07-7h5T8w/blib/lib to PERL5LIB for 'install'
Installing /opt/local/lib/perl5/site_perl/5.8.9/Test/Script.pm
Installing /opt/local/share/man/man3/Test::Script.3pm
Writing /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/Test/Script/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
ADAMK/Test-Script-1.07.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make for A/AD/ADAMK/File-Which-1.09.tar.gz
Has already been unwrapped into directory /Users/fu7mu4/.cpan/build/File-Which-1.09-vWyzyQ

CPAN.pm: Going to build A/AD/ADAMK/File-Which-1.09.tar.gz

cp lib/File/Which.pm blib/lib/File/Which.pm
cp script/pwhich blib/script/pwhich
/opt/local/bin/perl "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/pwhich
Manifying blib/man1/pwhich.1pm
Manifying blib/man3/File::Which.3pm
ADAMK/File-Which-1.09.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/01_compile....ok
t/02_all........ok
t/03_simple.....ok
6/10 skipped: various reasons
t/04_pwhich.....ok
t/97_meta.......skipped
all skipped: Author tests not required for installation
t/98_pod........skipped
all skipped: Author tests not required for installation
t/99_pmv........skipped
all skipped: Author tests not required for installation
All tests successful, 3 tests and 6 subtests skipped.
Files=7, Tests=20, 0 wallclock secs ( 0.26 cusr + 0.07 csys = 0.33 CPU)
ADAMK/File-Which-1.09.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/File-Which-1.09-vWyzyQ/blib/arch /Users/fu7mu4/.cpan/build/File-Which-1.09-vWyzyQ/blib/lib to PERL5LIB for 'install'
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/Which.pm
Installing /opt/local/share/man/man1/pwhich.1pm
Installing /opt/local/share/man/man3/File::Which.3pm
Installing /opt/local/bin/pwhich
Writing /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/File/Which/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
ADAMK/File-Which-1.09.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make for A/AD/ADAMK/File-HomeDir-0.91.tar.gz
Has already been unwrapped into directory /Users/fu7mu4/.cpan/build/File-HomeDir-0.91-c4HelI

CPAN.pm: Going to build A/AD/ADAMK/File-HomeDir-0.91.tar.gz

cp lib/File/HomeDir/Darwin.pm blib/lib/File/HomeDir/Darwin.pm
cp lib/File/HomeDir/Darwin/Cocoa.pm blib/lib/File/HomeDir/Darwin/Cocoa.pm
cp lib/File/HomeDir/Test.pm blib/lib/File/HomeDir/Test.pm
cp lib/File/HomeDir/MacOS9.pm blib/lib/File/HomeDir/MacOS9.pm
cp lib/File/HomeDir/Driver.pm blib/lib/File/HomeDir/Driver.pm
cp lib/File/HomeDir/Windows.pm blib/lib/File/HomeDir/Windows.pm
cp lib/File/HomeDir.pm blib/lib/File/HomeDir.pm
cp lib/File/HomeDir/Unix.pm blib/lib/File/HomeDir/Unix.pm
cp lib/File/HomeDir/FreeDesktop.pm blib/lib/File/HomeDir/FreeDesktop.pm
cp lib/File/HomeDir/Darwin/Carbon.pm blib/lib/File/HomeDir/Darwin/Carbon.pm
Manifying blib/man3/File::HomeDir::Darwin::Cocoa.3pm
Manifying blib/man3/File::HomeDir::Darwin.3pm
Manifying blib/man3/File::HomeDir::Test.3pm
Manifying blib/man3/File::HomeDir.3pm
Manifying blib/man3/File::HomeDir::Unix.3pm
Manifying blib/man3/File::HomeDir::FreeDesktop.3pm
Manifying blib/man3/File::HomeDir::Darwin::Carbon.3pm
Manifying blib/man3/File::HomeDir::Windows.3pm
ADAMK/File-HomeDir-0.91.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t
t/01_compile..........ok
t/02_main.............ok
21/51 skipped: various reasons
t/10_test.............ok
t/11_darwin...........ok
1/6 skipped: various reasons
t/12_darwin_carbon....skipped
all skipped: Not running on 32-bit Darwin
t/13_darwin_cocoa.....skipped
all skipped: Not running on Darwin with Cocoa API using Mac::SystemDirectory
All tests successful, 2 tests and 22 subtests skipped.
Files=6, Tests=98, 0 wallclock secs ( 0.24 cusr + 0.06 csys = 0.30 CPU)
ADAMK/File-HomeDir-0.91.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/File-HomeDir-0.91-c4HelI/blib/arch /Users/fu7mu4/.cpan/build/File-HomeDir-0.91-c4HelI/blib/lib to PERL5LIB for 'install'
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Darwin.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Driver.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/FreeDesktop.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/MacOS9.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Test.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Unix.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Windows.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Darwin/Carbon.pm
Installing /opt/local/lib/perl5/site_perl/5.8.9/File/HomeDir/Darwin/Cocoa.pm
Installing /opt/local/share/man/man3/File::HomeDir.3pm
Installing /opt/local/share/man/man3/File::HomeDir::Darwin.3pm
Installing /opt/local/share/man/man3/File::HomeDir::Darwin::Carbon.3pm
Installing /opt/local/share/man/man3/File::HomeDir::Darwin::Cocoa.3pm
Installing /opt/local/share/man/man3/File::HomeDir::FreeDesktop.3pm
Installing /opt/local/share/man/man3/File::HomeDir::Test.3pm
Installing /opt/local/share/man/man3/File::HomeDir::Unix.3pm
Installing /opt/local/share/man/man3/File::HomeDir::Windows.3pm
Writing /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level/auto/File/HomeDir/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
ADAMK/File-HomeDir-0.91.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make for A/AN/ANDK/CPAN-1.9402.tar.gz
Has already been unwrapped into directory /Users/fu7mu4/.cpan/build/CPAN-1.9402-_qc1FQ

CPAN.pm: Going to build A/AN/ANDK/CPAN-1.9402.tar.gz

cp lib/CPAN.pm blib/lib/CPAN.pm
cp lib/CPAN/CacheMgr.pm blib/lib/CPAN/CacheMgr.pm
cp lib/CPAN/FTP/netrc.pm blib/lib/CPAN/FTP/netrc.pm
cp lib/CPAN/LWP/UserAgent.pm blib/lib/CPAN/LWP/UserAgent.pm
cp lib/CPAN/FTP.pm blib/lib/CPAN/FTP.pm
cp lib/CPAN/Queue.pm blib/lib/CPAN/Queue.pm
cp lib/CPAN/Distroprefs.pm blib/lib/CPAN/Distroprefs.pm
cp lib/CPAN/Kwalify/distroprefs.yml blib/lib/CPAN/Kwalify/distroprefs.yml
cp lib/CPAN/Kwalify.pm blib/lib/CPAN/Kwalify.pm
cp lib/CPAN/Module.pm blib/lib/CPAN/Module.pm
cp lib/CPAN/Author.pm blib/lib/CPAN/Author.pm
cp lib/CPAN/Debug.pm blib/lib/CPAN/Debug.pm
cp lib/CPAN/API/HOWTO.pod blib/lib/CPAN/API/HOWTO.pod
cp lib/CPAN/Complete.pm blib/lib/CPAN/Complete.pm
cp lib/CPAN/FirstTime.pm blib/lib/CPAN/FirstTime.pm
cp lib/CPAN/Distrostatus.pm blib/lib/CPAN/Distrostatus.pm
cp lib/CPAN/Exception/blocked_urllist.pm blib/lib/CPAN/Exception/blocked_urllist.pm
cp lib/CPAN/Admin.pm blib/lib/CPAN/Admin.pm
cp lib/CPAN/Prompt.pm blib/lib/CPAN/Prompt.pm
cp lib/CPAN/Tarzip.pm blib/lib/CPAN/Tarzip.pm
cp lib/CPAN/URL.pm blib/lib/CPAN/URL.pm
cp lib/CPAN/Version.pm blib/lib/CPAN/Version.pm
cp lib/CPAN/DeferredCode.pm blib/lib/CPAN/DeferredCode.pm
cp lib/CPAN/Distribution.pm blib/lib/CPAN/Distribution.pm
cp lib/CPAN/Nox.pm blib/lib/CPAN/Nox.pm
cp lib/CPAN/Bundle.pm blib/lib/CPAN/Bundle.pm
cp lib/CPAN/Exception/RecursiveDependency.pm blib/lib/CPAN/Exception/RecursiveDependency.pm
cp lib/CPAN/Shell.pm blib/lib/CPAN/Shell.pm
cp lib/CPAN/InfoObj.pm blib/lib/CPAN/InfoObj.pm
cp lib/CPAN/HandleConfig.pm blib/lib/CPAN/HandleConfig.pm
cp lib/CPAN/Exception/yaml_not_installed.pm blib/lib/CPAN/Exception/yaml_not_installed.pm
cp lib/CPAN/Index.pm blib/lib/CPAN/Index.pm
cp lib/CPAN/Kwalify/distroprefs.dd blib/lib/CPAN/Kwalify/distroprefs.dd
cp scripts/cpan blib/script/cpan
/opt/local/bin/perl "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/cpan
Manifying blib/man1/cpan.1pm
Manifying blib/man3/CPAN.3pm
Manifying blib/man3/CPAN::Admin.3pm
Manifying blib/man3/CPAN::Tarzip.3pm
Manifying blib/man3/CPAN::Debug.3pm
Manifying blib/man3/CPAN::HandleConfig.3pm
Manifying blib/man3/CPAN::Queue.3pm
Manifying blib/man3/CPAN::Distroprefs.3pm
Manifying blib/man3/CPAN::Version.3pm
Manifying blib/man3/CPAN::Kwalify.3pm
Manifying blib/man3/CPAN::API::HOWTO.3pm
Manifying blib/man3/CPAN::Nox.3pm
Manifying blib/man3/CPAN::FirstTime.3pm
ANDK/CPAN-1.9402.tar.gz
/usr/bin/make -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make test
PERL_DL_NONLAZY=1 /opt/local/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00signature..........skipped
all skipped: None of the supported SHA modules (Digest::SHA,Digest::SHA1,Digest::SHA::PurePerl) found
t/01loadme.............ok
t/02nox................ok
t/03pkgs...............ok
t/04clean_load.........ok
t/10version............ok
t/11mirroredby.........ok
t/12cpan...............ok
t/13tarzip.............x CPAN-Test-Dummy-Perl5-Build-1.03/
x CPAN-Test-Dummy-Perl5-Build-1.03/t/
x CPAN-Test-Dummy-Perl5-Build-1.03/t/00_load.t
x CPAN-Test-Dummy-Perl5-Build-1.03/MANIFEST
x CPAN-Test-Dummy-Perl5-Build-1.03/META.yml
x CPAN-Test-Dummy-Perl5-Build-1.03/lib/
x CPAN-Test-Dummy-Perl5-Build-1.03/lib/CPAN/
x CPAN-Test-Dummy-Perl5-Build-1.03/lib/CPAN/Test/
x CPAN-Test-Dummy-Perl5-Build-1.03/lib/CPAN/Test/Dummy/
x CPAN-Test-Dummy-Perl5-Build-1.03/lib/CPAN/Test/Dummy/Perl5/
x CPAN-Test-Dummy-Perl5-Build-1.03/lib/CPAN/Test/Dummy/Perl5/Build.pm
x CPAN-Test-Dummy-Perl5-Build-1.03/Changes
x CPAN-Test-Dummy-Perl5-Build-1.03/README
x CPAN-Test-Dummy-Perl5-Build-1.03/Build.PL
t/13tarzip.............ok
t/14forkbomb...........skipped
all skipped: test only run when called with --doit
t/30shell..............skipped
all skipped: no Expect, maybe try env CPAN_RUN_SHELL_TEST_WITHOUT_EXPECT=1
t/31sessions...........skipped
all skipped: Module::Build not installed
t/41distribution.......skipped
all skipped: No yaml module installed
t/42distroprefs........skipped
all skipped: YAML required
t/43distroprefspref....ok
t/50pod................skipped
all skipped: Test::Pod 1.00 required for testing POD
t/51pod................ok
t/52podcover...........skipped
all skipped: Test::Pod::Coverage 0.18 required for testing pod coverage
t/60credentials........ok
t/70_critic............skipped
all skipped: Test::Perl::Critic required to criticise code
All tests successful, 9 tests skipped.
Files=20, Tests=265, 4 wallclock secs ( 3.35 cusr + 0.73 csys = 4.08 CPU)
ANDK/CPAN-1.9402.tar.gz
/usr/bin/make test -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
Running make install
Prepending /Users/fu7mu4/.cpan/build/CPAN-1.9402-_qc1FQ/blib/arch /Users/fu7mu4/.cpan/build/CPAN-1.9402-_qc1FQ/blib/lib to PERL5LIB for 'install'
Installing /opt/local/lib/perl5/5.8.9/CPAN.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Admin.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Author.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Bundle.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/CacheMgr.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Complete.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/DeferredCode.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Distribution.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Distroprefs.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Distrostatus.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/FTP.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/FirstTime.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/HandleConfig.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Index.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/InfoObj.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Module.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Prompt.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Shell.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Tarzip.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/URL.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Exception/RecursiveDependency.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Exception/blocked_urllist.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/Exception/yaml_not_installed.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/FTP/netrc.pm
Installing /opt/local/lib/perl5/5.8.9/CPAN/LWP/UserAgent.pm
Installing /opt/local/share/man/man1p/cpan.1pm
Installing /opt/local/share/man/man3p/CPAN.3pm
Installing /opt/local/share/man/man3p/CPAN::API::HOWTO.3pm
Installing /opt/local/share/man/man3p/CPAN::Admin.3pm
Installing /opt/local/share/man/man3p/CPAN::Debug.3pm
Installing /opt/local/share/man/man3p/CPAN::Distroprefs.3pm
Installing /opt/local/share/man/man3p/CPAN::FirstTime.3pm
Installing /opt/local/share/man/man3p/CPAN::HandleConfig.3pm
Installing /opt/local/share/man/man3p/CPAN::Kwalify.3pm
Installing /opt/local/share/man/man3p/CPAN::Nox.3pm
Installing /opt/local/share/man/man3p/CPAN::Queue.3pm
Installing /opt/local/share/man/man3p/CPAN::Tarzip.3pm
Installing /opt/local/share/man/man3p/CPAN::Version.3pm
Installing /opt/local/bin/cpan
Writing /opt/local/lib/perl5/5.8.9/darwin-2level/auto/CPAN/.packlist
Appending installation info to /opt/local/lib/perl5/5.8.9/darwin-2level/perllocal.pod
ANDK/CPAN-1.9402.tar.gz
/usr/bin/make install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state