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 E44CC138350 for ; Sun, 26 Jan 2020 15:20:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33AF4E0886; Sun, 26 Jan 2020 15:20:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 879BAE0872 for ; Sun, 26 Jan 2020 15:20:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 31DAC34E321 for ; Sun, 26 Jan 2020 15:20:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2D067B for ; Sun, 26 Jan 2020 15:20:19 +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: <1580050772.e98fd5881b7248670cb9c8a4daff537551e1d55e.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: e98fd5881b7248670cb9c8a4daff537551e1d55e X-VCS-Branch: master Date: Sun, 26 Jan 2020 15:20:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7c099773-9996-4d4a-aa62-15a52df301d3 X-Archives-Hash: 4ffba1d1bbe7297cb1865031d9a54d84 commit: e98fd5881b7248670cb9c8a4daff537551e1d55e Author: Michał Górny gentoo org> AuthorDate: Sun Jan 26 14:59:20 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jan 26 14:59:32 2020 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=e98fd588 eshowkw: Add alpha to ~arch-only Signed-off-by: Michał Górny gentoo.org> 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 c17a777..f98f11a 100644 --- a/pym/gentoolkit/eshowkw/keywords_header.py +++ b/pym/gentoolkit/eshowkw/keywords_header.py @@ -81,7 +81,7 @@ def load_profile_data(portdir=None, repo='gentoo'): # TODO: support arches.desc once the GLEP is finalized # for now, we just hardcode ~mips + *-* (fbsd, prefix) for k, v in arch_status.items(): - if k in ('mips', 'riscv') or '-' in k: + if k in ('alpha', 'mips', 'riscv') or '-' in k: arch_status[k] = (v, '~arch') else: arch_status[k] = (v, 'arch')