diff options
author | Francois Pons <fpons@mandriva.com> | 2002-10-25 07:58:56 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-10-25 07:58:56 +0000 |
commit | 9b0551b8268d4c755d6090f18665ff97036abf44 (patch) | |
tree | 7cb6c11e15d12457e42b513a6dce1c40cab7f7e4 /urpm.pm | |
parent | 8621a2d4e8b5f15dfc8cf87182899f83702c6275 (diff) | |
download | urpmi-9b0551b8268d4c755d6090f18665ff97036abf44.tar urpmi-9b0551b8268d4c755d6090f18665ff97036abf44.tar.gz urpmi-9b0551b8268d4c755d6090f18665ff97036abf44.tar.bz2 urpmi-9b0551b8268d4c755d6090f18665ff97036abf44.tar.xz urpmi-9b0551b8268d4c755d6090f18665ff97036abf44.zip |
4.0-22mdk
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -1731,7 +1731,7 @@ sub get_source_packages { if ($urpm->{source}{$_}) { $local_sources{$_} = $urpm->{source}{$_}; } else { - $fullname2id{$p->fullname} = $_; + $fullname2id{$p->fullname} = $_.''; } } @@ -1741,30 +1741,30 @@ sub get_source_packages { $file2fullnames{($pkg->filename =~ /(.*)\.rpm$/ && $1) || $pkg->fullname}{$pkg->fullname} = undef; } - #- examine the local repository, which is trusted. + #- examine the local repository, which is trusted (no gpg or pgp signature check but md5 is now done). opendir D, "$urpm->{cachedir}/rpms"; while (defined($_ = readdir D)) { - if (/([^\/]*)\.rpm/) { - if (!$options{clean} && -s "$urpm->{cachedir}/rpms/$1.rpm") { - #print STDERR "looking at $urpm->{cachedir}/rpms/$1.rpm\n"; - if (keys(%{$file2fullnames{$1} || {}}) > 1) { - $urpm->{error}(_("there are multiple packages with the same rpm filename \"%s\""), $1); + if (my ($filename) = /^([^\/]*)\.rpm$/) { + my $filepath = "$urpm->{cachedir}/rpms/$filename.rpm"; + if (!$options{clean} && -s $filepath && URPM::verify_rpm($filepath, nogpg => 1, nopgp => 1) =~ /OK/) { + if (keys(%{$file2fullnames{$filename} || {}}) > 1) { + $urpm->{error}(_("there are multiple packages with the same rpm filename \"%s\""), $filename); next; - } elsif (keys(%{$file2fullnames{$1} || {}}) == 1) { - my ($fullname) = keys(%{$file2fullnames{$1} || {}}); + } elsif (keys(%{$file2fullnames{$filename} || {}}) == 1) { + my ($fullname) = keys(%{$file2fullnames{$filename} || {}}); if (defined($id = delete $fullname2id{$fullname})) { - $local_sources{$id} = "$urpm->{cachedir}/rpms/$1.rpm"; + $local_sources{$id} = $filepath; } else { - push @local_to_removes, "$urpm->{cachedir}/rpms/$1.rpm"; + push @local_to_removes, $filepath; } } else { - push @local_to_removes, "$urpm->{cachedir}/rpms/$1.rpm"; + push @local_to_removes, $filepath; } } else { #- this is an invalid file in cache, remove it and ignore it. #- or clean options has been given meaning ignore any file in cache #- remove it too. - unlink "$urpm->{cachedir}/rpms/$1.rpm"; + unlink $filepath; } } #- no error on unknown filename located in cache (because .listing) } |