/usr/share/perl/5.14.2/CPANPLUS/Selfupdate.pm is in perl-modules 5.14.2-6ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 | package CPANPLUS::Selfupdate;
use strict;
use Params::Check qw[check];
use IPC::Cmd qw[can_run];
use CPANPLUS::Error qw[error msg];
use Module::Load::Conditional qw[check_install];
use Locale::Maketext::Simple Class => 'CPANPLUS', Style => 'gettext';
use CPANPLUS::Internals::Constants;
$Params::Check::VERBOSE = 1;
=head1 NAME
CPANPLUS::Selfupdate
=head1 SYNOPSIS
$su = $cb->selfupdate_object;
@feats = $su->list_features;
@feats = $su->list_enabled_features;
@mods = map { $su->modules_for_feature( $_ ) } @feats;
@mods = $su->list_core_dependencies;
@mods = $su->list_core_modules;
for ( @mods ) {
print $_->name " should be version " . $_->version_required;
print "Installed version is not uptodate!"
unless $_->is_installed_version_sufficient;
}
$ok = $su->selfupdate( update => 'all', latest => 0 );
=cut
### a config has describing our deps etc
{
my $Modules = {
dependencies => {
'File::Fetch' => '0.15_02', # lynx & 404 handling
'File::Spec' => '0.82',
'IPC::Cmd' => '0.36', # 5.6.2 compat: 2-arg open
'Locale::Maketext::Simple' => '0.01',
'Log::Message' => '0.01',
'Module::Load' => '0.10',
'Module::Load::Conditional' => '0.38', # returns dir for loaded
# modules
'version' => '0.73', # needed for M::L::C
# addresses #24630 and
# #24675
# Address ~0 overflow issue
'Params::Check' => '0.22',
'Package::Constants' => '0.01',
'Term::UI' => '0.18', # option parsing
'Test::Harness' => '2.62', # due to bug #19505
# only 2.58 and 2.60 are bad
'Test::More' => '0.47', # to run our tests
'Archive::Extract' => '0.16', # ./Dir bug fix
'Archive::Tar' => '1.23',
'IO::Zlib' => '1.04', # needed for Archive::Tar
'Object::Accessor' => '0.34', # mk_aliases support
'Module::CoreList' => '2.22', # deprecated core modules
'Module::Pluggable' => '2.4',
'Module::Loaded' => '0.01',
'Parse::CPAN::Meta' => '1.4200', # config_requires support
'ExtUtils::Install' => '1.42', # uninstall outside @INC
( check_install( module => 'CPANPLUS::Dist::Build' )
? ( 'CPANPLUS::Dist::Build' => '0.24' ) : () ),
},
features => {
# config_key_name => [
# sub { } to list module key/value pairs
# sub { } to check if feature is enabled
# ]
prefer_makefile => [
sub {
my $cb = shift;
$cb->configure_object->get_conf('prefer_makefile')
? { }
: { 'CPANPLUS::Dist::Build' => '0.24' };
},
sub { return 1 }, # always enabled
],
cpantest => [
{ 'Test::Reporter' => '1.34',
'Parse::CPAN::Meta' => '1.4200'
},
sub {
my $cb = shift;
return $cb->configure_object->get_conf('cpantest');
},
],
dist_type => [
sub {
my $cb = shift;
my $dist = $cb->configure_object->get_conf('dist_type');
return { $dist => '0.0' } if $dist;
return;
},
sub {
my $cb = shift;
return $cb->configure_object->get_conf('dist_type');
},
],
md5 => [
{
'Digest::SHA' => '0.0',
},
sub {
my $cb = shift;
return $cb->configure_object->get_conf('md5');
},
],
shell => [
sub {
my $cb = shift;
my $dist = $cb->configure_object->get_conf('shell');
### we bundle these shells, so don't bother having a dep
### on them... If we don't do this, CPAN.pm actually detects
### a recursive dependency and breaks (see #26077).
### This is not an issue for CPANPLUS itself, it handles
### it smartly.
return if $dist eq SHELL_DEFAULT or $dist eq SHELL_CLASSIC;
return { $dist => '0.0' } if $dist;
return;
},
sub { return 1 },
],
signature => [
sub {
my $cb = shift;
return {
'Module::Signature' => '0.06',
} if can_run('gpg');
### leave this out -- Crypt::OpenPGP is fairly
### painful to install, and broken on some platforms
### so we'll just always fall back to gpg. It may
### issue a warning or 2, but that's about it.
### this change due to this ticket: #26914
# and $cb->configure_object->get_conf('prefer_bin');
return {
'Crypt::OpenPGP' => '0.0',
'Module::Signature' => '0.06',
};
},
sub {
my $cb = shift;
return $cb->configure_object->get_conf('signature');
},
],
storable => [
{ 'Storable' => '0.0' },
sub {
my $cb = shift;
return $cb->configure_object->get_conf('storable');
},
],
sqlite_backend => [
{ 'DBIx::Simple' => '0.0',
'DBD::SQLite' => '0.0',
},
sub {
my $cb = shift;
my $conf = $cb->configure_object;
return $conf->get_conf('source_engine')
eq 'CPANPLUS::Internals::Source::SQLite'
},
],
},
core => {
'CPANPLUS' => '0.0',
},
};
sub _get_config { return $Modules }
}
=head1 METHODS
=head2 $self = CPANPLUS::Selfupdate->new( $backend_object );
Sets up a new selfupdate object. Called automatically when
a new backend object is created.
=cut
sub new {
my $class = shift;
my $cb = shift or return;
return bless sub { $cb }, $class;
}
{ ### cache to find the relevant modules
my $cache = {
core
=> sub { my $self = shift;
core => [ $self->list_core_modules ] },
dependencies
=> sub { my $self = shift;
dependencies => [ $self->list_core_dependencies ] },
enabled_features
=> sub { my $self = shift;
map { $_ => [ $self->modules_for_feature( $_ ) ] }
$self->list_enabled_features
},
features
=> sub { my $self = shift;
map { $_ => [ $self->modules_for_feature( $_ ) ] }
$self->list_features
},
### make sure to do 'core' first, in case
### we are out of date ourselves
all => [ qw|core dependencies enabled_features| ],
};
=head2 @cat = $self->list_categories
Returns a list of categories that the C<selfupdate> method accepts.
See C<selfupdate> for details.
=cut
sub list_categories { return sort keys %$cache }
=head2 %list = $self->list_modules_to_update( update => "core|dependencies|enabled_features|features|all", [latest => BOOL] )
List which modules C<selfupdate> would upgrade. You can update either
the core (CPANPLUS itself), the core dependencies, all features you have
currently turned on, or all features available, or everything.
The C<latest> option determines whether it should update to the latest
version on CPAN, or if the minimal required version for CPANPLUS is
good enough.
Returns a hash of feature names and lists of module objects to be
upgraded based on the category you provided. For example:
%list = $self->list_modules_to_update( update => 'core' );
Would return:
( core => [ $module_object_for_cpanplus ] );
=cut
sub list_modules_to_update {
my $self = shift;
my $cb = $self->();
my $conf = $cb->configure_object;
my %hash = @_;
my($type, $latest);
my $tmpl = {
update => { required => 1, store => \$type,
allow => [ keys %$cache ], },
latest => { default => 0, store => \$latest, allow => BOOLEANS },
};
{ local $Params::Check::ALLOW_UNKNOWN = 1;
check( $tmpl, \%hash ) or return;
}
my $ref = $cache->{$type};
### a list of ( feature1 => \@mods, feature2 => \@mods, etc )
my %list = UNIVERSAL::isa( $ref, 'ARRAY' )
? map { $cache->{$_}->( $self ) } @$ref
: $ref->( $self );
### filter based on whether we need the latest ones or not
for my $aref ( values %list ) {
$aref = [ $latest
? grep { !$_->is_uptodate } @$aref
: grep { !$_->is_installed_version_sufficient } @$aref
];
}
return %list;
}
=head2 $bool = $self->selfupdate( update => "core|dependencies|enabled_features|features|all", [latest => BOOL, force => BOOL] )
Selfupdate CPANPLUS. You can update either the core (CPANPLUS itself),
the core dependencies, all features you have currently turned on, or
all features available, or everything.
The C<latest> option determines whether it should update to the latest
version on CPAN, or if the minimal required version for CPANPLUS is
good enough.
Returns true on success, false on error.
=cut
sub selfupdate {
my $self = shift;
my $cb = $self->();
my $conf = $cb->configure_object;
my %hash = @_;
my $force;
my $tmpl = {
force => { default => $conf->get_conf('force'), store => \$force },
};
{ local $Params::Check::ALLOW_UNKNOWN = 1;
check( $tmpl, \%hash ) or return;
}
my %list = $self->list_modules_to_update( %hash ) or return;
### just the modules please
my @mods = map { @$_ } values %list;
my $flag;
for my $mod ( @mods ) {
unless( $mod->install( force => $force ) ) {
$flag++;
error(loc("Failed to update module '%1'", $mod->name));
}
}
return if $flag;
return 1;
}
}
=head2 @features = $self->list_features
Returns a list of features that are supported by CPANPLUS.
=cut
sub list_features {
my $self = shift;
return keys %{ $self->_get_config->{'features'} };
}
=head2 @features = $self->list_enabled_features
Returns a list of features that are enabled in your current
CPANPLUS installation.
=cut
sub list_enabled_features {
my $self = shift;
my $cb = $self->();
my @enabled;
for my $feat ( $self->list_features ) {
my $ref = $self->_get_config->{'features'}->{$feat}->[1];
push @enabled, $feat if $ref->($cb);
}
return @enabled;
}
=head2 @mods = $self->modules_for_feature( FEATURE [,AS_HASH] )
Returns a list of C<CPANPLUS::Selfupdate::Module> objects which
represent the modules required to support this feature.
For a list of features, call the C<list_features> method.
If the C<AS_HASH> argument is provided, no module objects are
returned, but a hashref where the keys are names of the modules,
and values are their minimum versions.
=cut
sub modules_for_feature {
my $self = shift;
my $feature = shift or return;
my $as_hash = shift || 0;
my $cb = $self->();
unless( exists $self->_get_config->{'features'}->{$feature} ) {
error(loc("Unknown feature '%1'", $feature));
return;
}
my $ref = $self->_get_config->{'features'}->{$feature}->[0];
### it's either a list of modules/versions or a subroutine that
### returns a list of modules/versions
my $href = UNIVERSAL::isa( $ref, 'HASH' ) ? $ref : $ref->( $cb );
return unless $href; # nothing needed for the feature?
return $href if $as_hash;
return $self->_hashref_to_module( $href );
}
=head2 @mods = $self->list_core_dependencies( [AS_HASH] )
Returns a list of C<CPANPLUS::Selfupdate::Module> objects which
represent the modules that comprise the core dependencies of CPANPLUS.
If the C<AS_HASH> argument is provided, no module objects are
returned, but a hashref where the keys are names of the modules,
and values are their minimum versions.
=cut
sub list_core_dependencies {
my $self = shift;
my $as_hash = shift || 0;
my $cb = $self->();
my $href = $self->_get_config->{'dependencies'};
return $href if $as_hash;
return $self->_hashref_to_module( $href );
}
=head2 @mods = $self->list_core_modules( [AS_HASH] )
Returns a list of C<CPANPLUS::Selfupdate::Module> objects which
represent the modules that comprise the core of CPANPLUS.
If the C<AS_HASH> argument is provided, no module objects are
returned, but a hashref where the keys are names of the modules,
and values are their minimum versions.
=cut
sub list_core_modules {
my $self = shift;
my $as_hash = shift || 0;
my $cb = $self->();
my $href = $self->_get_config->{'core'};
return $href if $as_hash;
return $self->_hashref_to_module( $href );
}
sub _hashref_to_module {
my $self = shift;
my $cb = $self->();
my $href = shift or return;
return map {
CPANPLUS::Selfupdate::Module->new(
$cb->module_tree($_) => $href->{$_}
)
} keys %$href;
}
=head1 CPANPLUS::Selfupdate::Module
C<CPANPLUS::Selfupdate::Module> extends C<CPANPLUS::Module> objects
by providing accessors to aid in selfupdating CPANPLUS.
These objects are returned by all methods of C<CPANPLUS::Selfupdate>
that return module objects.
=cut
{ package CPANPLUS::Selfupdate::Module;
use base 'CPANPLUS::Module';
### stores module name -> cpanplus required version
### XXX only can deal with 1 pair!
my %Cache = ();
my $Acc = 'version_required';
sub new {
my $class = shift;
my $mod = shift or return;
my $ver = shift; return unless defined $ver;
my $obj = $mod->clone; # clone the module object
bless $obj, $class; # rebless it to our class
$obj->$Acc( $ver );
return $obj;
}
=head2 $version = $mod->version_required
Returns the version of this module required for CPANPLUS.
=cut
sub version_required {
my $self = shift;
$Cache{ $self->name } = shift() if @_;
return $Cache{ $self->name };
}
=head2 $bool = $mod->is_installed_version_sufficient
Returns true if the installed version of this module is sufficient
for CPANPLUS, or false if it is not.
=cut
sub is_installed_version_sufficient {
my $self = shift;
return $self->is_uptodate( version => $self->$Acc );
}
}
1;
=pod
=head1 BUG REPORTS
Please report bugs or other issues to E<lt>bug-cpanplus@rt.cpan.org<gt>.
=head1 AUTHOR
This module by Jos Boumans E<lt>kane@cpan.orgE<gt>.
=head1 COPYRIGHT
The CPAN++ interface (of which this module is a part of) is copyright (c)
2001 - 2007, Jos Boumans E<lt>kane@cpan.orgE<gt>. All rights reserved.
This library is free software; you may redistribute and/or modify it
under the same terms as Perl itself.
=cut
# Local variables:
# c-indentation-style: bsd
# c-basic-offset: 4
# indent-tabs-mode: nil
# End:
# vim: expandtab shiftwidth=4:
|