chiark / gitweb /
Makefile: Add `help' summary.
[distorted-chroot] / etc / aptsrc.conf
1 ### -*- mode: conf; mdw-conf-quote-normal: ?' -*-
2 ###
3 ### APT package sources for Debian and Ubuntu.
4
5 ###--------------------------------------------------------------------------
6 ### Common definitions.
7
8 default
9         debmirror = http://deb.debian.org
10         ubuntumirror = http://gb.archive.ubuntu.com
11
12 ###--------------------------------------------------------------------------
13 ### Basic Debian stuff.
14
15 distribution debian
16         banner = Debian GNU/Linux.
17         uri[archive] = http://archive.debian.org/debian/
18         uri[base] = %debmirror/debian/
19         uri[updates] = %debmirror/debian/
20         uri[backports] = %debmirror/debian/
21         uri[archive-security] = http://archive.debian.org/debian-security/
22         uri[security-mirror] = %debmirror/debian-security/
23         uri[security-upstream] = http://security.debian.org/debian-security/
24         uri[nsecurity-mirror] = %debmirror/debian-security/
25         uri[nsecurity-upstream] = http://security.debian.org/debian-security/
26         release[updates] = %RELEASE-updates
27         release[archive-security] = %RELEASE/updates
28         release[security-*] = %RELEASE/updates
29         release[nsecurity-*] = %RELEASE-security
30         releases[archive] = stretch
31         releases[base] = oldstable stable testing unstable buster bullseye bookworm sid
32         releases[updates] = oldstable stable testing buster bullseye bookworm
33         releases[archive-security] = stretch
34         releases[security-*] = oldstable stable testing buster
35         releases[nsecurity-*] = bullseye bookworm
36         releases[backports] = *-backports
37         components = main non-free contrib
38         components[archive-security] = main
39         components[security-*] = main
40         components[backports] = main
41
42 ###--------------------------------------------------------------------------
43 ### Basic Ubuntu stuff.
44
45 distribution ubuntu
46         banner = Ubuntu Linux.
47         uri[base] = %ubuntumirror/ubuntu/
48         uri[updates] = %ubuntumirror/ubuntu/
49         uri[partner] = http://archive.canonical.com/ubuntu/
50         uri[security] = http://security.ubuntu.com/ubuntu/
51         release = %RELEASE
52         release[updates] = %RELEASE-updates
53         release[security] = %RELEASE-security
54         components = main restricted universe multiverse
55         components[partner] = partner
56
57 distribution medibuntu
58         banner = Ubuntu multimedia packages.
59         uri = http://packages.medibuntu.org/
60         components = free non-free
61
62 ###----- That's all, folks --------------------------------------------------