]> git.saurik.com Git - apt.git/commitdiff
* Install-Reason -> Auto-Installed in pkgstates
authorMichael Vogt <michael.vogt@ubuntu.com>
Thu, 30 Jun 2005 10:50:08 +0000 (10:50 +0000)
committerMichael Vogt <michael.vogt@ubuntu.com>
Thu, 30 Jun 2005 10:50:08 +0000 (10:50 +0000)
apt-pkg/depcache.cc

index 366687382121aad69d04f4de9e20da089d4db955..81c79d812388916b4ee068cf3123b6304e17534a 100644 (file)
@@ -125,12 +125,11 @@ bool pkgDepCache::readStateFile(OpProgress *Prog)
         // Silently ignore unknown packages and packages with no actual
         // version.
         if(!pkg.end() && !pkg.VersionList().end()) {
         // Silently ignore unknown packages and packages with no actual
         // version.
         if(!pkg.end() && !pkg.VersionList().end()) {
-           short reason = section.FindI("Install-Reason", 0);
+           short reason = section.FindI("Auto-Installed", 0);
            if(reason > 0)
               PkgState[pkg->ID].Flags  |= pkgCache::Flag::Auto;
            if(_config->FindB("Debug::pkgAutoRemove",false))
            if(reason > 0)
               PkgState[pkg->ID].Flags  |= pkgCache::Flag::Auto;
            if(_config->FindB("Debug::pkgAutoRemove",false))
-              std::cout << "Install-Reason for: " << pkgname 
-                        << " is " << reason << std::endl;
+              std::cout << "Auto-Installed : " << pkgname << std::endl;
            amt+=section.size();
            if(Prog != NULL)
               Prog->OverallProgress(amt, file_size, 1, 
            amt+=section.size();
            if(Prog != NULL)
               Prog->OverallProgress(amt, file_size, 1, 
@@ -165,7 +164,7 @@ bool pkgDepCache::writeStateFile(OpProgress *prog)
            std::clog << "AutoInstal: " << pkg.Name() << std::endl;
         ostr.str(string(""));
         ostr << "Package: " << pkg.Name() 
            std::clog << "AutoInstal: " << pkg.Name() << std::endl;
         ostr.str(string(""));
         ostr << "Package: " << pkg.Name() 
-             << "\nInstall-Reason: 1\n\n";
+             << "\nAuto-Installed: 1\n\n";
         StateFile.Write(ostr.str().c_str(), ostr.str().size());
       }
    }
         StateFile.Write(ostr.str().c_str(), ostr.str().size());
       }
    }