From: Zac Medico Date: Sun, 7 Oct 2007 22:24:39 +0000 (-0000) Subject: Cache IUSE for portdbapi.gvisible() calls. X-Git-Tag: v2.2_pre1~683 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9ca8fb0b5dd01436935cfc21bfd612455e5d4a20;p=portage.git Cache IUSE for portdbapi.gvisible() calls. svn path=/main/trunk/; revision=8000 --- diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index eeda30f83..14a50b126 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -117,7 +117,8 @@ class portdbapi(dbapi): self.auxdb[x] = self.auxdbmodule( self.depcachedir, x, filtered_auxdbkeys, gid=portage_gid) # Selectively cache metadata in order to optimize dep matching. - self._aux_cache_keys = set(["EAPI", "KEYWORDS", "LICENSE", "SLOT"]) + self._aux_cache_keys = set( + ["EAPI", "IUSE", "KEYWORDS", "LICENSE", "SLOT"]) self._aux_cache = {} self._broken_ebuilds = set()