diff --git a/schema.sql b/schema.sql index a2124dc..04e2797 100644 --- a/schema.sql +++ b/schema.sql @@ -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. diff --git a/util/deb.sh b/util/deb.sh index 9a2b007..06b2491 100755 --- a/util/deb.sh +++ b/util/deb.sh @@ -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() { diff --git a/www/index.pl b/www/index.pl index d7f7e67..5702695 100755 --- a/www/index.pl +++ b/www/index.pl @@ -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}" }, };