From 31323f42938984ac32077aa8839d687d72ba1e97 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sun, 20 May 2012 18:29:01 +0000 Subject: Change definition of exotic arches, and add cygwin prefix target. --- etc/const_data.py | 4 ++-- web/templates/faq.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/const_data.py b/etc/const_data.py index 5684418..f3213da 100644 --- a/etc/const_data.py +++ b/etc/const_data.py @@ -7,11 +7,11 @@ class ConstData(object): arches = {} # 'all': None, 'fbsd': None, 'linux': None, 'exotic': None, 'prefix': None, 'common': None } # This should match /usr/portage/profiles/arch.list arches['fbsd'] = frozenset([(arch+'-fbsd') for arch in ['amd64','sparc','x86']]) - arches['prefix'] = frozenset([ 'ppc-aix', 'x86-freebsd', 'x64-freebsd', 'ia64-hpux', 'hppa-hpux', 'x86-interix', 'mips-irix', 'amd64-linux', 'arm-linux', 'ia64-linux', 'x86-linux', 'ppc-macos', 'x86-macos', 'x64-macos', 'm68k-mint', 'x86-netbsd', 'ppc-openbsd', 'x86-openbsd', 'x64-openbsd', 'sparc-solaris', 'sparc64-solaris', 'x64-solaris', 'x86-solaris', 'x86-winnt']) + arches['prefix'] = frozenset([ 'ppc-aix', 'x86-freebsd', 'x64-freebsd', 'ia64-hpux', 'hppa-hpux', 'x86-interix', 'mips-irix', 'amd64-linux', 'arm-linux', 'ia64-linux', 'x86-linux', 'ppc-macos', 'x86-macos', 'x64-macos', 'm68k-mint', 'x86-netbsd', 'ppc-openbsd', 'x86-openbsd', 'x64-openbsd', 'sparc-solaris', 'sparc64-solaris', 'x64-solaris', 'x86-solaris', 'x86-winnt', 'x86-cygwin']) arches['linux'] = frozenset(['alpha', 'amd64', 'arm', 'hppa', 'ia64', 'm68k', 'mips', 'ppc', 'ppc64', 's390', 'sh', 'sparc', 'x86']) arches['all'] = arches['linux'].union(arches['fbsd']).union(arches['prefix']) - arches['exotic'] = frozenset(['arm','mips','m68k','s390','sh']) + arches['exotic'] = frozenset(['mips','m68k','s390','sh']) arches['common'] = arches['linux'].difference(arches['exotic']) # vim:ts=4 et ft=python: diff --git a/web/templates/faq.html b/web/templates/faq.html index 60e589c..7293f83 100644 --- a/web/templates/faq.html +++ b/web/templates/faq.html @@ -156,8 +156,8 @@
Due to page width constraints, we have broken down the arch display as follows:
- Common: alpha, amd64, hppa, ia64, ppc, ppc64, sparc, x86
- Exotic: arm, mips, m68k, s390, sh, x86-fbsd, sparc-fbsd, ppc-macos
+ Common: alpha, amd64, arm, hppa, ia64, ppc, ppc64, sparc, x86
+ Exotic: mips, m68k, s390, sh, (all of prefix), (all of fbsd)
All: Both sets of arches
If you want to switch between these lists easily, look for the little C-E-A to the right of the 'Arches' legend. -- cgit v1.2.3-65-gdbad