summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/manifest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py
index fc8afb4cf..470f732d6 100644
--- a/pym/portage/manifest.py
+++ b/pym/portage/manifest.py
@@ -205,6 +205,8 @@ class Manifest(object):
return myhashdict
def _createManifestEntries(self):
+ valid_hashes = set(portage.const.MANIFEST2_HASH_FUNCTIONS)
+ valid_hashes.add('size')
mytypes = list(self.fhashdict)
mytypes.sort()
for t in mytypes:
@@ -213,10 +215,8 @@ class Manifest(object):
for f in myfiles:
myentry = Manifest2Entry(
type=t, name=f, hashes=self.fhashdict[t][f].copy())
- myhashkeys = list(myentry.hashes)
- myhashkeys.sort()
- for h in myhashkeys:
- if h not in ["size"] + portage.const.MANIFEST2_HASH_FUNCTIONS:
+ for h in list(myentry.hashes):
+ if h not in valid_hashes:
del myentry.hashes[h]
yield myentry