summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2016-06-26 21:39:31 +0200
committerYorhel <git@yorhel.nl>2016-06-26 21:39:31 +0200
commit26aefaebcd6e3f184b9e744a72f26c5edd633155 (patch)
tree93cbd9c86f35a32bb74ad7f58d766c277688b10b
parent0c6964d0e35ade02912d323fc8ae09f63b9bb4a8 (diff)
Add Ubuntu Xenial
-rw-r--r--schema.sql3
-rwxr-xr-xutil/deb.sh7
2 files changed, 9 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index de6fc55..f198da6 100644
--- a/schema.sql
+++ b/schema.sql
@@ -150,7 +150,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(89, 'Ubuntu', '14.10', 'ubuntu-utopic', 20),
(90, 'Ubuntu', '15.04', 'ubuntu-vivid', 21),
(91, 'Debian', '8.0', 'debian-jessie', 12),
- (92, 'Ubuntu', '15.10', 'ubuntu-wily', 22);
+ (92, 'Ubuntu', '15.10', 'ubuntu-wily', 22),
+ (93, 'Ubuntu', '16.04', 'ubuntu-xenial', 23);
-- 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 7503d27..6d918fa 100755
--- a/util/deb.sh
+++ b/util/deb.sh
@@ -289,6 +289,12 @@ ubuntu_wily() {
syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-security" "main multiverse restricted universe"
}
+ubuntu_xenial() {
+ syncrepo 93 "http://nl.archive.ubuntu.com/ubuntu/" "xenial" "main multiverse restricted universe"
+ syncrepo 93 "http://nl.archive.ubuntu.com/ubuntu/" "xenial-updates" "main multiverse restricted universe"
+ syncrepo 93 "http://nl.archive.ubuntu.com/ubuntu/" "xenial-security" "main multiverse restricted universe"
+}
+
ubuntu_old() {
ubuntu_warty
ubuntu_hoary
@@ -316,6 +322,7 @@ ubuntu_active() {
ubuntu_precise # until 2017-04
ubuntu_trusty # until 2019-04
ubuntu_wily # until 2016-07
+ ubuntu_xenial # until 2021-04
}
ubuntu() {