@@ -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'],
Signed-off-by: Luis Henriques <luis.henriques@canonical.com> --- ktl/ubuntu.py | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-)