瀏覽代碼

show APT-Sources in apt show

Michael Vogt 12 年之前
父節點
當前提交
1179953a0b
共有 2 個文件被更改,包括 14 次插入7 次删除
  1. 0 4
      apt-private/private-output.h
  2. 14 3
      apt-private/private-show.cc

+ 0 - 4
apt-private/private-output.h

@@ -43,10 +43,6 @@ bool ShowEssential(std::ostream &out,CacheFile &Cache);
 
 
 void Stats(std::ostream &out, pkgDepCache &Dep);
 void Stats(std::ostream &out, pkgDepCache &Dep);
 
 
-// helpers to display single package data
-std::string
-GetArchiveSuite(pkgCacheFile &CacheFile, pkgCache::VerIterator ver);
-
 // prompting
 // prompting
 bool YnPrompt(bool Default=true);
 bool YnPrompt(bool Default=true);
 bool AnalPrompt(const char *Text);
 bool AnalPrompt(const char *Text);

+ 14 - 3
apt-private/private-show.cc

@@ -54,6 +54,15 @@ bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V,
    if (I.IsOk() == false)
    if (I.IsOk() == false)
       return _error->Error(_("Package file %s is out of sync."),I.FileName());
       return _error->Error(_("Package file %s is out of sync."),I.FileName());
 
 
+   // find matching sources.list metaindex
+   pkgSourceList *SrcList = CacheFile.GetSourceList();
+   pkgIndexFile *Index;
+   if (SrcList->FindIndex(I, Index) == false &&
+       _system->FindIndex(I, Index) == false)
+      return _error->Error("Can not find indexfile for Package %s (%s)", 
+                           V.ParentPkg().Name(), V.VerStr());
+   std::string source_index_file = Index->Describe(true);
+
    // Read the record
    // Read the record
    FileFd PkgF;
    FileFd PkgF;
    if (PkgF.Open(I.FileName(), FileFd::ReadOnly, FileFd::Extension) == false)
    if (PkgF.Open(I.FileName(), FileFd::ReadOnly, FileFd::Extension) == false)
@@ -83,15 +92,17 @@ bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V,
       manual_installed = !(state.Flags & pkgCache::Flag::Auto) ? "yes" : "no";
       manual_installed = !(state.Flags & pkgCache::Flag::Auto) ? "yes" : "no";
    else
    else
       manual_installed = 0;
       manual_installed = 0;
-   std::string suite = GetArchiveSuite(CacheFile, V);
    TFRewriteData RW[] = {
    TFRewriteData RW[] = {
+      // delete
       {"Conffiles",0},
       {"Conffiles",0},
       {"Description",0},
       {"Description",0},
       {"Description-md5",0},
       {"Description-md5",0},
+      // improve
       {"Installed-Size", installed_size.c_str(), 0},
       {"Installed-Size", installed_size.c_str(), 0},
       {"Size", package_size.c_str(), "Download-Size"},
       {"Size", package_size.c_str(), "Download-Size"},
-      {"Archive-Origin", suite.c_str(), 0},
-      {"Manual-Installed", manual_installed, 0},
+      // add
+      {"APT-Manual-Installed", manual_installed, 0},
+      {"APT-Sources", source_index_file.c_str(), 0},
       {}
       {}
    };
    };