aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-08-07 17:58:02 +0200
committerMichał Górny <mgorny@gentoo.org>2021-08-07 19:17:16 +0200
commit7a4bf042dcc322ead982b151e2a459b3455c6f29 (patch)
treefeecebeb8081dd0939e84d5832a648e9fc1acb9b /lib/_emerge/resolver/output_helpers.py
parenttox: Do not run pylint on pypy3 (diff)
downloadportage-7a4bf042dcc322ead982b151e2a459b3455c6f29.tar.gz
portage-7a4bf042dcc322ead982b151e2a459b3455c6f29.tar.bz2
portage-7a4bf042dcc322ead982b151e2a459b3455c6f29.zip
emerge: Sort USE flags in output using combined alnum sort
Sort USE flags in output by a combined sort that treats sequences of digits as numbers and sorts them numerically rather than lexically. As a result, python3_10 now sorts after python3_9. Ideally, we'd just respect the order from profiles/desc but this should work as an intermediate solution until we figure out how to implement that. Bug: https://bugs.gentoo.org/show_bug.cgi?id=788346 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'lib/_emerge/resolver/output_helpers.py')
-rw-r--r--lib/_emerge/resolver/output_helpers.py21
1 files changed, 19 insertions, 2 deletions
diff --git a/lib/_emerge/resolver/output_helpers.py b/lib/_emerge/resolver/output_helpers.py
index 30000e93f..f639f84b3 100644
--- a/lib/_emerge/resolver/output_helpers.py
+++ b/lib/_emerge/resolver/output_helpers.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2020 Gentoo Authors
+# Copyright 2010-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
"""Contains private support functions for the Display class
@@ -8,6 +8,8 @@ in output.py
__all__ = (
)
+import re
+
from portage import os
from portage._sets.base import InternalPackageSet
from portage.exception import PackageSetNotFound
@@ -214,6 +216,21 @@ class _DisplayConfig:
self.pkg = depgraph._pkg
+_alnum_sort_re = re.compile(r'(\d+)')
+
+
+def _alnum_sort_key(x):
+ def _convert_even_to_int(it):
+ it = iter(it)
+ try:
+ while True:
+ yield next(it)
+ yield int(next(it))
+ except StopIteration:
+ pass
+ return tuple(_convert_even_to_int(_alnum_sort_re.split(x)))
+
+
def _create_use_string(conf, name, cur_iuse, iuse_forced, cur_use,
old_iuse, old_use,
is_new, feature_flags, reinst_flags):
@@ -233,7 +250,7 @@ def _create_use_string(conf, name, cur_iuse, iuse_forced, cur_use,
removed_iuse = set(old_iuse).difference(cur_iuse)
any_iuse = cur_iuse.union(old_iuse)
any_iuse = list(any_iuse)
- any_iuse.sort()
+ any_iuse.sort(key=_alnum_sort_key)
for flag in any_iuse:
flag_str = None