From: Zac Medico Date: Mon, 31 Dec 2007 09:54:35 +0000 (-0000) Subject: Fix config.setcpv() to properly call config.regenerate() in cases X-Git-Tag: v2.1.4~29 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e99034aa0e421d710f81f26e8c14bbe4fd0f527c;p=portage.git Fix config.setcpv() to properly call config.regenerate() in cases when USE needs to be regenerated due to FEATURES=test to USE=test mapping. (trunk r9126) svn path=/main/branches/2.1.2/; revision=9127 --- diff --git a/pym/portage.py b/pym/portage.py index 4df9b64b2..a90ae56f5 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1938,7 +1938,14 @@ class config: self.configdict["pkg"]["USE"] = self.puse[:] # this gets appended to USE if iuse != self.configdict["pkg"].get("IUSE",""): self.configdict["pkg"]["IUSE"] = iuse - if self._use_wildcards or self.get("EBUILD_PHASE"): + test_use_changed = False + if "test" in self.features: + test_use_changed = \ + ("test" in iuse.split()) != \ + ("test" in self.get("PORTAGE_USE","").split()) + if self.get("EBUILD_PHASE") or \ + self._use_wildcards or \ + test_use_changed: # Without this conditional, regenerate() would be called # *every* time. has_changed = True