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 B9F0C138350 for ; Tue, 10 Mar 2020 22:05:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7F79E084E; Tue, 10 Mar 2020 22:05:07 +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 8DD36E084E for ; Tue, 10 Mar 2020 22:05:07 +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 5BCB334F225 for ; Tue, 10 Mar 2020 22:05:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE567154 for ; Tue, 10 Mar 2020 22:05:03 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1583358745.1996134dee8de72911ddcebb55efdca395f7731f.mattst88@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: scripts/ X-VCS-Repository: proj/gnome X-VCS-Files: scripts/gen_archlist.py X-VCS-Directories: scripts/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 1996134dee8de72911ddcebb55efdca395f7731f X-VCS-Branch: master Date: Tue, 10 Mar 2020 22:05:03 +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: 2cd6759f-694f-43c6-82b9-eca2abb8437c X-Archives-Hash: f8d66bbc8089e4bb93ad90c1b85de46f commit: 1996134dee8de72911ddcebb55efdca395f7731f Author: Matt Turner gentoo org> AuthorDate: Wed Mar 4 21:51:02 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Mar 4 21:52:25 2020 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=1996134d scripts/gen_archlist.py: Drop alpha from stable arches Signed-off-by: Matt Turner gentoo.org> scripts/gen_archlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index 17fcd6f1..e2b2a621 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -37,7 +37,7 @@ logger = logging.getLogger('gen_archlist') ############# # GNOME_OVERLAY = PORTDB.getRepositoryPath('gnome') portage.portdb.porttrees = [portage.settings['PORTDIR']] -STABLE_ARCHES = ('alpha', 'amd64', 'arm', 'arm64', 'hppa', 'ia64', +STABLE_ARCHES = ('amd64', 'arm', 'arm64', 'hppa', 'ia64', 'ppc', 'ppc64', 's390', 'sparc', 'x86') UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~arm64', '~hppa', '~ia64', '~m68k', '~ppc', '~ppc64', '~s390', '~sh', '~sparc',