Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/
Date: Wed, 16 Dec 2015 17:09:34
Message-Id: 1450285636.cb4ae2e2c9de062dc2085c7a7ce69f72cd2fb06f.zmedico@gentoo
1 commit: cb4ae2e2c9de062dc2085c7a7ce69f72cd2fb06f
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 15 20:42:22 2015 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 16 17:07:16 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=cb4ae2e2
7
8 depgraph._resolve: consider unresolved @system atoms fatal (bug 568354)
9
10 Since @system atoms are presumably chosen by someone who knows what
11 they are doing (usually a gentoo developer), it makes sense to consider
12 resolution failures for these atoms as fatal errors.
13
14 X-Gentoo-Bug: 568354
15 X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=568354
16 Acked-by: Alexander Berntsen <bernalex <AT> gentoo.org>
17
18 pym/_emerge/depgraph.py | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
22 index fd2c771..d971749 100644
23 --- a/pym/_emerge/depgraph.py
24 +++ b/pym/_emerge/depgraph.py
25 @@ -4015,7 +4015,7 @@ class depgraph(object):
26 continue
27
28 if not (isinstance(arg, SetArg) and \
29 - arg.name in ("selected", "system", "world")):
30 + arg.name in ("selected", "world")):
31 self._dynamic_config._unsatisfied_deps_for_display.append(
32 ((myroot, atom), {"myparent" : arg}))
33 return 0, myfavorites