rpms/virt-manager/F-12 virt-manager-0.8.2-perms-qemu-user.patch, NONE, 1.1 virt-manager-0.8.2-prefer-hal.patch, NONE, 1.1 .cvsignore, 1.24, 1.25 sources, 1.24, 1.25 virt-manager.spec, 1.65, 1.66 virt-manager-0.8.1-perms-qemu-user.patch, 1.1, NONE virt-manager-0.8.1-prefer-hal.patch, 1.1, NONE virt-manager-0.8.1-select-right-click.patch, 1.1, NONE

Cole Robinson crobinso at fedoraproject.org
Mon Dec 14 23:58:37 UTC 2009


Author: crobinso

Update of /cvs/pkgs/rpms/virt-manager/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9115

Modified Files:
	.cvsignore sources virt-manager.spec 
Added Files:
	virt-manager-0.8.2-perms-qemu-user.patch 
	virt-manager-0.8.2-prefer-hal.patch 
Removed Files:
	virt-manager-0.8.1-perms-qemu-user.patch 
	virt-manager-0.8.1-prefer-hal.patch 
	virt-manager-0.8.1-select-right-click.patch 
Log Message:
Update to 0.8.2 release
Fix first virt-manager run on a new install
Enable floppy media eject/connect


virt-manager-0.8.2-perms-qemu-user.patch:
 uihelpers.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE virt-manager-0.8.2-perms-qemu-user.patch ---
diff -rup virt-manager-0.8.1/src/virtManager/uihelpers.py new/src/virtManager/uihelpers.py
--- virt-manager-0.8.1/src/virtManager/uihelpers.py	2009-12-03 16:15:01.000000000 -0500
+++ new/src/virtManager/uihelpers.py	2009-12-03 17:15:09.101994000 -0500
@@ -38,7 +38,7 @@ OPTICAL_MEDIA_KEY = 4
 # may use a nonroot user, so simply changing this will cause several UI
 # pieces to attempt to verify that permissions are correct. Eventually this
 # should be exposed via capabilities so we can determine this programmatically.
-QEMU_SYSTEM_EMULATOR_USER = "root"
+QEMU_SYSTEM_EMULATOR_USER = "qemu"
 
 ##############################################################
 # Initialize an error object to use for validation functions #

virt-manager-0.8.2-prefer-hal.patch:
 connection.py |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

--- NEW FILE virt-manager-0.8.2-prefer-hal.patch ---
diff -rup virt-manager-0.8.2/src/virtManager/connection.py new/src/virtManager/connection.py
--- virt-manager-0.8.2/src/virtManager/connection.py	2009-12-14 17:32:35.000000000 -0500
+++ new/src/virtManager/connection.py	2009-12-14 18:56:03.000000000 -0500
@@ -170,7 +170,8 @@ class vmmConnection(gobject.GObject):
         """
         Determine how we will be polling for net devices (HAL or libvirt)
         """
-        if self.is_nodedev_capable() and self.interface_capable:
+        if (self.is_remote() and
+            self.is_nodedev_capable() and self.interface_capable):
             try:
                 self._build_libvirt_netdev_list()
                 self.netdev_use_libvirt = True
@@ -207,7 +208,7 @@ class vmmConnection(gobject.GObject):
                 logging.debug("Using HAL for netdev enumeration")
 
     def _init_mediadev(self):
-        if self.is_nodedev_capable():
+        if self.is_remote() and self.is_nodedev_capable():
             try:
                 self.connect("nodedev-added", self._nodedev_mediadev_added)
                 self.connect("nodedev-removed", self._nodedev_mediadev_removed)


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/virt-manager/F-12/.cvsignore,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -p -r1.24 -r1.25
--- .cvsignore	3 Dec 2009 22:44:49 -0000	1.24
+++ .cvsignore	14 Dec 2009 23:58:37 -0000	1.25
@@ -1 +1 @@
-virt-manager-0.8.1.tar.gz
+virt-manager-0.8.2.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/virt-manager/F-12/sources,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -p -r1.24 -r1.25
--- sources	3 Dec 2009 22:44:49 -0000	1.24
+++ sources	14 Dec 2009 23:58:37 -0000	1.25
@@ -1 +1 @@
-6e461e91d679dc87d9fc506f34832d90  virt-manager-0.8.1.tar.gz
+96faafba635f9f4d6474980440220ab3  virt-manager-0.8.2.tar.gz


Index: virt-manager.spec
===================================================================
RCS file: /cvs/pkgs/rpms/virt-manager/F-12/virt-manager.spec,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -p -r1.65 -r1.66
--- virt-manager.spec	9 Dec 2009 21:26:57 -0000	1.65
+++ virt-manager.spec	14 Dec 2009 23:58:37 -0000	1.66
@@ -7,8 +7,8 @@
 %define _extra_release %{?dist:%{dist}}%{!?dist:%{?extra_release:%{extra_release}}}
 
 Name: virt-manager
-Version: 0.8.1
-Release: 3%{_extra_release}
+Version: 0.8.2
+Release: 1%{_extra_release}
 Summary: Virtual Machine Manager
 
 Group: Applications/Emulators
@@ -21,8 +21,6 @@ BuildArch: noarch
 Patch1: %{name}-%{version}-perms-qemu-user.patch
 # Prefer HAL for device enumeration, to avoid possible regressions
 Patch2: %{name}-%{version}-prefer-hal.patch
-# Select manager row on right click, regressed with 0.8.1
-Patch3: %{name}-%{version}-select-right-click.patch
 
 # These two are just the oldest version tested
 Requires: pygtk2 >= 1.99.12-6
@@ -83,7 +81,6 @@ management API.
 %setup -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 %build
 %configure
@@ -157,10 +154,15 @@ fi
 %{_datadir}/dbus-1/services/%{name}.service
 
 %changelog
+* Mon Dec 14 2009 Cole Robinson <crobinso at redhat.com> - 0.8.2-1.fc12
+- Update to 0.8.2 release
+- Fix first virt-manager run on a new install
+- Enable floppy media eject/connect
+
 * Wed Dec 09 2009 Cole Robinson <crobinso at redhat.com> - 0.8.1-3.fc12
 - Select manager row on right click, regressed with 0.8.1
 
-* Sat Dec  5 2009 Cole Robinson <crobinso at redhat.com> - 0.8.1-2.fc13
+* Sat Dec  5 2009 Cole Robinson <crobinso at redhat.com> - 0.8.1-2.fc12
 - Set proper version Requires: for python-virtinst
 
 * Thu Dec  3 2009 Cole Robinson <crobinso at redhat.com> - 0.8.1-1.fc12


--- virt-manager-0.8.1-perms-qemu-user.patch DELETED ---


--- virt-manager-0.8.1-prefer-hal.patch DELETED ---


--- virt-manager-0.8.1-select-right-click.patch DELETED ---




More information about the scm-commits mailing list