]> git.saurik.com Git - apt.git/commitdiff
policy: Fix the handling of config-files states
authorJulian Andres Klode <jak@debian.org>
Mon, 10 Aug 2015 13:52:06 +0000 (15:52 +0200)
committerJulian Andres Klode <jak@debian.org>
Mon, 10 Aug 2015 13:58:31 +0000 (15:58 +0200)
Gbp-Dch: ignore

apt-pkg/policy.cc

index 78e34a34498107f6032c068c8de2b899fb79aed6..7947103d58f9b59399839c13a90cbc96d79bfbac 100644 (file)
@@ -238,7 +238,7 @@ pkgCache::VerIterator pkgPolicy::GetCandidateVerNew(pkgCache::PkgIterator const
    for (pkgCache::VerIterator ver = Pkg.VersionList(); ver.end() == false; ver++) {
       int priority = GetPriority(ver);
 
    for (pkgCache::VerIterator ver = Pkg.VersionList(); ver.end() == false; ver++) {
       int priority = GetPriority(ver);
 
-        if (priority <= candPriority)
+        if (priority == 0 || priority <= candPriority)
            continue;
 
         // TODO: Maybe optimize to not compare versions
            continue;
 
         // TODO: Maybe optimize to not compare versions
@@ -376,8 +376,17 @@ APT_PURE signed short pkgPolicy::GetPriority(pkgCache::VerIterator const &Ver)
    int priority = INT_MIN;
    for (pkgCache::VerFileIterator file = Ver.FileList(); file.end() == false; file++)
    {
    int priority = INT_MIN;
    for (pkgCache::VerFileIterator file = Ver.FileList(); file.end() == false; file++)
    {
-        if (GetPriority(file.File()) > priority)
-           priority = GetPriority(file.File());
+      /* If this is the status file, and the current version is not the
+         version in the status file (ie it is not installed, or somesuch)
+         then it is not a candidate for installation, ever. This weeds
+         out bogus entries that may be due to config-file states, or
+         other. */
+      if (file.File().Flagged(pkgCache::Flag::NotSource) && Ver.ParentPkg().CurrentVer() != Ver) {
+        if (priority < 0)
+              priority = 0;
+      } else if (GetPriority(file.File()) > priority) {
+        priority = GetPriority(file.File());
+      }
    }
 
    return priority == INT_MIN ? 0 : priority;
    }
 
    return priority == INT_MIN ? 0 : priority;