forked from fajran/vis-ubuntu-pkg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
45 lines (39 loc) · 1.02 KB
/
config.py
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
ARCHS = ['i386', 'amd64']
SECTIONS = ('main', 'universe', 'multiverse', 'restricted')
DISTS = [
'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', 'gutsy', 'hardy',
'intrepid', 'jaunty', 'karmic', 'lucid', 'maverick', 'natty', 'oneiric',
'precise', 'quantal', 'raring', 'saucy', 'trusty', 'utopic', 'vivid',
'wily', 'xenial', 'yakkety'
]
REPOS = {
'warty': 'old',
'hoary': 'old',
'breezy': 'old',
'dapper': 'old',
'edgy': 'old',
'feisty': 'old',
'gutsy': 'old',
'hardy': 'old',
'intrepid': 'old',
'jaunty': 'old',
'karmic': 'old',
'lucid': 'old',
'maverick': 'old',
'natty': 'old',
'oneiric': 'old',
'precise': 'current',
'quantal': 'old',
'raring': 'old',
'saucy': 'old',
'trusty': 'current',
'utopic': 'old',
'vivid': 'current',
'wily': 'current',
'xenial': 'current',
'yakkety': 'current',
}
BASE_URLS = {
'current': 'http://id.archive.ubuntu.com/ubuntu',
'old': 'http://old-releases.ubuntu.com/ubuntu'
}