We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34dc732 commit 93debd3Copy full SHA for 93debd3
1 file changed
src/pkgcheck/checks/unstable_only.py
@@ -1,5 +1,6 @@
1
from collections import defaultdict
2
3
+from pkgcore.ebuild.misc import sort_keywords
4
from pkgcore.restrictions import packages, values
5
from snakeoil.strings import pluralism as _pl
6
@@ -61,4 +62,4 @@ def feed(self, pkgset):
61
62
# collapse reports by available versions
63
for pkgs in unstable_arches.keys():
64
versions = (x.fullver for x in pkgs)
- yield UnstableOnly(versions, unstable_arches[pkgs], pkg=pkgs[0])
65
+ yield UnstableOnly(versions, sort_keywords(unstable_arches[pkgs]), pkg=pkgs[0])
0 commit comments