]> git.saurik.com Git - apt.git/commitdiff
* merged with mainline
authorMichael Vogt <michael.vogt@ubuntu.com>
Wed, 26 Jul 2006 21:29:20 +0000 (23:29 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Wed, 26 Jul 2006 21:29:20 +0000 (23:29 +0200)
1  2 
apt-pkg/depcache.cc

diff --combined apt-pkg/depcache.cc
index 589fc2f7d2e08192f4a0a4bc028c6f1560c1eb40,58d1d25e54ed7c2b633f39d69dee14010773589f..8560ce4fda120cbf9b388c440193dd961f492a49
@@@ -17,6 -17,7 +17,6 @@@
  #include <apt-pkg/sptr.h>
  #include <apt-pkg/algorithms.h>
  #include <apt-pkg/configuration.h>
 -
  #include <apti18n.h>    
                                                                        /*}}}*/
  
@@@ -609,8 -610,7 +609,8 @@@ void pkgDepCache::MarkInstall(PkgIterat
        installed */
     StateCache &P = PkgState[Pkg->ID];
     P.iFlags &= ~AutoKept;
 -   if (P.InstBroken() == false && (P.Mode == ModeInstall ||
 +   if ((P.InstPolicyBroken() == false && P.InstBroken() == false) && 
 +       (P.Mode == ModeInstall ||
        P.CandidateVer == (Version *)Pkg.CurrentVer()))
     {
        if (P.CandidateVer == (Version *)Pkg.CurrentVer() && P.InstallVer == 0)
     // See if there is even any possible instalation candidate
     if (P.CandidateVer == 0)
        return;
 -   
     // We dont even try to install virtual packages..
     if (Pkg->VersionList == 0)
        return;
 -   
     /* Target the candidate version and remove the autoflag. We reset the
        autoflag below if this was called recursively. Otherwise the user
        should have the ability to de-auto a package by changing its state */
         
         if (InstPkg.end() == false)
         {
+           if(_config->FindB("Debug::pkgDepCache::AutoInstall",false) == true)
+              std::clog << "Installing " << InstPkg.Name() 
+                        << " as dep of " << Pkg.Name() 
+                        << std::endl;
            MarkInstall(InstPkg,true,Depth + 1);
  
            // Set the autoflag, after MarkInstall because MarkInstall unsets it
@@@ -863,13 -869,6 +867,13 @@@ pkgCache::VerIterator pkgDepCache::Poli
  /* */
  bool pkgDepCache::Policy::IsImportantDep(DepIterator Dep)
  {
 -   return Dep.IsCritical();
 +   if(Dep.IsCritical())
 +      return true;
 +   else if(Dep->Type == pkgCache::Dep::Recommends)
 +      return  _config->FindB("APT::Install-Recommends", false);
 +   else if(Dep->Type == pkgCache::Dep::Suggests)
 +     return _config->FindB("APT::Install-Suggests", false);
 +
 +   return false;
  }
                                                                        /*}}}*/