diff options
-rw-r--r-- | pym/_emerge/actions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index cd980231f..5bd789c1f 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -1028,7 +1028,8 @@ def calc_depclean(settings, trees, ldpath_mtimes, line in wrap(msg, 70)), level=logging.WARNING, noiselevel=-1) msg = [] - for pkg, consumers in consumer_map.iteritems(): + for pkg in sorted(consumer_map, key=cmp_sort_key(cmp_pkg_cpv)): + consumers = consumer_map[pkg] unique_consumers = set(chain(*consumers.values())) unique_consumers = sorted(consumer.mycpv \ for consumer in unique_consumers) |