diff options
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | urpm/orphans.pm | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,9 @@ -- urpmi, urpmq: +- urpmi, urpmq o do not display all substring matches on stderr, only a subset of them, and suggest to use "-a" to use all matches (#38956) +- urpmi + o do not write useless "foo (obsoletes foo-xxx)" in + installed-through-deps.list (#42167) Version 6.4 - 14 August 2008, Thierry Vignaud diff --git a/urpm/orphans.pm b/urpm/orphans.pm index f68a680d..ce050319 100644 --- a/urpm/orphans.pm +++ b/urpm/orphans.pm @@ -101,7 +101,9 @@ sub _renamed_unrequested { my ($new_fn) = keys %{$rejected->{$fn}{closure}}; my ($new_n) = $new_fn =~ $fullname2name_re; - $l{$new_n} = "(obsoletes $fn)"; + if ($new_n ne $n) { + $l{$new_n} = "(obsoletes $fn)"; + } } %l; } |