forked from pool/libguestfs
e6dbb72b99
- update to version 1.38.0: * Virt-builder-repository is a new tool allowing end users to create and update virt-builder repositories. (fate#318952) * Virt-rescue has been substantially rewritten, implementing job control, -m and -i options, escape keys, etc. * Virt-builder planner has been improved so that faster and more efficient build plans are chosen for complex cases, especially when either the tmpdir or output is on networked storage. * Virt-customize now sets a random /etc/machine-id for Linux guests, if one is not already set. * Virt-df now works correctly on filesystems with block sizes smaller than 1K. * Virt-dib has further compatibility enhancements with diskimage-builder. * Virt-sysprep removes "DHCP_HOSTNAME" from ifcfg-* files. * Virt-resize now correctly copies GPT partition attributes from the source to the destination. (bsc#1074585) * Bash tab completion implemented or enhanced for: virt-win-reg, virt-v2v-copy-to-local. * Both virt-v2v and virt-p2v are now able to pass through the source CPU vendor, model and topology. * Virt-v2v now supports encrypted guests. * Virt-v2v now detects the special Linux Xen PV-only kernels correctly * Virt-v2v -o glance now generates the right properties for UEFI guests * Virt-v2v -o null now avoids spooling the guest to a temporary file, instead it writes to the qemu "null block device". This makes it faster and use almost no disk space. * Virt-v2v -i libvirtxml can now open network disks over http or https. * Virt-v2v will now give a warning about host passthrough devices * Inspection support was rewritten in OCaml and included inside the daemon. This makes inspection considerably faster, more robust and more easily extensible in future. * The libguestfs API is now thread-safe (although not parallel). You can call APIs on the same handle from multiple threads without needing to take a lock. - Removed patches: 531316cc-build-improve-and-simplify-distro-detection.patch 9d25b4e5-python-add-simple-wrappers-for-PyObject-string-funct.patch f3f99a09-python-use-right-func-when-PyString_FromStringAndSiz.patch - Added patches: d0e5a819-python-Fix-missing-additional-backslashes.patch OBS-URL: https://build.opensuse.org/request/show/574839 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libguestfs?expand=0&rev=421
31 lines
747 B
Diff
31 lines
747 B
Diff
From d0e5a819e8b16b38c22cb7309e88bf49a6fdcc4a Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Fri, 9 Feb 2018 15:55:38 +0000
|
|
Subject: [PATCH] python: Fix missing & additional backslashes which broke
|
|
python sdist.
|
|
|
|
Fixes commit e6c89f96316c3eda6049d0c3ed4de4cda6f4f973.
|
|
---
|
|
python/Makefile.am | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/python/Makefile.am b/python/Makefile.am
|
|
index 5d2716e20..ef500d65d 100644
|
|
--- a/python/Makefile.am
|
|
+++ b/python/Makefile.am
|
|
@@ -101,9 +101,9 @@ stamp-extra-files: \
|
|
cleanups.h \
|
|
config.h \
|
|
guestfs-internal-all.h \
|
|
- guestfs-utils.h
|
|
+ guestfs-utils.h \
|
|
ignore-value.h \
|
|
- utils.c \
|
|
+ utils.c
|
|
touch $@
|
|
|
|
config.h:
|
|
--
|
|
2.15.1
|
|
|