Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
5
Depend on Python3
· 7feebdf8
Guido Günther
authored
Jan 06, 2019
Gbp-Dch: Ignore
7feebdf8
virt-clone: Fix interpreter
· 01f9637a
Guido Günther
authored
Jan 06, 2019
Gbp-Dch: Ignore
01f9637a
virtinst: We don't ship virt-image anymore
· 8e24bba7
Guido Günther
authored
Jan 06, 2019
Closes: #883789
8e24bba7
Depend on genisoimage
· ab76fd73
Guido Günther
authored
Jan 06, 2019
Closes: #895594 Thanks: Christian Ehrhardt
ab76fd73
Document changes and release 1:2.0.0-1
· d8ba6d61
Guido Günther
authored
Jan 06, 2019
d8ba6d61
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
d8ba6d61
virt-manager (1:2.0.0-1~1.gbp426b78) UNRELEASED; urgency=medium
** SNAPSHOT build @426b787d2d5ab0f2494662e045dcde2e9124c241 **
* New upstream version 2.0.0
-- Guido Günther <agx@sigxcpu.org> Wed, 02 Jan 2019 10:02:04 +0100
virt-manager (1:2.0.0-1) unstable; urgency=medium
* New upstream version 2.0.0 (Closes: #916904)
* Builds here without testsuit failures (Closes: #917673)
* Rediff patches.
Drop Xen related patches synce pygrub and hvmloader aren't hardcoded
anymore.
* Switch to python3
* Don't ship gconf conversion anymore.
We've done so for two releases.
* virtinst: We don't ship virt-image anymore (Closes: #883789)
* Depend on genisoimage.
Thanks to Christian Ehrhardt (Closes: #895594)
-- Guido Günther <agx@sigxcpu.org> Sun, 06 Jan 2019 15:55:43 +0100
virt-manager (1:1.5.1-1) unstable; urgency=medium
...
...
debian/control
View file @
d8ba6d61
...
...
@@ -61,6 +61,8 @@ Depends:
${shlibs:Depends},
${misc:Depends},
e2fsprogs,
genisoimage,
python3,
python3-libvirt (>= 0.4.6),
python3-gi,
python3-libxml2, python3-requests,
...
...
@@ -72,5 +74,5 @@ Description: Programs to create and clone virtual machines
.
virt-install: provision new virtual machines
virt-clone: clone existing virtual machines
virt-
image: create virtual machines fr
om
an
image descri
ption
virt-
xml: edit libvirt XML using c
om
m
an
d line o
ption
s.
virt-convert: convert virtual machines between formats
debian/patches/Use-usr-bin-python.patch
View file @
d8ba6d61
...
...
@@ -28,12 +28,12 @@ index 2e1215c..17c497f 100755
import fnmatch
import os
diff --git a/virt-clone b/virt-clone
index d1eedee..
7ef6727
100755
index d1eedee..
823990d
100755
--- a/virt-clone
+++ b/virt-clone
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin
python3
+#!/usr/bin
/
python3
#
# Copyright(c) FUJITSU Limited 2007.
#
...
...