From patchwork Wed Apr 25 12:44:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Henriques X-Patchwork-Id: 154905 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id C2723B6FAA for ; Wed, 25 Apr 2012 22:44:32 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1SN1a2-0001Td-Cf; Wed, 25 Apr 2012 12:44:22 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1SN1Zz-0001Sm-EZ for kernel-team@lists.ubuntu.com; Wed, 25 Apr 2012 12:44:19 +0000 Received: from 5e0d6bec.bb.sky.com ([94.13.107.236] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1SN1Zz-0003xQ-90 for kernel-team@lists.ubuntu.com; Wed, 25 Apr 2012 12:44:19 +0000 From: Luis Henriques To: kernel-team@lists.ubuntu.com Subject: [PATCH 2/2][kteam-tools] ktl: Added new entries for development version 12.10 Quantal Quetzal. Date: Wed, 25 Apr 2012 13:44:16 +0100 Message-Id: <1335357856-30468-3-git-send-email-luis.henriques@canonical.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1335357856-30468-1-git-send-email-luis.henriques@canonical.com> References: <1335357856-30468-1-git-send-email-luis.henriques@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com 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'],