Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: scripts/
Date: Wed, 10 Jan 2018 03:25:29
Message-Id: 1515554699.db02b518fb0b9a0571578d8b4cb16efb5c7258d4.leio@gentoo
1 commit: db02b518fb0b9a0571578d8b4cb16efb5c7258d4
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 10 03:24:59 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 10 03:24:59 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=db02b518
7
8 scripts/gen_archlist.py: Add arm64
9
10 scripts/gen_archlist.py | 10 +++++-----
11 1 file changed, 5 insertions(+), 5 deletions(-)
12
13 diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py
14 index a9fdb87d..2d713180 100755
15 --- a/scripts/gen_archlist.py
16 +++ b/scripts/gen_archlist.py
17 @@ -37,11 +37,11 @@ logger = logging.getLogger('gen_archlist')
18 #############
19 # GNOME_OVERLAY = PORTDB.getRepositoryPath('gnome')
20 portage.portdb.porttrees = [portage.settings['PORTDIR']]
21 -STABLE_ARCHES = ('alpha', 'amd64', 'arm', 'hppa', 'ia64', 'ppc', 'ppc64',
22 - 'sparc', 'x86')
23 -UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~hppa', '~ia64', '~m68k',
24 - '~ppc', '~ppc64', '~s390', '~sh', '~sparc', '~x86',
25 - '~x86-fbsd')
26 +STABLE_ARCHES = ('alpha', 'amd64', 'arm', 'arm64', 'hppa', 'ia64',
27 + 'ppc', 'ppc64', 'sparc', 'x86')
28 +UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~arm64', '~hppa', '~ia64',
29 + '~m68k', '~ppc', '~ppc64', '~s390', '~sh', '~sparc',
30 + '~x86', '~x86-fbsd')
31 ALL_ARCHES = STABLE_ARCHES + UNSTABLE_ARCHES
32 SYSTEM_PACKAGES = []