diff options
Diffstat (limited to 'master/autotua/process/const.py')
-rw-r--r-- | master/autotua/process/const.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/master/autotua/process/const.py b/master/autotua/process/const.py index d88e2a0..149e254 100644 --- a/master/autotua/process/const.py +++ b/master/autotua/process/const.py @@ -11,16 +11,16 @@ # Use a custom stage url if you want to use arm # # 'Mirror dir': (<archs that reside there>) -ARCHS = { 'x86': ('i686', 'x86',), - 'amd64': ('amd64',), - 'ppc': ('970-32ul', '970-64ul', 'g4', 'power5', 'ppc', 'ppc64',), - 'sparc': ('sparc64',) - 'alpha': ('alpha',), - 'ia64': ('ia64',), - 'hppa': ('hppa1.1', 'hppa2.0',), - 'mips': ('cobalt', 'mips3', 'mips4', 'n32',), - 'sh': ('sh4',), - 's390': ('s390', 's390x',) } +ARCHS = { 'x86': ('i686', 'x86',), + 'amd64': ('amd64',), + 'ppc': ('970-32ul', '970-64ul', 'g4', 'power5', 'ppc', 'ppc64',), + 'sparc': ('sparc64',), + 'alpha': ('alpha',), + 'ia64': ('ia64',), + 'hppa': ('hppa1.1', 'hppa2.0',), + 'mips': ('cobalt', 'mips3', 'mips4', 'n32',), + 'sh': ('sh4',), + 's390': ('s390', 's390x',) } # How do we get this list? Keep updating it regularly? # Do we associate mirrors with the slave's geo location? @@ -28,7 +28,7 @@ MIRRORS = { 'gentoo': ('http://gentoo.osuosl.org',) } # Example: # http://gentoo.osuosl.org/releases/hppa/2008.0/stages/stage3-hppa2.0-2008.0.tar.bz2 STAGES = ('stage1', 'stage2', 'stage3', 'stage4',) -STAGE_URI = '%(mirror)/releases/%(gen_arch)s/%(release)s/stages/%(stage)s-%(arch)s-%(release)s.tar.bz2' +STAGE_URI = '%(mirror)s/releases/%(gen_arch)s/%(release)s/stages/%(stage)s-%(arch)s-%(release)s.tar.bz2' #stage_types = ('', 'hardened', 'hardened+nomultilib') VERRORS = { 'invalid_stage': 'Invalid stage: %s', @@ -36,5 +36,5 @@ VERRORS = { 'invalid_stage': 'Invalid stage: %s', 'invalid_type': 'Invalid type: %s', 'invalid_release': 'Invalid release: %s' } -for arch in ARCHS.values()[:]: - ARCHS['all'] = ARCHS['all'].__add__(arch) +#for arch in ARCHS.values()[:]: +# ARCHS['all'] = ARCHS['all'].__add__(arch) |