diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-01-05 12:45:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-01-05 12:45:35 +0000 |
commit | b8a49716bdfc7d60b393b305189df0a82b87e4d8 (patch) | |
tree | 739ba0d7a76ecdc134f390ca088acccaa517d72d /urpm/orphans.pm | |
parent | 15ed0dec2a9b5c816adde8666f2513afd0bc14ff (diff) | |
download | urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar.gz urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar.bz2 urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar.xz urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.zip |
perl_checker cleanups & annotations
Diffstat (limited to 'urpm/orphans.pm')
-rw-r--r-- | urpm/orphans.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm index 7a3b0eab..5aef3c6d 100644 --- a/urpm/orphans.pm +++ b/urpm/orphans.pm @@ -356,6 +356,7 @@ sub _all_unrequested_orphans { $l{$pkg->name} = $pkg; push @{$provides{$_}}, $pkg foreach $pkg->provides_nosense; } + # (tv) FIXME: this won't work when chrooted: my $unreq_list = unrequested_list(); my $current_kernel = _get_current_kernel_package(); @@ -376,7 +377,7 @@ sub _all_unrequested_orphans { # add orphan kernels to the list: my $a = { _get_orphan_kernels() }; - add2hash_(\%l,$a); + add2hash_(\%l, $a); # do not offer to remove current kernel: delete $l{$current_kernel}; @@ -426,7 +427,8 @@ sub get_now_orphans_msg { my @orphans = map { scalar $_->fullname } @$orphans or return ''; P("The following package:\n%s\nis now orphaned, if you wish to remove it, you can use \"urpme --auto-orphans\"", - "The following packages:\n%s\nare now orphaned, if you wish to remove them, you can use \"urpme --auto-orphans\"",scalar(@orphans), add_leading_spaces(join("\n", sort @orphans)))."\n"; + "The following packages:\n%s\nare now orphaned, if you wish to remove them, you can use \"urpme --auto-orphans\"", + scalar(@orphans), add_leading_spaces(join("\n", sort @orphans))) . "\n"; } |