Hello community,

here is the log from the commit of package vm-install for openSUSE:Factory 
checked in at 2017-05-24 16:51:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vm-install (Old)
 and      /work/SRC/openSUSE:Factory/.vm-install.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vm-install"

Wed May 24 16:51:18 2017 rev:157 rq:497862 version:0.8.66

Changes:
--------
--- /work/SRC/openSUSE:Factory/vm-install/vm-install.changes    2017-04-29 
10:53:27.776747986 +0200
+++ /work/SRC/openSUSE:Factory/.vm-install.new/vm-install.changes       
2017-05-24 16:52:04.356150824 +0200
@@ -1,0 +2,6 @@
+Tue May 16 08:30:35 MDT 2017 - carn...@suse.com
+
+- bsc#1039333 - vm-install: Invalid syntax error
+- Version 0.8.66
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ vm-install.spec ++++++
--- /var/tmp/diff_new_pack.vXQlWW/_old  2017-05-24 16:52:05.124042720 +0200
+++ /var/tmp/diff_new_pack.vXQlWW/_new  2017-05-24 16:52:05.128042157 +0200
@@ -27,12 +27,12 @@
 %endif
 # For directory ownership:
 BuildRequires:  yast2
-Version:        0.8.65
+Version:        0.8.66
 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.8.65.tar.bz2
+Source0:        %{name}-0.8.66.tar.bz2
 Source1:        vm-install.conf
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Requires:       dbus-1-python

++++++ vm-install-0.8.65.tar.bz2 -> vm-install-0.8.66.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.65/Makefile 
new/vm-install-0.8.66/Makefile
--- old/vm-install-0.8.65/Makefile      2017-04-24 18:59:29.039005563 +0200
+++ new/vm-install-0.8.66/Makefile      2017-05-16 16:31:23.811237290 +0200
@@ -1,5 +1,5 @@
 PACKAGE = vm-install
-VER = 0.8.65
+VER = 0.8.66
 
 default:
        @echo "Run 'make install DESTDIR=$destdir' to install."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.65/setup.py 
new/vm-install-0.8.66/setup.py
--- old/vm-install-0.8.65/setup.py      2017-04-24 18:59:23.207226680 +0200
+++ new/vm-install-0.8.66/setup.py      2017-05-16 16:31:19.267409263 +0200
@@ -1,7 +1,7 @@
 from distutils.core import setup
 
 setup(name='vminstall',
-      version='0.8.65',
+      version='0.8.66',
       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.8.65/src/vminstall/ParaVirtGuest.py 
new/vm-install-0.8.66/src/vminstall/ParaVirtGuest.py
--- old/vm-install-0.8.65/src/vminstall/ParaVirtGuest.py        2017-04-24 
19:09:39.395863133 +0200
+++ new/vm-install-0.8.66/src/vminstall/ParaVirtGuest.py        2017-05-16 
16:15:05.100305090 +0200
@@ -401,7 +401,7 @@
            self.options.os_type == "sles15" or self.options.os_type == 
"sled15" or \
            self.options.os_type == "sles12" or self.options.os_type == 
"sled12" or \
            self.options.os_type == "opensuse13" or self.options.os_type == 
"opensuse42" or \
-           self.options.os_type == "opensuse15" or self.options.os_type == 
"opensuse_tumbleweed" \
+           self.options.os_type == "opensuse15" or self.options.os_type == 
"opensuse_tumbleweed" or \
            self.options.os_type == "rhel7":
             return [ "<os type='%s'>" % self.options.os_type,
                      [ '<type>linux</type>',
@@ -468,7 +468,7 @@
            self.options.os_type == "sles15" or self.options.os_type == 
"sled15" or \
            self.options.os_type == "sles12" or self.options.os_type == 
"sled12" or \
            self.options.os_type == "opensuse13" or self.options.os_type == 
"opensuse42" or \
-           self.options.os_type == "opensuse15" or self.options.os_type == 
"opensuse_tumbleweed" \
+           self.options.os_type == "opensuse15" or self.options.os_type == 
"opensuse_tumbleweed" or \
            self.options.os_type == "rhel7":
             return """builder="linux"
 #bootargs=""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.65/src/vminstall/VMSUSE.py 
new/vm-install-0.8.66/src/vminstall/VMSUSE.py
--- old/vm-install-0.8.65/src/vminstall/VMSUSE.py       2017-04-24 
19:28:56.371994969 +0200
+++ new/vm-install-0.8.66/src/vminstall/VMSUSE.py       2017-05-16 
16:15:48.462662588 +0200
@@ -367,10 +367,10 @@
                     else:
                         src = 'hd:/dev/%s' % options.source.get_vdev_str()
                 else:
-                    if options.os_type != 'sles15' and options.os_type != 
'sled15' \
-                       and options.os_type != 'sles12' and options.os_type != 
'sled12' \
-                       and options.os_type != 'opensuse42' and options.os_type 
!= 'opensuse15' \
-                       and options.os_type != 'opensuse_tumbleweed':
+                    if options.os_type != 'sles15' and options.os_type != 
'sled15' and \
+                       options.os_type != 'sles12' and options.os_type != 
'sled12' and \
+                       options.os_type != 'opensuse42' and options.os_type != 
'opensuse15' and \
+                       options.os_type != 'opensuse_tumbleweed':
                         src = 'hd:/dev/%s' % options.source.get_vdev_str()
             else:
                 src = options.source


Reply via email to