summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm.pm10
-rw-r--r--urpmi.spec6
2 files changed, 10 insertions, 6 deletions
diff --git a/urpm.pm b/urpm.pm
index d45d1281..9712d528 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -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$/;
diff --git a/urpmi.spec b/urpmi.spec
index 82a25793..9c7b0edd 100644
--- a/urpmi.spec
+++ b/urpmi.spec
@@ -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).