From 5f713b628b4445b8c0e18e08e762b1ef301fdab1 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 21 Apr 2006 19:07:30 +0000 Subject: Fix `emerge -s` download size calculation for bug #130750. svn path=/main/trunk/; revision=3184 --- pym/portage_manifest.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/portage_manifest.py b/pym/portage_manifest.py index 1b7135c97..06f6ac6ed 100644 --- a/pym/portage_manifest.py +++ b/pym/portage_manifest.py @@ -486,7 +486,13 @@ class Manifest(object): def _getCpvDistfiles(self, cpv): """ Get a list of all DIST files associated to the given cpv """ return self.fetchlist_dict[cpv] - + + def getDistfilesSize(self, fetchlist): + total_bytes = 0 + for f in fetchlist: + total_bytes += int(self.fhashdict["DIST"][f]["size"]) + return total_bytes + def updateFileHashes(self, ftype, fname, checkExisting=True, ignoreMissing=True, reuseExisting=False): """ Regenerate hashes for the given file """ if checkExisting: -- cgit v1.2.3-1-g7c22