From 33a9d38b3e4e73d4ba5c08d1f151e0b6156712c7 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 10 Feb 2010 00:13:16 +0000 Subject: Bug #303211 - Discard invalid SIZE metadata when using the old binhost protocol. svn path=/main/trunk/; revision=15333 --- pym/portage/dbapi/bintree.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index e817e3d03..e07f58a47 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -838,6 +838,17 @@ class binarytree(object): remote_metadata = self.remotepkgs[mypkg] for k, v in remote_metadata.items(): remote_metadata[k] = v.strip() + + # Eliminate metadata values with names that digestCheck + # uses, since they are not valid when using the old + # protocol. Typically this is needed for SIZE metadata + # which corresponds to the size of the unpacked files + # rather than the binpkg file size, triggering digest + # verification failures as reported in bug #303211. + remote_metadata.pop('SIZE', None) + for k in portage.checksum.hashfunc_map: + remote_metadata.pop(k, None) + self._remotepkgs[fullpkg] = remote_metadata #print " -- Injected" except SystemExit as e: -- cgit v1.2.3-1-g7c22