From cb030fde91a04fcc6178ee32ada425dafe0615d9 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 25 Feb 2009 07:50:34 +0000 Subject: In mirror_cache(), normalize EAPI by mapping EAPI=0 to empty. svn path=/main/trunk/; revision=12706 --- pym/portage/cache/util.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pym') diff --git a/pym/portage/cache/util.py b/pym/portage/cache/util.py index 7d81f2d05..86f93440e 100644 --- a/pym/portage/cache/util.py +++ b/pym/portage/cache/util.py @@ -53,13 +53,14 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None, except cache_errors.CacheError: pass + for d in (entry, trg): + if d is not None and d.get('EAPI') in ('', '0'): + del d['EAPI'] + if trg and not write_it: """ We don't want to skip the write unless we're really sure that the existing cache is identical, so don't trust _mtime_ and _eclasses_ alone.""" - for d in (entry, trg): - if "EAPI" in d and d["EAPI"] in ("", "0"): - del d["EAPI"] for k in set(chain(entry, trg)).difference( ("_mtime_", "_eclasses_")): if trg.get(k, "") != entry.get(k, ""): -- cgit v1.2.3-1-g7c22