Hello community,

here is the log from the commit of package vm-install for openSUSE:Factory 
checked in at 2013-06-20 15:01:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vm-install (Old)
 and      /work/SRC/openSUSE:Factory/.vm-install.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vm-install"

Changes:
--------
--- /work/SRC/openSUSE:Factory/vm-install/vm-install.changes    2013-06-11 
09:38:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.vm-install.new/vm-install.changes       
2013-06-20 17:06:11.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Jun 12 10:48:05 MDT 2013 - carn...@suse.com
+
+- Add openSUSE 13 as a supported platform
+- Version 0.7.2
+
+-------------------------------------------------------------------

Old:
----
  vm-install-0.7.1.tar.bz2

New:
----
  vm-install-0.7.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ vm-install.spec ++++++
--- /var/tmp/diff_new_pack.mI9vFx/_old  2013-06-20 17:06:11.000000000 +0200
+++ /var/tmp/diff_new_pack.mI9vFx/_new  2013-06-20 17:06:11.000000000 +0200
@@ -15,19 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:           vm-install
 Url:            http://developer.novell.com/wiki/index.php/Vm-install
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
 # For directory ownership:
 BuildRequires:  yast2
-Version:        0.7.1
+Version:        0.7.2
 Release:        0
 Summary:        Tool to Define a Virtual Machine and Install Its Operating 
System
 License:        GPL-2.0
 Group:          System/Emulators/PC
-Source0:        %{name}-0.7.1.tar.bz2
+Source0:        %{name}-0.7.2.tar.bz2
 Source1:        vm-install.conf
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  %ix86 x86_64 s390x

++++++ vm-install-0.7.1.tar.bz2 -> vm-install-0.7.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/Makefile 
new/vm-install-0.7.2/Makefile
--- old/vm-install-0.7.1/Makefile       2013-06-07 22:46:00.000000000 +0200
+++ new/vm-install-0.7.2/Makefile       2013-06-13 00:08:47.000000000 +0200
@@ -1,5 +1,5 @@
 PACKAGE = vm-install
-VER = 0.7.1
+VER = 0.7.2
 
 default:
        @echo "Run 'make install DESTDIR=$destdir' to install."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/setup.py 
new/vm-install-0.7.2/setup.py
--- old/vm-install-0.7.1/setup.py       2013-06-07 22:45:56.000000000 +0200
+++ new/vm-install-0.7.2/setup.py       2013-06-13 00:08:47.000000000 +0200
@@ -1,7 +1,7 @@
 from distutils.core import setup
 
 setup(name='vminstall',
-      version='0.7.1',
+      version='0.7.2',
       description='Define a virtual machine and install its operating system',
       author='Charles Coffing',
       author_email='ccoff...@novell.com',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/src/vminstall/ParaVirtGuest.py 
new/vm-install-0.7.2/src/vminstall/ParaVirtGuest.py
--- old/vm-install-0.7.1/src/vminstall/ParaVirtGuest.py 2013-04-22 
19:04:43.000000000 +0200
+++ new/vm-install-0.7.2/src/vminstall/ParaVirtGuest.py 2013-06-13 
00:08:47.000000000 +0200
@@ -237,7 +237,7 @@
                     else:
                         vpart = traildigits(partition['name'])
                     log.info("Found kernel on partition %s." % vpart)
-                    boot_kernel_check = 
['sles11','sled11','opensuse11','opensuse12']
+                    boot_kernel_check = 
['sles11','sled11','opensuse11','opensuse12','opensuse13']
                     if self.options.os_type in boot_kernel_check:
                         path = os.path.dirname(_kernel)
                         checkAndSetDefaultBootKernel(mountpoint + path)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/src/vminstall/VMDefaults.py 
new/vm-install-0.7.2/src/vminstall/VMDefaults.py
--- old/vm-install-0.7.1/src/vminstall/VMDefaults.py    2013-06-07 
22:44:03.000000000 +0200
+++ new/vm-install-0.7.2/src/vminstall/VMDefaults.py    2013-06-13 
00:08:47.000000000 +0200
@@ -288,6 +288,12 @@
     def default_memory(self):
         return 768
 
+class openSUSE13Defaults(openSUSE12Defaults):
+    def name(self):
+        return msg.opensuse13
+    def default_memory(self):
+        return 768
+
 class SLED10Defaults(SUSEDefaults):
     def name(self):
         return msg.sled10
@@ -808,6 +814,7 @@
     'opensuse' : openSUSEDefaults(),
     'opensuse11' : openSUSE11Defaults(),
     'opensuse12' : openSUSE12Defaults(),
+    'opensuse13' : openSUSE13Defaults(),
     'other'    : GenericDefaults(),
     'redhat'   : RedHatDefaults(),
     'rhel3'    : RHEL3Defaults(),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/src/vminstall/VMSUSE.py 
new/vm-install-0.7.2/src/vminstall/VMSUSE.py
--- old/vm-install-0.7.1/src/vminstall/VMSUSE.py        2013-05-15 
22:59:16.000000000 +0200
+++ new/vm-install-0.7.2/src/vminstall/VMSUSE.py        2013-06-13 
00:08:47.000000000 +0200
@@ -360,7 +360,8 @@
                     virtio = False
                     if caps.is_kvm():
                         if options.os_type == 'sles11' or options.os_type == 
'sled11' or \
-                           options.os_type == 'opensuse11' or options.os_type 
== 'opensuse12':
+                           options.os_type == 'opensuse11' or options.os_type 
== 'opensuse12' or \
+                           options.os_type == 'opensuse13':
                             virtio = True
                             autoyast_vdev = "vdb"
                         else:
@@ -423,7 +424,8 @@
                 if guest.options.os_type == 'sles11' or \
                    guest.options.os_type == 'sled11' or \
                    guest.options.os_type == 'opensuse11' or \
-                   guest.options.os_type == 'opensuse12':
+                   guest.options.os_type == 'opensuse12' or \
+                   guest.options.os_type == 'opensuse13':
                     virtio = True
                 autoyast_vdev = 
vmdisks.get_unused_vdevs(guest.options.full_virt, virtio, 
guest.options.disks)[0]
                 ay_vdev = autoyast_vdev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/src/vminstall/caps.py 
new/vm-install-0.7.2/src/vminstall/caps.py
--- old/vm-install-0.7.1/src/vminstall/caps.py  2013-05-15 22:59:16.000000000 
+0200
+++ new/vm-install-0.7.2/src/vminstall/caps.py  2013-06-13 00:08:47.000000000 
+0200
@@ -193,6 +193,8 @@
                 return 'opensuse11'
             if line.startswith('openSUSE 12'):
                 return 'opensuse12'
+            if line.startswith('openSUSE 13'):
+                return 'opensuse13'
             if line.startswith('SUSE Linux Enterprise Server 10'):
                 return 'sles10'
             if line.startswith('SUSE Linux Enterprise Desktop 10'):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/src/vminstall/gtk/interface.py 
new/vm-install-0.7.2/src/vminstall/gtk/interface.py
--- old/vm-install-0.7.1/src/vminstall/gtk/interface.py 2013-05-15 
22:59:16.000000000 +0200
+++ new/vm-install-0.7.2/src/vminstall/gtk/interface.py 2013-06-13 
00:08:47.000000000 +0200
@@ -115,7 +115,7 @@
             raise Error(Exception(), vminstall.msg.must_be_root)
 
         # Specific to HVM guests
-        self.has_balloon_driver = ['opensuse11','opensuse12','sled11','sles11']
+        self.has_balloon_driver = 
['opensuse11','opensuse12','opensuse13','sled11','sles11']
 
         if caps.is_xen():
             paths.load_xen_paths()
@@ -947,7 +947,7 @@
             self.window.get_widget('graphics_hw_' + 
self.defaults.graphics).set_active(True)
 
             if not self.options.full_virt and \
-               self.options.os_type in ('sles10', 'sles11', 'sles12', 
'opensuse10', 'opensuse11', 'opensuse12'):
+               self.options.os_type in ('sles10', 'sles11', 'sles12', 
'opensuse10', 'opensuse11', 'opensuse12', 'opensuse13'):
                 self.window.get_widget('screen-resolution-alignment').show()
                 combo = 
self.window.get_widget('graphics-hw-screen-resolution-combobox')
                 sr = ['640x480', '800x600', '1024x768', '1280x1024']
@@ -1960,7 +1960,7 @@
                     break
             # Screen Resolution
             if not self.options.full_virt and \
-               self.options.os_type in ('sles10', 'sles11', 'sles12', 
'opensuse10', 'opensuse11', 'opensuse12'):
+               self.options.os_type in ('sles10', 'sles11', 'sles12', 
'opensuse10', 'opensuse11', 'opensuse12', 'opensuse13'):
                 combo = 
self.window.get_widget('graphics-hw-screen-resolution-combobox')
                 res = combo.get_active_text()
                 if self.options.screen_resolution or res != '800x600':
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.7.1/src/vminstall/msg.py 
new/vm-install-0.7.2/src/vminstall/msg.py
--- old/vm-install-0.7.1/src/vminstall/msg.py   2013-04-22 19:33:34.000000000 
+0200
+++ new/vm-install-0.7.2/src/vminstall/msg.py   2013-06-13 00:08:47.000000000 
+0200
@@ -131,6 +131,7 @@
 opensuse = _("openSUSE")
 opensuse11 = _("openSUSE 11")
 opensuse12 = _("openSUSE 12")
+opensuse13 = _("openSUSE 13")
 other_os = _("Other operating system")
 redhat_other = _("RedHat (other)")
 rhel3 = _("RedHat Enterprise Linux 3")

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to