summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-11-13 09:37:35 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-11-13 09:37:35 +0000
commitc7253523e977559d659d0cb6dad0bfe414e32a42 (patch)
treeee403bc8519e6af6270955383cf4dd628f810757
parent3ec10907cdac80d0d8ddacd7596cf9df40b0af40 (diff)
downloadurpmi-c7253523e977559d659d0cb6dad0bfe414e32a42.tar
urpmi-c7253523e977559d659d0cb6dad0bfe414e32a42.tar.gz
urpmi-c7253523e977559d659d0cb6dad0bfe414e32a42.tar.bz2
urpmi-c7253523e977559d659d0cb6dad0bfe414e32a42.tar.xz
urpmi-c7253523e977559d659d0cb6dad0bfe414e32a42.zip
cleanup: declare variables where they are needed
-rw-r--r--urpm.pm12
1 files changed, 7 insertions, 5 deletions
diff --git a/urpm.pm b/urpm.pm
index 392207f2..02c9a11f 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -2365,8 +2365,7 @@ sub get_packages_list {
#- associated to a null list.
sub get_source_packages {
my ($urpm, $packages, %options) = @_;
- my ($id, $error, @list_error, %protected_files, %local_sources, @list, %fullname2id, %file2fullnames, %examined);
- local $_;
+ my (%protected_files, %local_sources, %fullname2id);
#- build association hash to retrieve id and examine all list files.
foreach (keys %$packages) {
@@ -2381,6 +2380,7 @@ sub get_source_packages {
#- examine each medium to search for packages.
#- now get rpm file name in hdlist to match list file.
+ my %file2fullnames;
foreach my $pkg (@{$urpm->{depslist} || []}) {
$file2fullnames{$pkg->filename}{$pkg->fullname} = undef;
}
@@ -2397,7 +2397,7 @@ sub get_source_packages {
next;
} elsif (keys(%{$file2fullnames{$filename} || {}}) == 1) {
my ($fullname) = keys(%{$file2fullnames{$filename} || {}});
- if (defined($id = delete $fullname2id{$fullname})) {
+ if (defined(my $id = delete $fullname2id{$fullname})) {
$local_sources{$id} = $filepath;
} else {
$options{clean_other} && ! exists $protected_files{$filepath} and unlink $filepath;
@@ -2415,6 +2415,8 @@ sub get_source_packages {
#- clean download directory, do it here even if this is not the best moment.
clean_dir("$urpm->{cachedir}/partial") if $options{clean_all};
+ my ($error, @list_error, @list, %examined);
+
foreach my $medium (@{$urpm->{media} || []}) {
my (%sources, %list_examined, $list_warning);
@@ -2440,7 +2442,7 @@ sub get_source_packages {
next;
} elsif (keys(%{$file2fullnames{$filename} || {}}) == 1) {
my ($fullname) = keys(%{$file2fullnames{$filename} || {}});
- if (defined($id = $fullname2id{$fullname})) {
+ if (defined(my $id = $fullname2id{$fullname})) {
if (!/\.delta\.rpm$/ || $urpm->is_delta_installable($urpm->{depslist}[$id], $options{root})) {
$sources{$id} = $medium->{virtual} ? "$medium->{url}/$_" : $_;
}
@@ -2474,7 +2476,7 @@ sub get_source_packages {
my ($fullname) = keys(%{$file2fullnames{$fi} || {}});
unless (exists($list_examined{$fullname})) {
++$list_warning;
- if (defined($id = $fullname2id{$fullname})) {
+ if (defined(my $id = $fullname2id{$fullname})) {
if ($fi !~ /\.delta\.rpm$/ || $urpm->is_delta_installable($urpm->{depslist}[$id], $options{root})) {
$sources{$id} = "$medium->{url}/" . $fi;
}