in reply to Re: Is there a CPAN Log File?
in thread Is there a CPAN Log File?

Hey tobyink, thanks for the reply!

Cool thanks, that does list installed Modules... But how come I can't see Gtk2 or Glib?

Are those not considered Modules? I also ran that command on my Linux box just to see if that maybe it was ONLY a
Windows thing for why it didn't show those, but I couldn't see it on there either...

Thanks again for the reply, much appreciated!


Thanks Again,
Matt

Replies are listed 'Best First'.
Re^3: Is there a CPAN Log File?
by tobyink (Canon) on Aug 29, 2013 at 22:16 UTC

    It will probably only list modules that you've installed via the standard perl Makefile.PL; make; make test; make install (or the Build.PL equivalent) dance. This includes packages installed via the CPAN client. But if you've installed them some other way (e.g. your operating system's package manager) then that might bypass perllocal.pod.

    I personally install absobloodylutely everything using cpanminus (or actually, my fork of cpanminus, called cpantimes), and my perllocal.pod seems pretty accurate.

    I don't have Gtk2 on my current working version of Perl, but looking at perllocal.pod for my older installation, I see:

    Tue Jan 15 14:22:03 2013: "Module" Gtk2 · "installed into: /home/tai/.perlbrew/libs/perl-5.16.2@defau +lt/lib/perl5" · "LINKTYPE: dynamic" · "VERSION: 1.246" · "EXE_FILES: "
    use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name