projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
707e125
)
Show unevaluated atoms when displaying unsatisfied deps.
author
Zac Medico
<zmedico@gentoo.org>
Wed, 16 Jun 2010 17:58:51 +0000
(10:58 -0700)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 16 Jun 2010 17:58:51 +0000
(10:58 -0700)
bin/repoman
patch
|
blob
|
history
diff --git
a/bin/repoman
b/bin/repoman
index be1125a34df78ad2aa74c2ef38db36ec7452ab63..324ad2ea2f59715da72112360d8737137dab83e4 100755
(executable)
--- a/
bin/repoman
+++ b/
bin/repoman
@@
-1889,7
+1889,8
@@
for x in scanlist:
if atoms:
#we have some unsolvable deps
#remove ! deps, which always show up as unsatisfiable
- atoms = [str(atom) for atom in atoms if not atom.blocker]
+ atoms = [str(atom.unevaluated_atom) \
+ for atom in atoms if not atom.blocker]
#if we emptied out our list, continue:
if not atoms:
continue