diff options
author | Francois Pons <fpons@mandriva.com> | 2003-02-14 10:35:30 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-02-14 10:35:30 +0000 |
commit | de707342053ad0a8fe780b38b5df480b3a37d6b1 (patch) | |
tree | 1d1188f91836ba0f51fe993004d02a9184a787f3 | |
parent | 6b9799dd378c5ec546dab74796f02f438417003d (diff) | |
download | urpmi-de707342053ad0a8fe780b38b5df480b3a37d6b1.tar urpmi-de707342053ad0a8fe780b38b5df480b3a37d6b1.tar.gz urpmi-de707342053ad0a8fe780b38b5df480b3a37d6b1.tar.bz2 urpmi-de707342053ad0a8fe780b38b5df480b3a37d6b1.tar.xz urpmi-de707342053ad0a8fe780b38b5df480b3a37d6b1.zip |
4.2-18mdk
-rw-r--r-- | urpm.pm | 10 | ||||
-rw-r--r-- | urpmi.spec | 6 |
2 files changed, 10 insertions, 6 deletions
@@ -988,9 +988,9 @@ sub select_media { } elsif (@found == 0 && @foundi == 0) { $urpm->{error}(_("trying to select inexistent medium \"%s\"", $_)); } else { #- multiple element in found or foundi list. - $urpm->{log}(_("selecting multiple media: %s", join(", ", map { _("\"%s\"", $_->{name}) } (@found || @foundi)))); + $urpm->{log}(_("selecting multiple media: %s", join(", ", map { _("\"%s\"", $_->{name}) } (@found ? @found : @foundi)))); #- changed behaviour to select all occurence by default. - foreach (@found || @foundi) { + foreach (@found ? @found : @foundi) { $_->{modified} = 1; } } @@ -1825,7 +1825,7 @@ sub register_rpms { $urpm->{source}{$id} = $_; } $error and $urpm->{fatal}(1, _("error registering local packages")); - $start <= $id and @requested{($start .. $id)} = (1) x ($id-$start+1); + defined $id && $start <= $id and @requested{($start .. $id)} = (1) x ($id-$start+1); #- distribute local packages to distant nodes directly in cache of each machine. @files && $urpm->{parallel_handler} and $urpm->{parallel_handler}->parallel_register_rpms(@_); @@ -2085,7 +2085,7 @@ sub get_source_packages { foreach my $medium (@{$urpm->{media} || []}) { my %sources; - unless ($medium->{ignore}) { + if (defined $medium->{start} && defined $medium->{end} && !$medium->{ignore}) { #- always prefer a list file is available. if ($medium->{list} && -r "$urpm->{statedir}/$medium->{list}") { open F, "$urpm->{statedir}/$medium->{list}"; @@ -2108,7 +2108,7 @@ sub get_source_packages { } } close F; - } elsif (defined $medium->{url} && defined $medium->{start} && defined $medium->{end}) { + } elsif (defined $medium->{url}) { foreach ($medium->{start} .. $medium->{end}) { my $pkg = $urpm->{depslist}[$_]; my ($filename) = $pkg->filename =~ /([^\/]*)\.rpm$/; @@ -2,7 +2,7 @@ Name: urpmi Version: 4.2 -Release: 17mdk +Release: 18mdk License: GPL Source0: %{name}.tar.bz2 Source1: %{name}.logrotate @@ -206,6 +206,10 @@ fi %changelog +* Fri Feb 14 2003 François Pons <fpons@mandrakesoft.com> 4.2-18mdk +- fixed bug 1473 and 1329. +- fixed bug 1608 (titi sucks). + * Wed Feb 12 2003 François Pons <fpons@mandrakesoft.com> 4.2-17mdk - added some perl_checker suggestions (some from titi). - help urpmf probe if this is a regexp or not (only ++ checked). |