On Tue, Jan 23, 2018 at 4:48 PM, Michał Górny <mgo...@gentoo.org> wrote:
> Always group all Prefix keywords after other types of keywords. This > not only ensures that fbsd sorts first but more importantly stabilizes > the LHS output between regular and -P variant -- that is, -P always adds > additional keywords at the end. > --- > pym/gentoolkit/eshowkw/keywords_header.py | 16 ++++++++++------ > 1 file changed, 10 insertions(+), 6 deletions(-) > > diff --git a/pym/gentoolkit/eshowkw/keywords_header.py > b/pym/gentoolkit/eshowkw/keywords_header.py > index 41b8ba4..1b64bfd 100644 > --- a/pym/gentoolkit/eshowkw/keywords_header.py > +++ b/pym/gentoolkit/eshowkw/keywords_header.py > @@ -142,12 +142,16 @@ class keywords_header: > break > > # sort by, in order (to match Bugzilla): > - # 1. arch, then ~arch > - # 2. profile stability > - # 3. short keywords, then long (prefix, fbsd) > - # 4. keyword name in reverse component order > - normal.sort(key=lambda kw: (kw in self.__TESTING_KW_ARCHS, > - levels.get(kw, 99), kw.count('-'), > list(reversed(kw.split('-'))))) > + # 1. non-prefix, then prefix (stable output between -P and > not) > + # 2. arch, then ~arch > + # 3. profile stability > + # 4. short keywords, then long (prefix, fbsd) > + # 5. keyword name in reverse component order > + normal.sort(key=lambda kw: (self.__isPrefix(kw), > + kw in self.__TESTING_KW_ARCHS, > + levels.get(kw, 99), > + kw.count('-'), > + list(reversed(kw.split('-'))))) > I'm a bit sad about this lambda because its ended up a bit long. What are your thoughts on splitting it out? return normal > > def __readAdditionalFields(self): > -- > 2.16.1 > > >