Hello community,

here is the log from the commit of package vm-install for openSUSE:Factory 
checked in at 2015-09-11 09:04:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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    2015-08-29 
20:05:00.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.vm-install.new/vm-install.changes       
2015-09-11 09:04:24.000000000 +0200
@@ -1,0 +2,12 @@
+Wed Sep  9 09:53:47 MDT 2015 - [email protected]
+
+- bsc#945066 - vm-install: Add support for openSUSE 42
+- Add support for openSUSE Tumbleweed
+- Version 0.8.45
+
+-------------------------------------------------------------------
+Thu Sep  3 15:56:21 UTC 2015 - [email protected]
+
+- enable build on aarch64, as virt-manager requires it (fate#318444)
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ vm-install.spec ++++++
--- /var/tmp/diff_new_pack.7mgCOK/_old  2015-09-11 09:04:25.000000000 +0200
+++ /var/tmp/diff_new_pack.7mgCOK/_new  2015-09-11 09:04:25.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vm-install
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:           vm-install
 %if %suse_version <= 1230
 %define with_vminstall_as_default_installer 1
@@ -27,15 +26,14 @@
 %endif
 # For directory ownership:
 BuildRequires:  yast2
-Version:        0.8.44
+Version:        0.8.45
 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.44.tar.bz2
+Source0:        %{name}-0.8.45.tar.bz2
 Source1:        vm-install.conf
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-ExclusiveArch:  %ix86 x86_64 s390x ppc64le
 Requires:       dbus-1-python
 Requires:       kdump
 Requires:       libvirt-python

++++++ vm-install-0.8.44.tar.bz2 -> vm-install-0.8.45.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.44/Makefile 
new/vm-install-0.8.45/Makefile
--- old/vm-install-0.8.44/Makefile      2015-08-26 23:47:25.000000000 +0200
+++ new/vm-install-0.8.45/Makefile      2015-09-09 17:54:32.000000000 +0200
@@ -1,5 +1,5 @@
 PACKAGE = vm-install
-VER = 0.8.44
+VER = 0.8.45
 
 default:
        @echo "Run 'make install DESTDIR=$destdir' to install."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.44/setup.py 
new/vm-install-0.8.45/setup.py
--- old/vm-install-0.8.44/setup.py      2015-08-26 23:47:25.000000000 +0200
+++ new/vm-install-0.8.45/setup.py      2015-09-09 17:54:28.000000000 +0200
@@ -1,7 +1,7 @@
 from distutils.core import setup
 
 setup(name='vminstall',
-      version='0.8.44',
+      version='0.8.45',
       description='Define a virtual machine and install its operating system',
       author='Charles Coffing',
       author_email='[email protected]',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.44/src/vminstall/VMDefaults.py 
new/vm-install-0.8.45/src/vminstall/VMDefaults.py
--- old/vm-install-0.8.44/src/vminstall/VMDefaults.py   2015-05-26 
16:56:16.000000000 +0200
+++ new/vm-install-0.8.45/src/vminstall/VMDefaults.py   2015-09-09 
19:49:19.000000000 +0200
@@ -300,6 +300,18 @@
     def default_memory(self):
         return 768
 
+class openSUSE42Defaults(openSUSE13Defaults):
+    def name(self):
+        return msg.opensuse42
+    def default_memory(self):
+        return 1024
+
+class openSUSETumbleweedDefaults(openSUSE13Defaults):
+    def name(self):
+        return msg.opensuse_tumbleweed
+    def default_memory(self):
+        return 1024
+
 class SLED10Defaults(SUSEDefaults):
     def name(self):
         return msg.sled10
@@ -914,6 +926,8 @@
     'opensuse11' : openSUSE11Defaults(),
     'opensuse12' : openSUSE12Defaults(),
     'opensuse13' : openSUSE13Defaults(),
+    'opensuse42' : openSUSE42Defaults(),
+    'opensuse_tumbleweed' : openSUSETumbleweedDefaults(),
     'other'    : GenericDefaults(),
     'redhat'   : RedHatDefaults(),
     'rhel3'    : RHEL3Defaults(),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.44/src/vminstall/caps.py 
new/vm-install-0.8.45/src/vminstall/caps.py
--- old/vm-install-0.8.44/src/vminstall/caps.py 2014-12-02 23:31:06.000000000 
+0100
+++ new/vm-install-0.8.45/src/vminstall/caps.py 2015-09-09 19:55:09.000000000 
+0200
@@ -227,6 +227,9 @@
                 version = version.split('.', 1)[0].strip('"')
             if name and version:
                 if name == 'openSUSE':
+                    int_version = int(version)
+                    if int_version is None or int_version > 2014:
+                        version = "_tumbleweed"
                     return name.lower() + version
                 elif name.startswith('SUSE Linux Enterprise Server'):
                     return 'sles' + version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vm-install-0.8.44/src/vminstall/msg.py 
new/vm-install-0.8.45/src/vminstall/msg.py
--- old/vm-install-0.8.44/src/vminstall/msg.py  2015-05-26 16:56:16.000000000 
+0200
+++ new/vm-install-0.8.45/src/vminstall/msg.py  2015-09-09 19:51:19.000000000 
+0200
@@ -133,6 +133,8 @@
 opensuse11 = _("openSUSE 11")
 opensuse12 = _("openSUSE 12")
 opensuse13 = _("openSUSE 13")
+opensuse42 = _("openSUSE 42")
+opensuse_tumbleweed = _("openSUSE Tumbleweed")
 other_os = _("Other operating system")
 redhat_other = _("RedHat (other)")
 rhel3 = _("RedHat Enterprise Linux 3")


Reply via email to