From 777718a5a4940097ffd5f227d190267d5080775a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 26 Sep 2012 19:12:28 +0000 Subject: rename find_candidate_packages_() as find_candidate_packages() --- NEWS | 1 + URPM/Resolve.pm | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index 390857a..2c54213 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ - API: o add EVR method o remove long deprecated find_chosen_packages() & find_candidate_packages() + o rename find_candidate_packages_() as find_candidate_packages() Version 4.14 - 21 September 2012 diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm index 536fe5d..16aaf0e 100644 --- a/URPM/Resolve.pm +++ b/URPM/Resolve.pm @@ -68,7 +68,7 @@ sub removed_or_obsoleted_packages { #- (nb: see also find_required_package()) #- #- side-effects: none -sub find_candidate_packages_ { +sub find_candidate_packages { my ($urpm, $id_prop, $o_rejected) = @_; my @packages; @@ -186,7 +186,7 @@ sub provided_version_that_overlaps { #- find the package (or packages) to install matching $id_prop #- returns (list ref of matches, list ref of preferred matches) -#- (see also find_candidate_packages_()) +#- (see also find_candidate_packages()) #- #- side-effects: flag_install, flag_upgrade (and strict_arch_check_installed cache) sub find_required_package { @@ -573,7 +573,7 @@ sub backtrack_selected { #- search for all possible packages, first is to try the selection, then if it is #- impossible, backtrack the origin. - my @packages = find_candidate_packages_($urpm, $dep->{required}); + my @packages = find_candidate_packages($urpm, $dep->{required}); foreach (@packages) { #- avoid dead loop. @@ -936,7 +936,7 @@ sub resolve_requested__no_suggests { foreach (keys %$requested) { #- keep track of requested packages by propating the flag. - foreach (find_candidate_packages_($urpm, $_)) { + foreach (find_candidate_packages($urpm, $_)) { $_->set_flag_requested; } } @@ -1263,7 +1263,7 @@ sub _handle_diff_provides { #- try if upgrading the package will be satisfying all the requires... #- there is no need to avoid promoting epoch as the package examined is not #- already installed. - my @packages = find_candidate_packages_($urpm, $p->name, $state->{rejected}); + my @packages = find_candidate_packages($urpm, $p->name, $state->{rejected}); @packages = grep { ($_->name eq $p->name ? $p->compare_pkg($_) < 0 : $_->obsoletes_overlap($p->name . " == " . $p->epoch . ":" . $p->version . "-" . $p->release)) @@ -1283,7 +1283,7 @@ sub _handle_diff_provides { #- there exists enough packages that provided the unsatisfied requires. my @best; foreach (@unsatisfied) { - my @packages = find_candidate_packages_($urpm, $_, $state->{rejected}); + my @packages = find_candidate_packages($urpm, $_, $state->{rejected}); if (@packages = grep { $_->fullname ne $p->fullname } @packages) { push @best, join('|', map { $_->id } @packages); } @@ -1323,7 +1323,7 @@ sub _handle_conflict { #- whether a newer version will be ok, else ask to remove the old. my $need_deps = $p->name . " > " . ($p->epoch ? $p->epoch . ":" : "") . $p->version . "-" . $p->release; - my @packages = grep { $_->name eq $p->name } find_candidate_packages_($urpm, $need_deps, $state->{rejected}); + my @packages = grep { $_->name eq $p->name } find_candidate_packages($urpm, $need_deps, $state->{rejected}); @packages = grep { ! $_->provides_overlap($property) } @packages; if (!@packages) { -- cgit v1.2.1