1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
#!/usr/bin/perl
use strict;
use warnings;
use ExtUtils::Installed;
use Getopt::Long;
use Config;
use version;
use IO::Zlib;
use CPAN::DistnameInfo;
use Module::Metadata;
use URI;
our $VERSION = "0.32";
my $mirror = 'http://www.cpan.org/';
my $local_lib;
my $self_contained = 0;
my $index_file;
my $help;
Getopt::Long::Configure("bundling");
Getopt::Long::GetOptions(
'h|help' => \$help,
'verbose' => \my $verbose,
'm|mirror=s' => \$mirror,
'index=s' => \$index_file,
'p|print-package' => \my $print_package,
'I=s' => sub { die "this option was deprecated" },
'l|local-lib=s' => \$local_lib,
'L|local-lib-contained=s' =>
sub { $local_lib = $_[1]; $self_contained = 1; },
'compare-changes' => sub {
die "--compare-changes option was deprecated.\n"
. "You can use 'cpan-listchanges `cpan-outdated -p`' instead.\n"
. "cpanm cpan-listchanges # install from CPAN\n"
},
'exclude-core' => \my $exclude_core,
) or $help++;
if ($help) {
require Pod::Usage;
Pod::Usage::pod2usage();
}
$mirror =~ s:/$::;
my $index_url = "${mirror}/modules/02packages.details.txt.gz";
$index_url = URI->new($index_url);
if ($index_url->isa('URI::file')) {
die '--index is incompatible with a file:// mirror' if defined $index_file;
$index_file = $index_url->file
}
my $core_modules;
if ($exclude_core) {
require Module::CoreList;
no warnings 'once';
$core_modules = $Module::CoreList::version{$]};
}
unless ($ENV{HARNESS_ACTIVE}) {
&main;
exit;
}
sub modules_to_check {
my @inc = @_;
my @modules =
ExtUtils::Installed->new(skip_cwd => 1, inc_override => \@inc)->modules;
# As core modules may not have been listed by EUI because they lack
# .packlist, we add them from Module::CoreList
if (!$exclude_core || ($local_lib && !$self_contained)) {
require Module::CoreList;
# This adds duplicates, but they are removed by the caller
push @modules, keys %{ $Module::CoreList::version{$]} };
}
(@modules)
}
sub installed_version_for {
my($pkg, $inc) = @_;
local $SIG{__WARN__} = sub {};
my $meta = Module::Metadata->new_from_module($pkg, inc => $inc);
$meta ? $meta->version($pkg) : undef;
}
sub main {
my @inc = make_inc($local_lib, $self_contained);
if ( !defined($index_file)
|| ! -e $index_file || -z $index_file
|| !$index_url->isa('URI::file')) {
$index_file = get_index($index_url, $index_file)
}
my %installed = map { $_ => 1 } modules_to_check(@inc);
my $fh = zopen($index_file) or die "cannot open $index_file";
# skip header part
while (my $line = <$fh>) {
last if $line eq "\n";
}
# body part
my %seen;
my %dist_latest_version;
LINES: while (my $line = <$fh>) {
my ($pkg, $version, $dist) = split /\s+/, $line;
next unless $installed{$pkg};
next if $version eq 'undef';
# The note below about the latest version heuristics applies here too
next if $seen{$dist};
# $Mail::SpamAssassin::Conf::VERSION is 'bogus'
# https://rt.cpan.org/Public/Bug/Display.html?id=73465
next unless $version =~ /[0-9]/;
# if excluding core modules
next if $exclude_core && exists $core_modules->{$pkg};
next if $dist =~ m{/perl-[0-9._]+\.tar\.(gz|bz2)$};
my $inst_version = installed_version_for($pkg, \@inc)
or next;
if (compare_version($inst_version, $version)) {
$seen{$dist}++;
if ($verbose) {
printf "%-30s %-7s %-7s %s\n", $pkg, $inst_version, $version, $dist;
} elsif ($print_package) {
print "$pkg\n";
} else {
print "$dist\n";
}
}
}
}
# return true if $inst_version is less than $version
sub compare_version {
my ($inst_version, $version) = @_;
return 0 if $inst_version eq $version;
my $inst_version_obj = eval { version->new($inst_version) } || version->new(permissive_filter($inst_version));
my $version_obj = eval { version->new($version) } || version->new(permissive_filter($version));
return $inst_version_obj < $version_obj ? 1 : 0;
}
# for broken packages.
sub permissive_filter {
local $_ = $_[0];
s/^[Vv](\d)/$1/; # Bioinf V2.0
s/^(\d+)_(\d+)$/$1.$2/; # VMS-IndexedFile 0_02
s/-[a-zA-Z]+$//; # Math-Polygon-Tree 0.035-withoutworldwriteables
s/([a-j])/ord($1)-ord('a')/gie; # DBD-Solid 0.20a
s/[_h-z-]/./gi; # makepp 1.50.2vs.070506
s/\.{2,}/./g;
$_;
}
# Return the $fname (a generated File::Temp object if not provided)
sub get_index {
my ($url, $fname) = @_;
require HTTP::Tiny;
my $ua = HTTP::Tiny->new;
my $response;
if (defined $fname) {
# If the file is not empty, use it as a local cached copy
if (-s $fname) {
$response = $ua->mirror($url, $fname);
} else {
# If the file is empty we do not trust its timestamp
# so set a custom If-Modified-Since (Perl 5.0 release)
$response = $ua->mirror($url, $fname,
{
headers => {
'if-modified-since' => 'Wed, 19 Oct 1994 17:18:57 GMT',
},
});
}
} else {
require File::Temp;
$fname = File::Temp->new(UNLINK => 1, SUFFIX => '.gz');
binmode $fname;
$response = $ua->request(
'GET' => $url,
{
data_callback => sub { print {$fname} $_[0] },
}
);
close $fname;
}
if ($response->{status} == 599) {
die "Cannot get_index $url to $fname: $response->{content}";
# 304 = "Not Modified" is still a success since we are mirroring
} elsif (! $response->{success}) {
die "Cannot get_index $url to $fname: $response->{status} $response->{reason}";
}
#print "$fname $response->{status} $response->{reason}\n";
# Return the filename (which might be a File::Temp object)
$fname
}
sub zopen {
# Explicitely stringify the filename as it may be a File::Temp object
IO::Zlib->new("$_[0]", "rb");
}
sub make_inc {
my ($base, $self_contained) = @_;
if ($base) {
require local::lib;
my @modified_inc = (
local::lib->install_base_perl_path($base),
local::lib->install_base_arch_path($base),
);
if ($self_contained) {
push @modified_inc, @Config{qw(privlibexp archlibexp)};
} else {
push @modified_inc, @INC;
}
return @modified_inc;
} else {
return @INC;
}
}
__END__
=head1 NAME
cpan-outdated - detect outdated CPAN modules in your environment
=head1 SYNOPSIS
# print a list of distributions that contain outdated modules
% cpan-outdated
# print a list of outdated modules in packages
% cpan-outdated -p
# verbose
% cpan-outdated --verbose
# ignore core modules (do not update dual life modules)
% cpan-outdated --exclude-core
# alternate mirrors
% cpan-outdated --mirror file:///home/user/minicpan/
# additional module path(same as cpanminus)
% cpan-outdated -l extlib/
% cpan-outdated -L extlib/
# install with cpan
% cpan-outdated | xargs cpan -i
# install with cpanm
% cpan-outdated | cpanm
% cpan-outdated -p | cpanm
=head1 DESCRIPTION
This script prints a list of outdated CPAN modules on your machine.
This is the same feature as 'CPAN::Shell->r', but C<cpan-outdated> is much faster and uses less memory.
This script can be integrated with the L<cpanm> command.
=head1 PRINTING PACKAGES VS DISTRIBUTIONS
This script by default prints the outdated distribution as in the CPAN
distro format, i.e: C<A/AU/AUTHOR/Distribution-Name-0.10.tar.gz> so
you can pipe it into CPAN installers, but with the C<-p> option it can be
tweaked to print the module's package names.
If you wish to manage a set of modules separately from your system
perl installation and not install newer versions of "dual life modules"
that are distributed with perl, the C<--exclude-core> option will make
cpan-outdated ignore changes to core modules. Used with tools like
cpanm and its C<-L --local-lib-contained> and C<--self-contained> options,
this facilitates maintaining updates on standalone sets of modules.
For some tools, such as L<cpanm>, installing from packages could be a
bit more useful since you can track to see the old version number
which you upgrade from.
=head1 AUTHOR
Tokuhiro Matsuno
=head1 LICENSE
Copyright (C) 2009 Tokuhiro Matsuno.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
L<CPAN>
L<App::cpanminus>
If you want to see what's changed for modules that require upgrades, use L<cpan-listchanges>
=cut
|