summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-02-26 19:26:37 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-02-26 19:26:37 +0000
commita6f2d3d26b5603350d49b03004879bb853575378 (patch)
tree536f1a5115d0ebd960b7f5e2ffd03685c9056551 /urpm
parentfc2ac68bb026bf4180ef39bf9fc89195f7ac19e2 (diff)
downloadurpmi-a6f2d3d26b5603350d49b03004879bb853575378.tar
urpmi-a6f2d3d26b5603350d49b03004879bb853575378.tar.gz
urpmi-a6f2d3d26b5603350d49b03004879bb853575378.tar.bz2
urpmi-a6f2d3d26b5603350d49b03004879bb853575378.tar.xz
urpmi-a6f2d3d26b5603350d49b03004879bb853575378.zip
move $examine_removable_medium sub out of copy_packages_of_removable_media
Diffstat (limited to 'urpm')
-rw-r--r--urpm/removable.pm33
1 files changed, 17 insertions, 16 deletions
diff --git a/urpm/removable.pm b/urpm/removable.pm
index e6907999..28fb553e 100644
--- a/urpm/removable.pm
+++ b/urpm/removable.pm
@@ -96,20 +96,11 @@ sub _check_notfound {
0;
}
-#- $list is a [ { pkg_id1 => url1, ... }, { ... }, ... ]
-#- where there is one hash for each medium in {media}
-sub copy_packages_of_removable_media {
- my ($urpm, $list, $sources, $o_ask_for_medium) = @_;
- my %removables;
+#- removable media have to be examined to keep mounted the one that has
+#- more packages than others.
+sub _examine_removable_medium {
+ my ($urpm, $list, $sources, $id, $device, $o_ask_for_medium) = @_;
- #- make sure everything is correct on input...
- $urpm->{media} or return;
- @{$urpm->{media}} == @$list or return;
-
- #- removable media have to be examined to keep mounted the one that has
- #- more packages than others.
- my $examine_removable_medium = sub {
- my ($id, $device) = @_;
my $medium = $urpm->{media}[$id];
if (my $dir = file_from_local_url($medium->{url})) {
#- the directory given does not exist and may be accessible
@@ -158,7 +149,17 @@ sub copy_packages_of_removable_media {
#- we have a removable device that is not removable, well...
$urpm->{error}(N("inconsistent medium \"%s\" marked removable but not really", $medium->{name}));
}
- };
+}
+
+#- $list is a [ { pkg_id1 => url1, ... }, { ... }, ... ]
+#- where there is one hash for each medium in {media}
+sub copy_packages_of_removable_media {
+ my ($urpm, $list, $sources, $o_ask_for_medium) = @_;
+ my %removables;
+
+ #- make sure everything is correct on input...
+ $urpm->{media} or return;
+ @{$urpm->{media}} == @$list or return;
foreach (0..$#$list) {
values %{$list->[$_]} or next;
@@ -188,13 +189,13 @@ sub copy_packages_of_removable_media {
#- mount all except the biggest one.
my $biggest = pop @sorted_media;
foreach (@sorted_media) {
- $examine_removable_medium->($_, $device);
+ _examine_removable_medium($urpm, $list, $sources, $_, $device, $o_ask_for_medium);
}
#- now mount the last one...
$removables{$device} = [ $biggest ];
}
- $examine_removable_medium->($removables{$device}[0], $device);
+ _examine_removable_medium($urpm, $list, $sources, $removables{$device}[0], $device, $o_ask_for_medium);
}
1;