Do not count sizes of to be configured packages
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:33 +0000 (16:53 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:33 +0000 (16:53 +0000)
Author: jgg
Date: 1999-04-16 21:46:13 GMT
Do not count sizes of to be configured packages

apt-pkg/depcache.cc
apt-pkg/makefile
apt-pkg/templates.cc [deleted file]

index 1529eb3..7d1ff05 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: depcache.cc,v 1.16 1999/04/12 04:21:20 jgg Exp $
+// $Id: depcache.cc,v 1.17 1999/04/16 21:46:13 jgg Exp $
 /* ######################################################################
 
    Dependency Cache - Caches Dependency information.
@@ -205,10 +205,7 @@ void pkgDepCache::AddSizes(const PkgIterator &Pkg,long Mult)
    
    if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure && 
        P.Keep() == true)
-   {
-      iUsrSize += Mult*P.InstVerIter(*this)->InstalledSize;
       return;
-   }
    
    // Compute the size data
    if (P.NewInstall() == true)
index 0564ce1..14ed1de 100644 (file)
@@ -24,7 +24,7 @@ SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
 SOURCE+= pkgcache.cc version.cc fileutl.cc pkgcachegen.cc depcache.cc \
          orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
         pkgrecords.cc algorithms.cc acquire.cc acquire-item.cc \
-        acquire-worker.cc acquire-method.cc init.cc clean.cc templates.cc \
+        acquire-worker.cc acquire-method.cc init.cc clean.cc \
         srcrecords.cc
 
 # Source code for the debian specific components
diff --git a/apt-pkg/templates.cc b/apt-pkg/templates.cc
deleted file mode 100644 (file)
index 1e7d202..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-/* All template instances are explicly declared here */
-
-#include <apt-pkg/sourcelist.h>
-
-template vector<pkgSourceList::Item>;