Is the IUSE_IMPLICIT variable in the make.defaults also changed into 
IUSE_EFFECTIVE?

I'm sorry if this question was already discussed/answered somewhere else.

Michael

Il 04/02/2018 14:40, Michał Górny ha scritto:
Rename the iuse_implicit variable used in USE_EXPAND handling to
iuse_effective, since that is what is actually passed there. Correct
naming makes figuring out what the function does much easier.
---
  pym/portage/package/ebuild/config.py | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pym/portage/package/ebuild/config.py 
b/pym/portage/package/ebuild/config.py
index 5624e86d3..35cf4f614 100644
--- a/pym/portage/package/ebuild/config.py
+++ b/pym/portage/package/ebuild/config.py
@@ -1307,13 +1307,13 @@ class config(object):
                """
def __init__(self, settings, unfiltered_use,
-                       use, usemask, iuse_implicit,
+                       use, usemask, iuse_effective,
                        use_expand_split, use_expand_dict):
                        self._settings = settings
                        self._unfiltered_use = unfiltered_use
                        self._use = use
                        self._usemask = usemask
-                       self._iuse_implicit = iuse_implicit
+                       self._iuse_effective = iuse_effective
                        self._use_expand_split = use_expand_split
                        self._use_expand_dict = use_expand_dict
@@ -1331,7 +1331,7 @@ class config(object):
                        if has_wildcard:
                                var_split = [ x for x in var_split if x != "*" ]
                        has_iuse = set()
-                       for x in self._iuse_implicit:
+                       for x in self._iuse_effective:
                                if x[:prefix_len] == prefix:
                                        has_iuse.add(x[prefix_len:])
                        if has_wildcard:


Reply via email to