Skip to content
Commits on Source (6)
......@@ -13,9 +13,6 @@ Our pylint script uses a blacklist rather than a whitelist approach,
so it could throw some false positives or useless messages. If you think
your patch exposes one of these, bring it up on the mailing list.
If `python-coverage` is installed, you can run `coverage -r` after
`python setup.py test` finished to see a code coverage report.
'test*' have a `--debug` option if you are hitting problems.
For more options, use `python setup.py test --help`.
......
......@@ -8,6 +8,7 @@ exclude data/gschemas.compiled
recursive-include man *
recursive-include po *
recursive-include tests *
exclude tests/test_urls_manual.ini
recursive-include ui *
recursive-include virtManager *
recursive-include virtcli *
......
# Virtual Machine Manager News
## Release 1.5.1 (February 28, 2018)
- Bug fix release
- Fix potential crash with libxml2 error callbacks
- Fix disk/net/mem VM graphs
## Release 1.5.0 (February 06, 2018)
- python3 prep work (Radostin Stoyanov, Cole Robinson, Cédric Bosdonnat)
- Switch --location ISO to use isoinfo (Andrew Wong)
- virt-install: add --cpu numa distance handling (Menno Lageman)
- virt-install: fix --disk for rbd volumes with auth (Rauno Väli)
- virt-install: add --cputune vcpupin handling (Wim ten Have)
- details ui: Showing attached scsi devices per controller (Lin Ma)
- network ui: Show details about SR-IOV VF pool (Lin Ma)
- Greatly expand UI test suite coverage
## Release 1.4.3 (September 19, 2017)
- Improve install of debian/ubuntu non-x86 media (Viktor Mihajlovski, Andrew
Wong)
......@@ -10,7 +25,7 @@
## Release 1.4.2 (August 08, 2017)
- New VM wixard virt-bootstrap integration (Radostin Stoyanov)
- New VM wizard virt-bootstrap integration (Radostin Stoyanov)
- New VM wizard support for virtuozzo containers (Mikhail Feoktistov)
- network UI: add support to create SR-IOV VF pool (Lin Ma)
- Nicer OS list in New VM wizard (Pino Toscano)
......
Metadata-Version: 1.0
Name: virt-manager
Version: 1.4.3
Version: 1.5.1
Summary: UNKNOWN
Home-page: http://virt-manager.org
Author: Cole Robinson
......
virt-manager (1:1.5.1-1) unstable; urgency=medium
* Depend on e2fsprogs (Closes: #887285)
* New upstream version 1.5.1
* Rediff patches
* d/control: Switch URLs to salsa
* d/rules: Honor DEB_BUILD_OPTIONS
-- Guido Günther <agx@sigxcpu.org> Wed, 27 Jun 2018 11:38:12 +0200
virt-manager (1:1.4.3-1) unstable; urgency=medium
* Depend on gir1.2-spiceclientglib-2.0 (Closes: #873597)
......
......@@ -4,8 +4,8 @@ Priority: optional
Maintainer: Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org>
Uploaders: Guido Günther <agx@sigxcpu.org>, Laurent Léonard <laurent@open-minds.org>
Standards-Version: 4.1.1
Vcs-Git: https://anonscm.debian.org/git/pkg-libvirt/virt-manager.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-libvirt/virt-manager.git
Vcs-Git: https://salsa.debian.org/libvirt-team/virt-manager.git
Vcs-Browser: https://salsa.debian.org/libvirt-team/virt-manager
Homepage: http://virt-manager.org/
X-Python-Version: 2.7
Build-Depends:
......
......@@ -14,7 +14,7 @@ so we don't have to worry about picking up the wrong version
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/setup.py b/setup.py
index 2a39921..7b7b72b 100755
index 1ae6a22..95b7e13 100755
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
......@@ -24,7 +24,7 @@ index 2a39921..7b7b72b 100755
import glob
diff --git a/tests/test_inject.py b/tests/test_inject.py
index a9b939c..05926c4 100755
index 94ab114..11d91df 100755
--- a/tests/test_inject.py
+++ b/tests/test_inject.py
@@ -1,4 +1,4 @@
......@@ -64,7 +64,7 @@ index 4163d0f..bc32b0d 100755
# Copyright 2005-2014 Red Hat, Inc.
#
diff --git a/virt-manager b/virt-manager
index 4c05c1f..aa6ba91 100755
index 4ba10fa..f5616de 100755
--- a/virt-manager
+++ b/virt-manager
@@ -1,4 +1,4 @@
......@@ -74,7 +74,7 @@ index 4c05c1f..aa6ba91 100755
# Copyright (C) 2006, 2014 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
diff --git a/virt-xml b/virt-xml
index 59d6c4f..66ab815 100755
index b7d78fe..199f3c6 100755
--- a/virt-xml
+++ b/virt-xml
@@ -1,4 +1,4 @@
......
......@@ -36,7 +36,7 @@ index fbc4f4b..45e044e 100644
<disk type="file" device="disk">
<driver name="qemu" type="qcow2"/>
diff --git a/virtinst/guest.py b/virtinst/guest.py
index 4231719..4cb79cb 100644
index e136a17..c5406da 100644
--- a/virtinst/guest.py
+++ b/virtinst/guest.py
@@ -366,7 +366,7 @@ class Guest(XMLBuilder):
......
......@@ -8,7 +8,7 @@ Closes: #685749
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/virtinst/guest.py b/virtinst/guest.py
index 143a36f..4231719 100644
index 32acd52..e136a17 100644
--- a/virtinst/guest.py
+++ b/virtinst/guest.py
@@ -814,7 +814,7 @@ class Guest(XMLBuilder):
......
......@@ -8,7 +8,11 @@ override_dh_python2:
dh_python2 -p virtinst usr/share/virt-manager
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
python setup.py test
else
@echo "Checks disabled via DEB_BUILD_OPTIONS"
endif
override_dh_auto_install:
python setup.py --no-update-icon-cache --no-compile-schemas install --force --root=debian/tmp --no-compile -O0
......
......@@ -10,7 +10,7 @@ B<virt-convert> INPUT.vmx|INPUT.ovf|INPUT-DIR|INPUT.zip [OPTIONS]
=head1 DESCRIPTION
B<virt-convert> is a command line tool for converting VMX of OVF virtual
B<virt-convert> is a command line tool for converting VMX or OVF virtual
machines to native libvirt XML. Disk format conversion can also be done
at the same time.
......
......@@ -255,6 +255,16 @@ Example of passing through the host cpu's cache information.
Use --cpu=? to see a list of all available sub options. Complete details at L<http://libvirt.org/formatdomain.html#elementsCPU>
=item B<--cputune> OPTIONS
Tune CPU parameters for the guest.
Configure which of the host's physical CPUs the domain VCPU will be pinned to. Example invocation
--cputune vpcupin0.vcpu=0,vpcupin0.cpuset=0-3,vpcupin1.vcpu=1,vpcupin1.cpuset=4-7
Use --cputune=? to see a list of all available sub options. Complete details at L<http://libvirt.org/formatdomain.html#elementsCPUTuning>
=item B<--security> type=TYPE[,label=LABEL][,relabel=yes|no]
Configure domain security driver settings. Type can be either 'static' or
......@@ -724,7 +734,7 @@ WD-WMAP9A966149
=item B<startup_policy>
It defines what to do with the disk if the source file is not accessible. See
possible values in L<http://www.libvirt.org/formatdomain.html#elementsDisks>
possible values in L<http://www.libvirt.org/formatdomain.html#elementsDisks>, "startupPolicy" attribute of the <disk> element
=item B<snapshot_policy>
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.