summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2010-03-09 14:52:43 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2010-03-09 14:52:43 +0000
commit7ebbcd8277551d89f0e9b7395efd32866ff54adc (patch)
treec1e11fff69e51e6ea937e6221a60596a058f724f
parent9b9238399f5d6ec00ce23ef47991eedf406e3571 (diff)
downloadurpmi-7ebbcd8277551d89f0e9b7395efd32866ff54adc.tar
urpmi-7ebbcd8277551d89f0e9b7395efd32866ff54adc.tar.gz
urpmi-7ebbcd8277551d89f0e9b7395efd32866ff54adc.tar.bz2
urpmi-7ebbcd8277551d89f0e9b7395efd32866ff54adc.tar.xz
urpmi-7ebbcd8277551d89f0e9b7395efd32866ff54adc.zip
remember which media local packages came from
It's sometimes possible that a package is available from both a local medium (CDROM) and a distant one. This causes problems when the package isn't signed with the same key (this is bad but happens on MES5 install CDs) as urpmi tends to get confused about where a package comes from and then check the package against the wrong key. Packages are assigned IDs by urpmi, and these IDs are used to figure out the package media. This ID is also used as an identifier to "recognize" identical packages coming from different media, so we need to be careful when manipulating it. In particular, we can't assign the right ID to every package right away because then this would break package downloading (we'd download packages available on local media). When processing packages to download, if we encounter a local package, we assign it the right ID. This assumes the list of media in the blist are sorted by order of relevance (ie prioritary ones first).
-rw-r--r--NEWS4
-rw-r--r--urpm/get_pkgs.pm7
2 files changed, 10 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e9de8fcf..57e2f13d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+- urpmi
+ o don't confuse media/media keys when a package is available from different
+ media (eg CDROM/network)
+
Version 6.25.6 - 19 June 2009
- urpmi
diff --git a/urpm/get_pkgs.pm b/urpm/get_pkgs.pm
index 972e1fba..d0ebf3d5 100644
--- a/urpm/get_pkgs.pm
+++ b/urpm/get_pkgs.pm
@@ -182,7 +182,12 @@ sub download_packages_of_distant_media {
#- examine all files to know what can be indexed on multiple media.
while (my ($id, $pkg) = each %{$blist->{pkgs}}) {
#- the given URL is trusted, so the file can safely be ignored.
- defined $sources->{$id} and next;
+ if (defined $sources->{$id}) {
+ $new_sources{$id} = [ $pkg->id, $sources->{$id} ];
+ delete $sources->{$id};
+ next;
+ }
+
exists $new_sources{$id} and next;
if (urpm::is_local_medium($blist->{medium})) {
my $local_file = file_from_local_url(urpm::blist_pkg_to_url($blist, $pkg));