From df8fe2b2465df7af4f1f7fadba999ae9a1235d10 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 14 Aug 2010 11:13:01 -0700 Subject: Pass $USE via IPC in order to ensure that we have the correct value for built/installed packages, since the config class doesn't currently provide a way to access built/installed $USE that would work in all possible scenarios. --- pym/portage/package/ebuild/_ipc/QueryCommand.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage/package/ebuild/_ipc/QueryCommand.py b/pym/portage/package/ebuild/_ipc/QueryCommand.py index 47095cb4c..ec52e400f 100644 --- a/pym/portage/package/ebuild/_ipc/QueryCommand.py +++ b/pym/portage/package/ebuild/_ipc/QueryCommand.py @@ -23,14 +23,20 @@ class QueryCommand(IpcCommand): """ @returns: tuple of (stdout, stderr, returncode) """ - cmd, root, atom = argv + + # Note that $USE is passed via IPC in order to ensure that + # we have the correct value for built/installed packages, + # since the config class doesn't currently provide a way + # to access built/installed $USE that would work in all + # possible scenarios. + cmd, root, atom, use = argv try: atom = Atom(atom) except InvalidAtom: return ('', 'invalid atom: %s\n' % atom, 2) - use = frozenset(self.settings['PORTAGE_USE'].split()) + use = frozenset(use.split()) atom = atom.evaluate_conditionals(use) db = self._db -- cgit v1.2.3-1-g7c22