From 26aefaebcd6e3f184b9e744a72f26c5edd633155 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Sun, 26 Jun 2016 21:39:31 +0200 Subject: [PATCH] Add Ubuntu Xenial --- schema.sql | 3 ++- util/deb.sh | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) 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() {