aboutsummaryrefslogtreecommitdiff
blob: 2af217122783fa20a3fd17fcff55c1db199f7209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# vim: set sw=4 sts=4 et :
# Copyright: 2008 Gentoo Foundation
# Author(s): Nirbheek Chauhan <nirbheek.chauhan@gmail.com>
# License: AGPL-3
#
# Immortal lh!
#

# Database initialization values

## User-related defaults
groups = ('dev', 'at', 'user',)

## Job-related defaults
providers = ('gentoo', 'funtoo',)
# No 'arm' in here because the dir structure is weird
# and it hasn't been updated in forever anyway.
# Use a custom stage url if you want to use arm
# 
# 'Mirror dir': (<archs that reside there>)
archs = {   'gentoo':   (('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',)),),
            'funtoo':   ('amd64', 'athlon-xp', 'core32', 'core64',
                         'i686', 'openvz', 'pentium4', 'x86', '~amd64',
                         '~x86'), }

stages = {  'gentoo':   ('stage1', 'stage2', 'stage3',),
            'funtoo':   ('stage1', 'stage2', 'stage3',), }

# Ask drobbins to have a 'latest' symlink.
releases = {'gentoo':   ('2007.0', '2008.0'),
            'funtoo':   ('latest',)}

mirrors = { 'gentoo':   {'servers': (('http://gentoo.osuosl.org/', 'releases/'),
                                    ('http://ftp.jaist.ac.jp/', 'pub/Linux/Gentoo/releases/'),),
                         'structure': '%(gen_arch)s/%(release)s/stages/%(stage)s-%(arch)s-%(release)s.tar.bz2',},
                            
            'funtoo':   {'servers': ('http://www.funtoo.org/', 'linux/'),
                         'structure': '%(arch)s/%(owner)s-%(arch)s-%(release)/%(stage)s-%(arch)s-%(release)s.tar.bz2'} }

#stage_types = ('', 'hardened', 'hardened+nomultilib')