Add dbus-x11 to Requires (bug 467886) Fedora translation updates (bug
467808) Don't add multiple sound devices if install fails Only popup volume path copy option on right click Fix a variable typo
This commit is contained in:
parent
2d41b1fe4e
commit
d6fa6bfd07
File diff suppressed because it is too large
Load Diff
19
virt-manager-0.6.0-connect-variable-typo.patch
Normal file
19
virt-manager-0.6.0-connect-variable-typo.patch
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User "Cole Robinson <crobinso@redhat.com>"
|
||||||
|
# Date 1224534507 14400
|
||||||
|
# Node ID 57f3422417b38bb6c4d834283f7bd85c368fccf0
|
||||||
|
# Parent fd4db4f02a84dadce38293214fc04721c1a8cc15
|
||||||
|
Fix variable typo.
|
||||||
|
|
||||||
|
diff -r fd4db4f02a84 -r 57f3422417b3 src/virtManager/manager.py
|
||||||
|
--- a/src/virtManager/manager.py Mon Oct 20 10:49:21 2008 -0400
|
||||||
|
+++ b/src/virtManager/manager.py Mon Oct 20 16:28:27 2008 -0400
|
||||||
|
@@ -430,7 +430,7 @@
|
||||||
|
(gtype, host, port, transport, username) = vm.get_graphics_console()
|
||||||
|
if gtype == "vnc":
|
||||||
|
self.emit("action-show-console", uri, vmuuid)
|
||||||
|
- elif not connect.is_remote():
|
||||||
|
+ elif not connection.is_remote():
|
||||||
|
self.emit("action-show-terminal", uri, vmuuid)
|
||||||
|
else:
|
||||||
|
self.emit("action-refresh-console", uri, vmuuid)
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
18
virt-manager-0.6.0-multiple-sound-dev.patch
Normal file
18
virt-manager-0.6.0-multiple-sound-dev.patch
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User "Cole Robinson <crobinso@redhat.com>"
|
||||||
|
# Date 1224789319 14400
|
||||||
|
# Node ID 1851cbb03705561a2e603606d73eb4ebde7ac405
|
||||||
|
# Parent 4e7c3f99f0db513e0d8325c5bf485643a164f601
|
||||||
|
Don't add sound devices multiple times.
|
||||||
|
|
||||||
|
diff -r 4e7c3f99f0db -r 1851cbb03705 src/virtManager/create.py
|
||||||
|
--- a/src/virtManager/create.py Thu Oct 23 11:45:27 2008 -0400
|
||||||
|
+++ b/src/virtManager/create.py Thu Oct 23 15:15:19 2008 -0400
|
||||||
|
@@ -643,6 +643,7 @@
|
||||||
|
"".join(traceback.format_exc()))
|
||||||
|
return False
|
||||||
|
|
||||||
|
+ guest.sound_devs = []
|
||||||
|
try:
|
||||||
|
if self.get_config_sound():
|
||||||
|
guest.sound_devs.append(virtinst.VirtualAudio(model="es1370"))
|
70391
virt-manager-0.6.0-update-translations.patch
Normal file
70391
virt-manager-0.6.0-update-translations.patch
Normal file
File diff suppressed because it is too large
Load Diff
20
virt-manager-0.6.0-vol-copy-popup.patch
Normal file
20
virt-manager-0.6.0-vol-copy-popup.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User "Cole Robinson <crobinso@redhat.com>"
|
||||||
|
# Date 1224708808 14400
|
||||||
|
# Node ID c44f1d9698091da7ce8e368aba30c68b580b5c10
|
||||||
|
# Parent e3c76e40eb2e5d468c8ff61f87f1dd87ef903120
|
||||||
|
Only popup vol copy path menu on right click (not any click)
|
||||||
|
|
||||||
|
diff -r e3c76e40eb2e -r c44f1d969809 src/virtManager/host.py
|
||||||
|
--- a/src/virtManager/host.py Wed Oct 22 16:48:15 2008 -0400
|
||||||
|
+++ b/src/virtManager/host.py Wed Oct 22 16:53:28 2008 -0400
|
||||||
|
@@ -614,6 +614,9 @@
|
||||||
|
self.window.get_widget("vol-delete").set_sensitive(True)
|
||||||
|
|
||||||
|
def popup_vol_menu(self, widget, event):
|
||||||
|
+ if event.button != 3:
|
||||||
|
+ return
|
||||||
|
+
|
||||||
|
tup = widget.get_path_at_pos(int(event.x), int(event.y))
|
||||||
|
if tup == None:
|
||||||
|
return False
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
Name: virt-manager
|
Name: virt-manager
|
||||||
Version: 0.6.0
|
Version: 0.6.0
|
||||||
Release: 2%{_extra_release}
|
Release: 3%{_extra_release}
|
||||||
Summary: Virtual Machine Manager
|
Summary: Virtual Machine Manager
|
||||||
|
|
||||||
Group: Applications/Emulators
|
Group: Applications/Emulators
|
||||||
@ -19,11 +19,12 @@ Source1: %{name}.pam
|
|||||||
Source2: %{name}.console
|
Source2: %{name}.console
|
||||||
Patch1: %{name}-%{version}-polkit-root.patch
|
Patch1: %{name}-%{version}-polkit-root.patch
|
||||||
Patch2: %{name}-%{version}-conn-details-sensitivity.patch
|
Patch2: %{name}-%{version}-conn-details-sensitivity.patch
|
||||||
Patch3: %{name}-%{version}-catalan-translation.patch
|
Patch3: %{name}-%{version}-populate-hostinfo-early.patch
|
||||||
Patch4: %{name}-%{version}-dutch-translation.patch
|
Patch4: %{name}-%{version}-update-potfiles.patch
|
||||||
Patch5: %{name}-%{version}-german-update.patch
|
Patch5: %{name}-%{version}-update-translations.patch
|
||||||
Patch6: %{name}-%{version}-populate-hostinfo-early.patch
|
Patch6: %{name}-%{version}-multiple-sound-dev.patch
|
||||||
Patch7: %{name}-%{version}-update-potfiles.patch
|
Patch7: %{name}-%{version}-vol-copy-popup.patch
|
||||||
|
Patch8: %{name}-%{version}-connect-variable-typo.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
# These two are just the oldest version tested
|
# These two are just the oldest version tested
|
||||||
@ -33,6 +34,7 @@ Requires: gnome-python2-gconf >= 1.99.11-7
|
|||||||
Requires: libvirt-python >= 0.4.5
|
Requires: libvirt-python >= 0.4.5
|
||||||
# Definitely does not work with earlier due to python API changes
|
# Definitely does not work with earlier due to python API changes
|
||||||
Requires: dbus-python >= 0.61
|
Requires: dbus-python >= 0.61
|
||||||
|
Requires: dbus-x11
|
||||||
# Might work with earlier, but this is what we've tested
|
# Might work with earlier, but this is what we've tested
|
||||||
Requires: gnome-keyring >= 0.4.9
|
Requires: gnome-keyring >= 0.4.9
|
||||||
# Minimum we've tested with
|
# Minimum we've tested with
|
||||||
@ -95,6 +97,7 @@ management API.
|
|||||||
%patch5 -p1
|
%patch5 -p1
|
||||||
%patch6 -p1
|
%patch6 -p1
|
||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
|
%patch8 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
@ -184,6 +187,13 @@ fi
|
|||||||
%{_datadir}/dbus-1/services/%{name}.service
|
%{_datadir}/dbus-1/services/%{name}.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 27 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-3.fc10
|
||||||
|
- Add dbus-x11 to Requires (bug 467886)
|
||||||
|
- Fedora translation updates (bug 467808)
|
||||||
|
- Don't add multiple sound devices if install fails
|
||||||
|
- Only popup volume path copy option on right click
|
||||||
|
- Fix a variable typo
|
||||||
|
|
||||||
* Tue Oct 14 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-2.fc10
|
* Tue Oct 14 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-2.fc10
|
||||||
- Add gnome-python2-gnome requirement.
|
- Add gnome-python2-gnome requirement.
|
||||||
- Allow seeing connection details if disconnected.
|
- Allow seeing connection details if disconnected.
|
||||||
|
Loading…
Reference in New Issue
Block a user