aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2018-06-14 00:11:50 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2018-06-14 00:13:35 +0200
commit3ab0f02ec1b5bc55fd320df7982622387f3a42c2 (patch)
treedd4bef7021295d734f86c4c682be3f4886626e29
parent960d5d8cadfb39ddb5bb9a7cd361a1a165e9aad0 (diff)
downloadperl-URPM-3ab0f02ec1b5bc55fd320df7982622387f3a42c2.tar
perl-URPM-3ab0f02ec1b5bc55fd320df7982622387f3a42c2.tar.gz
perl-URPM-3ab0f02ec1b5bc55fd320df7982622387f3a42c2.tar.bz2
perl-URPM-3ab0f02ec1b5bc55fd320df7982622387f3a42c2.tar.xz
perl-URPM-3ab0f02ec1b5bc55fd320df7982622387f3a42c2.zip
fix finding better pkg (mga#23037)
alter commit ef5c24cccff5f374232276b3064813aba88ee888 so that sorting pkgs got a better one in first place, by: - comparing EVRs before name - comparing EVRs rather than synthesis ids
-rw-r--r--NEWS1
-rw-r--r--URPM/Resolve.pm3
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 1c9fa02..7b807da 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- fix finding better pkg (mga#23037)
- make logs more reproductible
Version 5.16 - 10 February 2018
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm
index 2a0b1c4..7b3b1e3 100644
--- a/URPM/Resolve.pm
+++ b/URPM/Resolve.pm
@@ -336,6 +336,7 @@ sub _find_required_package__sort {
my ($best, @other) = sort {
$a->[1] <=> $b->[1] #- we want the lowest (ie preferred arch)
|| $b->[2] <=> $a->[2] #- and the higher score
+ || $b->[0]->compare_pkg($a->[0]) #- then by EVR (for upgrade)
|| $a->[0]->fullname cmp $b->[0]->fullname; #- then by name
} map {
my $score = 0;
@@ -359,7 +360,7 @@ sub _find_required_package__sort {
if ($urpm->{media}) {
@chosen_with_score = sort {
$a->[2] != $b->[2] ?
- $a->[0]->id <=> $b->[0]->id :
+ $b->[0]->compare_pkg($a->[0]) :
$b->[1] <=> $a->[1] || $b->[0]->compare_pkg($a->[0]);
} map { [ $_, _score_for_locales($urpm, $db, $_), pkg2media($urpm->{media}, $_) ] } @chosen;
} else {