diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-07-06 10:31:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-07-06 10:31:26 +0000 |
commit | 3cce30bc391b238dedc3d470892319ab8ed412a1 (patch) | |
tree | 5ac61d93a6263c76582372534899ec9aab82e43b /urpmq | |
parent | 79a9cfca4f9e46fcb121194b8db5bcb8d528547d (diff) | |
download | urpmi-3cce30bc391b238dedc3d470892319ab8ed412a1.tar urpmi-3cce30bc391b238dedc3d470892319ab8ed412a1.tar.gz urpmi-3cce30bc391b238dedc3d470892319ab8ed412a1.tar.bz2 urpmi-3cce30bc391b238dedc3d470892319ab8ed412a1.tar.xz urpmi-3cce30bc391b238dedc3d470892319ab8ed412a1.zip |
- urpmq
o --whatrequires: fix skipping packages through provides provided by other
packages, when the other package is the same pkg name (#31773)
Diffstat (limited to 'urpmq')
-rwxr-xr-x | urpmq | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -285,11 +285,9 @@ if ($urpm::args::options{list_aliases}) { #- for all provides of package, look up what is requiring them. foreach ($pkg->provides) { if (my ($n, $s) = /^([^\s\[]*)(?:\[\*\])?\[?([^\s\]]*\s*[^\s\]]*)/) { - if (keys %{$urpm->{provides}{$n}} > 1) { - #- If more than one thing provides this requirement - #- then don't bother finding stuff - #- that needs it as it will be invalid - my @l = grep { $_ ne $pkg->name } map { $_->name } $urpm->packages_providing($n); + if (my @l = grep { $_ ne $pkg->name } map { $_->name } $urpm->packages_providing($n)) { + #- If another package provides this requirement, + #- then don't bother finding stuff that needs it as it will be invalid $urpm->{log}(sprintf "skipping package(s) requiring %s via %s, since %s is also provided by %s", $pkg->name, $n, $n, join(' ', @l)); next; } |