commit:     cb4ae2e2c9de062dc2085c7a7ce69f72cd2fb06f
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 20:42:22 2015 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 17:07:16 2015 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=cb4ae2e2

depgraph._resolve: consider unresolved @system atoms fatal (bug 568354)

Since @system atoms are presumably chosen by someone who knows what
they are doing (usually a gentoo developer), it makes sense to consider
resolution failures for these atoms as fatal errors.

X-Gentoo-Bug: 568354
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=568354
Acked-by: Alexander Berntsen <bernalex <AT> gentoo.org>

 pym/_emerge/depgraph.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index fd2c771..d971749 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -4015,7 +4015,7 @@ class depgraph(object):
                                                        continue
 
                                                if not (isinstance(arg, SetArg) 
and \
-                                                       arg.name in 
("selected", "system", "world")):
+                                                       arg.name in 
("selected", "world")):
                                                        
self._dynamic_config._unsatisfied_deps_for_display.append(
                                                                ((myroot, 
atom), {"myparent" : arg}))
                                                        return 0, myfavorites

Reply via email to