summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/Blocker.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-12-13 03:55:07 +0000
committerZac Medico <zmedico@gentoo.org>2009-12-13 03:55:07 +0000
commit6bd5072abe7cc5ddb2b8990948bdc922040c077c (patch)
treeb6c1fdabf30fdb302026108481866c08c86987f8 /pym/_emerge/Blocker.py
parent2217fb855305dbf2ff875ea94f68c98eed1e02d9 (diff)
downloadportage-6bd5072abe7cc5ddb2b8990948bdc922040c077c.tar.gz
portage-6bd5072abe7cc5ddb2b8990948bdc922040c077c.tar.bz2
portage-6bd5072abe7cc5ddb2b8990948bdc922040c077c.zip
Inside depgraph._validate_blockers(), do not consider blockers in DEPEND of
installed packages, since DEPEND is supposed to be irrelevant for packages after they are built. (trunk r15056) svn path=/main/branches/2.1.7/; revision=15089
Diffstat (limited to 'pym/_emerge/Blocker.py')
-rw-r--r--pym/_emerge/Blocker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/Blocker.py b/pym/_emerge/Blocker.py
index 5e34e5249..1c1a6f3f4 100644
--- a/pym/_emerge/Blocker.py
+++ b/pym/_emerge/Blocker.py
@@ -13,7 +13,7 @@ except ImportError:
class Blocker(Task):
__hash__ = Task.__hash__
- __slots__ = ("root", "atom", "cp", "eapi", "satisfied")
+ __slots__ = ("root", "atom", "cp", "eapi", "priority", "satisfied")
def __init__(self, **kwargs):
Task.__init__(self, **kwargs)