]> git.deb.at Git - deb/packages.git/blob - templates/config/mirrors.tmpl
a222eb100ee23c28209e46e06e2317509977b975
[deb/packages.git] / templates / config / mirrors.tmpl
1 [%
2
3 # TODO: find a way to get the U.S. mirror list from a more authoritive
4 # location automatically. might not be overly smart to automatize it
5 # completely, since I hand pick sites that are up-to-date, fast, and
6 # have HTTP on a reasonably short URL
7 #   -- Joy
8
9 # hint:
10 # grep-dctrl -F Site,Alias -e '(udel|bigfoot|kernel|crosslink|internap|cerias|lcs.mit|progeny)' Mirrors.masterlist | timestamps/archive_mirror_check.py
11  
12 mirrors = {
13         us => {
14                 url => 'http://www.debian.org/',
15                 mirror_list => 'http://www.debian.org/distrib/archive',
16                 north_america => [
17                         "ftp.egr.msu.edu/debian-archive",
18                         "ftp3.nrc.ca/debian-archive",
19                 ],
20                 europa => [
21                         "archive.debian.org/debian",
22                         "ftp.de.debian.org/archive/debian",
23                         "ftp.ch.debian.org/debian-archive",
24                         "ftp.nl.debian.org/debian-archive",
25                         "debian.dynamica.it/debian-archive",
26                         "debian.org.ua/debian-archive",
27                         "ftp2.debian.org.ua/debian-archive",
28 #                       "ftp.irb.hr/debian-archive",
29                         "webb.ens-cachan.fr/ftp/debian-archive",
30                 ],
31                 asia => [
32                         "ftp.kr.debian.org/debian-archive",
33 #                       "ftp.twaren.net/Linux/Debian/debian-archive",
34                 ],
35         },
36         volatile => {
37                 url => 'http://www.debian.org/volatile/',
38                 title => g('volatile packages that need major changes during the life of a stable release'),
39                 europa => [
40                         "archive.debian.org/debian-volatile",
41                 ],
42         },
43         backports => {
44                 url => 'http://www.backports.org/',
45                 title => g('newer packages that have been adapted to stable releases of Debian'),
46                 europa => [
47                         "archive.debian.org/backports.org",
48                 ],
49         },
50 }
51
52 continents = {
53                 north_america => g('North America'),
54                 south_america => g('South America'),
55                 asia          => g('Asia'),
56                 oceania       => g('Oceania'),
57                 europa        => g('Europe'),
58                 africa        => g('Africa'),
59         }
60 %]