summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2014-05-26 09:32:27 +0200
committerYorhel <git@yorhel.nl>2014-05-26 09:32:27 +0200
commit977f6216bd9a91182c6922b83bc033ca6c901d72 (patch)
tree7448a6a921bc7b17a011a52990dee2044d2429ce
parent61d822a76bd0c14c074f1fe65dbd56cb64af224c (diff)
Added and indexed Ubuntu Trusty
Somewhat late. I still need to index the recent FreeBSD releases, too...
-rw-r--r--schema.sql3
-rwxr-xr-xutil/deb.sh11
2 files changed, 11 insertions, 3 deletions
diff --git a/schema.sql b/schema.sql
index 3bb977e..6ff28c6 100644
--- a/schema.sql
+++ b/schema.sql
@@ -146,7 +146,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(84, 'FreeBSD', '8.4', 'freebsd-8.4', 51),
(85, 'FreeBSD', '9.1', 'freebsd-9.1', 53),
(86, 'FreeBSD', '9.2', 'freebsd-9.2', 54),
- (87, 'Ubuntu', '13.10', 'ubuntu-saucy', 18);
+ (87, 'Ubuntu', '13.10', 'ubuntu-saucy', 18),
+ (88, 'Ubuntu', '14.04', 'ubuntu-trusty', 19);
-- 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 5b60999..6976f75 100755
--- a/util/deb.sh
+++ b/util/deb.sh
@@ -265,6 +265,12 @@ ubuntu_saucy() {
syncrepo 87 "http://nl.archive.ubuntu.com/ubuntu/" "saucy-security" "main multiverse restricted universe"
}
+ubuntu_trusty() {
+ syncrepo 88 "http://nl.archive.ubuntu.com/ubuntu/" "trusty" "main multiverse restricted universe"
+ syncrepo 88 "http://nl.archive.ubuntu.com/ubuntu/" "trusty-updates" "main multiverse restricted universe"
+ syncrepo 88 "http://nl.archive.ubuntu.com/ubuntu/" "trusty-security" "main multiverse restricted universe"
+}
+
ubuntu_old() {
ubuntu_warty
ubuntu_hoary
@@ -280,14 +286,15 @@ ubuntu_old() {
ubuntu_natty
ubuntu_hardy
ubuntu_oneiric
+ ubuntu_raring
+ ubuntu_quantal
}
ubuntu_active() {
ubuntu_lucid # until 2015-04
ubuntu_precise # until 2017-04
- ubuntu_quantal # until 2014-04
- ubuntu_raring # until 2014-01
ubuntu_saucy # until 2014-07
+ ubuntu_trusty # until 2019-04
}
ubuntu() {