summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2010-01-05 12:45:35 +0000
committerThierry Vignaud <tv@mandriva.org>2010-01-05 12:45:35 +0000
commitb8a49716bdfc7d60b393b305189df0a82b87e4d8 (patch)
tree739ba0d7a76ecdc134f390ca088acccaa517d72d
parent15ed0dec2a9b5c816adde8666f2513afd0bc14ff (diff)
downloadurpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar
urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar.gz
urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar.bz2
urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.tar.xz
urpmi-b8a49716bdfc7d60b393b305189df0a82b87e4d8.zip
perl_checker cleanups & annotations
-rw-r--r--urpm/orphans.pm6
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";
}