From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 81B71138331 for ; Fri, 26 Jan 2018 23:25:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B96B1E08F0; Fri, 26 Jan 2018 23:25:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92F38E08F0 for ; Fri, 26 Jan 2018 23:25:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D7EEA335C3E for ; Fri, 26 Jan 2018 23:25:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 601491D3 for ; Fri, 26 Jan 2018 23:25:41 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1516978250.9dce326531f94f2f34865efce6eb7f0f5060d016.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/eshowkw/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/eshowkw/keywords_header.py X-VCS-Directories: pym/gentoolkit/eshowkw/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9dce326531f94f2f34865efce6eb7f0f5060d016 X-VCS-Branch: master Date: Fri, 26 Jan 2018 23:25:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1712e23a-6e7f-4cd5-a0ab-5ca69dc7a40e X-Archives-Hash: c91e15bee192ee9ca30c19826d20e27a commit: 9dce326531f94f2f34865efce6eb7f0f5060d016 Author: Michał Górny gentoo org> AuthorDate: Tue Jan 23 12:19:52 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 26 14:50:50 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=9dce3265 eshowkw: Group stable and dev arches together (to match Bugzilla) Since dev profile status implies working towards stable status, and we are currently working on improving the status of dev arches (in particular preventing new depgraph breakages from being committed), we have switched Bugzilla to display both statuses alongside. Update eshowkw to use the same output ordering. pym/gentoolkit/eshowkw/keywords_header.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/eshowkw/keywords_header.py b/pym/gentoolkit/eshowkw/keywords_header.py index a4934bc..1a1a422 100644 --- a/pym/gentoolkit/eshowkw/keywords_header.py +++ b/pym/gentoolkit/eshowkw/keywords_header.py @@ -120,7 +120,7 @@ class keywords_header: longer = [k for k in keywords if self.__isPrefix(k)] normal.extend(longer) - lists = self.__IMPARCHS, self.__DEV_ARCHS, self.__EXP_ARCHS + lists = (self.__IMPARCHS + self.__DEV_ARCHS), self.__EXP_ARCHS levels = {} for kw in normal: for level, ls in enumerate(lists):