~ubuntu-branches/ubuntu/maverick/vm-builder/maverick

« back to all changes in this revision

Viewing changes to debian/patches/lucid-release.diff

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2010-02-16 13:54:30 UTC
  • Revision ID: james.westby@ubuntu.com-20100216135430-iimhmgffwdh2ee1e
Tags: 0.11.3-0ubuntu8
* debian/patches/ext4-support.diff: add ext4 (upstream commit
  lp:vmbuilder/0.11 r364, LP: #494804)
* debian/patches/lucid-release.diff: add Ubuntu Lucid to the list of
  buildable distros.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: add Lucid to the list of buildable distros.
 
2
Author: Kees Cook <kees@ubuntu.com>
 
3
 
 
4
Index: vm-builder-0.11.3/VMBuilder/plugins/ubuntu/distro.py
 
5
===================================================================
 
6
--- vm-builder-0.11.3.orig/VMBuilder/plugins/ubuntu/distro.py   2010-02-16 13:59:37.033087060 -0800
 
7
+++ vm-builder-0.11.3/VMBuilder/plugins/ubuntu/distro.py        2010-02-16 14:00:18.550586573 -0800
 
8
@@ -29,7 +29,7 @@
 
9
 class Ubuntu(Distro):
 
10
     name = 'Ubuntu'
 
11
     arg = 'ubuntu'
 
12
-    suites = ['dapper', 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic']
 
13
+    suites = ['dapper', 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid']
 
14
     
 
15
     # Maps host arch to valid guest archs
 
16
     valid_archs = { 'amd64' : ['amd64', 'i386', 'lpia' ],
 
17
Index: vm-builder-0.11.3/VMBuilder/plugins/ubuntu/lucid.py
 
18
===================================================================
 
19
--- /dev/null   1970-01-01 00:00:00.000000000 +0000
 
20
+++ vm-builder-0.11.3/VMBuilder/plugins/ubuntu/lucid.py 2010-02-16 14:00:03.570588037 -0800
 
21
@@ -0,0 +1,26 @@
 
22
+#
 
23
+#    Uncomplicated VM Builder
 
24
+#    Copyright (C) 2010 Canonical Ltd.
 
25
+#
 
26
+#    See AUTHORS for list of contributors
 
27
+#
 
28
+#    This program is free software: you can redistribute it and/or modify
 
29
+#    it under the terms of the GNU General Public License version 3, as
 
30
+#    published by the Free Software Foundation.
 
31
+#
 
32
+#    This program is distributed in the hope that it will be useful,
 
33
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
34
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
35
+#    GNU General Public License for more details.
 
36
+#
 
37
+#    You should have received a copy of the GNU General Public License
 
38
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
39
+#
 
40
+import suite
 
41
+import logging
 
42
+import VMBuilder.disk as disk
 
43
+from   VMBuilder.util import run_cmd
 
44
+from   VMBuilder.plugins.ubuntu.karmic import Karmic
 
45
+
 
46
+class Lucid(Karmic):
 
47
+    pass