Added and indexed Ubuntu 12.10

This commit is contained in:
Yorhel 2012-10-18 16:57:30 +02:00
parent 25920323c4
commit f240d6117a
3 changed files with 10 additions and 1 deletions

View file

@ -139,7 +139,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(77, 'FreeBSD', '8.1', 'freebsd-8.1', 48),
(78, 'FreeBSD', '8.2', 'freebsd-8.2', 49),
(79, 'FreeBSD', '8.3', 'freebsd-8.3', 50),
(80, 'FreeBSD', '9.0', 'freebsd-9.0', 51);
(80, 'FreeBSD', '9.0', 'freebsd-9.0', 51),
(81, 'Ubuntu', '12.10', 'ubuntu-quantal', 16);
-- Removes any path components and compression extensions from the filename.

View file

@ -247,6 +247,12 @@ ubuntu_precise() {
syncrepo 17 "http://nl.archive.ubuntu.com/ubuntu/" "precise-security" "main multiverse restricted universe"
}
ubuntu_quantal() {
syncrepo 81 "http://nl.archive.ubuntu.com/ubuntu/" "quantal" "main multiverse restricted universe"
syncrepo 81 "http://nl.archive.ubuntu.com/ubuntu/" "quantal-updates" "main multiverse restricted universe"
syncrepo 81 "http://nl.archive.ubuntu.com/ubuntu/" "quantal-security" "main multiverse restricted universe"
}
ubuntu_old() {
ubuntu_warty
ubuntu_hoary
@ -267,6 +273,7 @@ ubuntu_active() {
ubuntu_natty # until 2012-10
ubuntu_oneiric # until 2013-04
ubuntu_precise # until 2017-04
ubuntu_quantal # until 2014-04
}
ubuntu() {

View file

@ -51,6 +51,7 @@ $TUWF::OBJ->{pkglinks} = {
'ubuntu-natty' => sub { "http://packages.ubuntu.com/natty/$_[0]{name}" },
'ubuntu-oneiric' => sub { "http://packages.ubuntu.com/oneiric/$_[0]{name}" },
'ubuntu-precise' => sub { "http://packages.ubuntu.com/precise/$_[0]{name}" },
'ubuntu-quantal' => sub { "http://packages.ubuntu.com/quantal/$_[0]{name}" },
};