summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2013-10-20 08:24:52 +0200
committerYorhel <git@yorhel.nl>2013-10-20 08:24:52 +0200
commit61d822a76bd0c14c074f1fe65dbd56cb64af224c (patch)
tree6c2dd8891fdb66ef73eec058f66244163f6f9161
parent000ffd33f6c590f1fcc9db52b01b64b451a078df (diff)
Added and indexed Ubuntu 13.10
-rw-r--r--schema.sql3
-rwxr-xr-xutil/deb.sh7
-rwxr-xr-xwww/index.pl1
3 files changed, 10 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 92e26d0..3bb977e 100644
--- a/schema.sql
+++ b/schema.sql
@@ -145,7 +145,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(83, 'Debian', '7.0', 'debian-wheezy', 11),
(84, 'FreeBSD', '8.4', 'freebsd-8.4', 51),
(85, 'FreeBSD', '9.1', 'freebsd-9.1', 53),
- (86, 'FreeBSD', '9.2', 'freebsd-9.2', 54);
+ (86, 'FreeBSD', '9.2', 'freebsd-9.2', 54),
+ (87, 'Ubuntu', '13.10', 'ubuntu-saucy', 18);
-- Removes any path components and compression extensions from the filename.
CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$
diff --git a/util/deb.sh b/util/deb.sh
index d60a909..5b60999 100755
--- a/util/deb.sh
+++ b/util/deb.sh
@@ -259,6 +259,12 @@ ubuntu_raring() {
syncrepo 82 "http://nl.archive.ubuntu.com/ubuntu/" "raring-security" "main multiverse restricted universe"
}
+ubuntu_saucy() {
+ syncrepo 87 "http://nl.archive.ubuntu.com/ubuntu/" "saucy" "main multiverse restricted universe"
+ syncrepo 87 "http://nl.archive.ubuntu.com/ubuntu/" "saucy-updates" "main multiverse restricted universe"
+ syncrepo 87 "http://nl.archive.ubuntu.com/ubuntu/" "saucy-security" "main multiverse restricted universe"
+}
+
ubuntu_old() {
ubuntu_warty
ubuntu_hoary
@@ -281,6 +287,7 @@ ubuntu_active() {
ubuntu_precise # until 2017-04
ubuntu_quantal # until 2014-04
ubuntu_raring # until 2014-01
+ ubuntu_saucy # until 2014-07
}
ubuntu() {
diff --git a/www/index.pl b/www/index.pl
index 2e9d0bf..3a43504 100755
--- a/www/index.pl
+++ b/www/index.pl
@@ -51,6 +51,7 @@ $TUWF::OBJ->{pkglinks} = {
'ubuntu-precise' => sub { "http://packages.ubuntu.com/precise/$_[0]{name}" },
'ubuntu-quantal' => sub { "http://packages.ubuntu.com/quantal/$_[0]{name}" },
'ubuntu-raring' => sub { "http://packages.ubuntu.com/raring/$_[0]{name}" },
+ 'ubuntu-saucy' => sub { "http://packages.ubuntu.com/saucy/$_[0]{name}" },
};