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 A557A138330 for ; Wed, 10 Jan 2018 03:25:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FEE4E0A9F; Wed, 10 Jan 2018 03:25:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 64544E0A9F for ; Wed, 10 Jan 2018 03:25:27 +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 DF68D335C0A for ; Wed, 10 Jan 2018 03:25:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D28B126 for ; Wed, 10 Jan 2018 03:25:22 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1515554699.db02b518fb0b9a0571578d8b4cb16efb5c7258d4.leio@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: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: db02b518fb0b9a0571578d8b4cb16efb5c7258d4 X-VCS-Branch: master Date: Wed, 10 Jan 2018 03:25:22 +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: 45114279-240a-4e40-b0b1-70ab1b51676a X-Archives-Hash: ccab7085d94c5aaf7360995f488626d9 commit: db02b518fb0b9a0571578d8b4cb16efb5c7258d4 Author: Mart Raudsepp gentoo org> AuthorDate: Wed Jan 10 03:24:59 2018 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Wed Jan 10 03:24:59 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=db02b518 scripts/gen_archlist.py: Add arm64 scripts/gen_archlist.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index a9fdb87d..2d713180 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -37,11 +37,11 @@ logger = logging.getLogger('gen_archlist') ############# # GNOME_OVERLAY = PORTDB.getRepositoryPath('gnome') portage.portdb.porttrees = [portage.settings['PORTDIR']] -STABLE_ARCHES = ('alpha', 'amd64', 'arm', 'hppa', 'ia64', 'ppc', 'ppc64', - 'sparc', 'x86') -UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~hppa', '~ia64', '~m68k', - '~ppc', '~ppc64', '~s390', '~sh', '~sparc', '~x86', - '~x86-fbsd') +STABLE_ARCHES = ('alpha', 'amd64', 'arm', 'arm64', 'hppa', 'ia64', + 'ppc', 'ppc64', 'sparc', 'x86') +UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~arm64', '~hppa', '~ia64', + '~m68k', '~ppc', '~ppc64', '~s390', '~sh', '~sparc', + '~x86', '~x86-fbsd') ALL_ARCHES = STABLE_ARCHES + UNSTABLE_ARCHES SYSTEM_PACKAGES = []