1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

- update to 1.2.1

From Changelog:

Release 1.2.1 (June 06, 2015)
-----------------------------
- Bugfix release
- Fix connecting to older libvirt versions (Michal Kepie'n)
- Fix connecting to VM console with non-IP hostname (Giuseppe Scrivano)
- Fix addhardware/create wizard errors when a nodedev disappears
- Fix adding a second cdrom via customize dialog

Release 1.2.0 (May 04, 2015)
----------------------------
- OVMF/AAVMF Support (Laszlo Ersek, Giuseppe Scrivano, Cole Robinson)
- Improved support for AArch64 qemu/kvm
- virt-install: Support --disk type=network parameters
- virt-install: Make --disk  just work
- virt-install: Add --disk sgio= option (Giuseppe Scrivano)
- addhardware: default to an existing bus when adding a new disk
  (Giuseppe Scrivano)
- virt-install: Add --input device option
- virt-manager: Unify storagebrowser and storage details functionality
- virt-manager: allow setting a custom connection row name
- virt-install: Support --hostdev scsi passthrough
- virt-install: Fill in a bunch of --graphics spice options
- Disable spice image compression for new local VMs
- virt-manager: big reworking of the migration dialog
This commit is contained in:
Jason Helfman 2015-08-10 21:10:17 +00:00
parent 66cc417a3b
commit 737d239089
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=393907
5 changed files with 11 additions and 54 deletions

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= virt-manager
PORTVERSION= 1.1.0
PORTREVISION= 6
PORTVERSION= 1.2.1
CATEGORIES= deskutils net-mgmt
MASTER_SITES= http://virt-manager.org/download/sources/${PORTNAME}/ \
LOCAL/jgh/deskutils/${PORTNAME}/

View File

@ -1,2 +1,2 @@
SHA256 (virt-manager-1.1.0.tar.gz) = ab0906cb15a132f1893f89ac4ca211c6c2c9c2d1860fbc285edbf9451c0f7941
SIZE (virt-manager-1.1.0.tar.gz) = 2509440
SHA256 (virt-manager-1.2.1.tar.gz) = 74bba80e72e5e1b4d84f1d5b7211b874e9c4ae00a0a44149d1721acab38ce6be
SIZE (virt-manager-1.2.1.tar.gz) = 2524812

View File

@ -1,6 +1,6 @@
--- setup.py.orig 2014-09-06 22:26:12 UTC
--- setup.py.orig 2015-08-10 18:15:04 UTC
+++ setup.py
@@ -209,14 +209,6 @@ class my_build(build):
@@ -208,12 +208,6 @@ class my_build(build):
build.run(self)
@ -10,17 +10,17 @@
- """
- def run(self):
- pass
-
-
class my_install(install):
"""
Error if we weren't 'configure'd with the correct install prefix
@@ -601,11 +593,9 @@ setup(
@@ -589,13 +583,11 @@ setup(
"virt-convert",
"virt-xml",
]),
- ("share/glib-2.0/schemas",
- ["data/org.virt-manager.virt-manager.gschema.xml"]),
("share/GConf/gsettings",
["data/org.virt-manager.virt-manager.convert"]),
("share/virt-manager/ui", glob.glob("ui/*.ui")),
- ("share/man/man1", [
@ -28,7 +28,7 @@
"man/virt-manager.1",
"man/virt-install.1",
"man/virt-clone.1",
@@ -627,7 +617,6 @@ setup(
@@ -617,7 +609,6 @@ setup(
'sdist': my_sdist,
'install': my_install,

View File

@ -1,32 +0,0 @@
From 0aeee5c449d608d75f5632e9aa47f5e433eb3879 Mon Sep 17 00:00:00 2001
From: Cole Robinson <crobinso@redhat.com>
Date: Sun, 26 Apr 2015 11:50:01 -0400
Subject: serialcon: Fix opening with xen (bz 1215357)
Apparently xen doesn't set <serial> device alias names, and OpenConsole
just opens the first <console> device unconditionally.
Properly handling that would be to report it in the UI that we can
only open the first console, but for now just drop the alias check.
Apparently SUSE already does this as mentioned in the RH bug
https://bugzilla.redhat.com/show_bug.cgi?id=1215357
diff --git a/virtManager/serialcon.py b/virtManager/serialcon.py
index 92c2029..320811b 100644
--- ./virtManager/serialcon.py
+++ ./virtManager/serialcon.py
@@ -205,8 +205,9 @@ class LibvirtConsoleConnection(ConsoleConnection):
name = dev and dev.alias.name or None
logging.debug("Opening console stream for dev=%s alias=%s",
dev, name)
- if not name:
- raise RuntimeError(_("Cannot open a device with no alias name"))
+ # libxl doesn't set aliases, their open_console just defaults to
+ # opening the first console device, so don't force prescence of
+ # an alias
stream = self.conn.get_backend().newStream(libvirt.VIR_STREAM_NONBLOCK)
self.vm.open_console(name, stream)
--
cgit v0.10.2

View File

@ -1,10 +0,0 @@
--- virtManager/serialcon.py.orig 2014-07-28 15:11:32 UTC
+++ virtManager/serialcon.py
@@ -326,7 +326,6 @@ class vmmSerialConsole(vmmGObject):
self.terminal = Vte.Terminal()
self.terminal.set_scrollback_lines(1000)
self.terminal.set_audible_bell(False)
- self.terminal.set_visible_bell(True)
self.terminal.connect("button-press-event", self.show_serial_rcpopup)
self.terminal.connect("commit", self.console.send_data, self.terminal)