diff --git a/schema.sql b/schema.sql index a3d4c84..0267f0e 100644 --- a/schema.sql +++ b/schema.sql @@ -150,7 +150,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES (88, 'Ubuntu', '14.04', 'ubuntu-trusty', 19), (89, 'Ubuntu', '14.10', 'ubuntu-utopic', 20), (90, 'Ubuntu', '15.04', 'ubuntu-vivid', 21), - (91, 'Debian', '8.0', 'debian-jessie', 12); + (91, 'Debian', '8.0', 'debian-jessie', 12), + (92, 'Ubuntu', '15.10', 'ubuntu-wily', 22); -- 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 44efe87..7503d27 100755 --- a/util/deb.sh +++ b/util/deb.sh @@ -283,6 +283,12 @@ ubuntu_vivid() { syncrepo 90 "http://nl.archive.ubuntu.com/ubuntu/" "vivid-security" "main multiverse restricted universe" } +ubuntu_wily() { + syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily" "main multiverse restricted universe" + syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-updates" "main multiverse restricted universe" + syncrepo 92 "http://nl.archive.ubuntu.com/ubuntu/" "wily-security" "main multiverse restricted universe" +} + ubuntu_old() { ubuntu_warty ubuntu_hoary @@ -302,13 +308,14 @@ ubuntu_old() { ubuntu_raring ubuntu_quantal ubuntu_saucy + ubuntu_utopic + ubuntu_vivid } ubuntu_active() { ubuntu_precise # until 2017-04 ubuntu_trusty # until 2019-04 - ubuntu_utopic # until 2015-07 - ubuntu_vivid # until 2016-01 + ubuntu_wily # until 2016-07 } ubuntu() { @@ -393,10 +400,10 @@ debian_old() { debian_sarge debian_etch debian_lenny + debian_squeeze } debian_active() { - debian_squeeze debian_wheezy debian_jessie }