From patchwork Wed Apr 25 12:44:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/2, kteam-tools] ktl: Added new entries for development version 12.10 Quantal Quetzal. From: Luis Henriques X-Patchwork-Id: 154905 Message-Id: <1335357856-30468-3-git-send-email-luis.henriques@canonical.com> To: kernel-team@lists.ubuntu.com Date: Wed, 25 Apr 2012 13:44:16 +0100 Signed-off-by: Luis Henriques --- ktl/ubuntu.py | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/ktl/ubuntu.py b/ktl/ubuntu.py index 2d09c28..fff12f7 100644 --- a/ktl/ubuntu.py +++ b/ktl/ubuntu.py @@ -20,9 +20,35 @@ class UbuntuError(Exception): class Ubuntu: db = { - '12.04' : + '12.10' : { 'development' : True, # This is the version that is currently under development + 'series_version' : '12.10', + 'kernel' : '3.4.0', + 'name' : 'quantal', + 'supported' : False, + # adjust packages when this goes live + 'packages' : + [ + 'linux', + 'linux-meta', + 'linux-ti-omap4', + 'linux-meta-ti-omap4' + ], + 'dependent-packages' : + { + 'linux' : { 'meta' : 'linux-meta' }, + 'linux-ti-omap4' : { 'meta' : 'linux-meta-ti-omap4' } + }, + 'derivative-packages' : + { + 'linux' : [ 'linux-ti-omap4' ] + }, + 'sha1' : '', + 'md5' : '' + }, + '12.04' : + { 'series_version' : '12.04', 'kernel' : '3.2.0', 'name' : 'precise', @@ -294,6 +320,7 @@ class Ubuntu: } index_by_kernel_version = { + '3.4.0' : db['12.10'], '3.2.0' : db['12.04'], '3.0.0' : db['11.10'], '2.6.38' : db['11.04'], @@ -309,6 +336,7 @@ class Ubuntu: } index_by_series_name = { + 'quantal' : db['12.10'], 'precise' : db['12.04'], 'oneiric' : db['11.10'], 'natty' : db['11.04'],