commit 8110c07286b89997b5833c34b0e14792c309fb76 Author: MSVSphere Packaging Team Date: Tue Nov 26 17:03:46 2024 +0300 import libguestfs-1.52.2-4.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7844c5d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +SOURCES/libguestfs-1.52.2.tar.gz +SOURCES/libguestfs.keyring diff --git a/.libguestfs.metadata b/.libguestfs.metadata new file mode 100644 index 0000000..b9d3ce0 --- /dev/null +++ b/.libguestfs.metadata @@ -0,0 +1,2 @@ +83f002eeda4a818c0e90f444c7b48ccf4a7428cc SOURCES/libguestfs-1.52.2.tar.gz +1bbc40f501a7fef9eef2a39b701a71aee2fea7c4 SOURCES/libguestfs.keyring diff --git a/SOURCES/0001-daemon-Reimplement-partition-GPT-functions-using-sfd.patch b/SOURCES/0001-daemon-Reimplement-partition-GPT-functions-using-sfd.patch new file mode 100644 index 0000000..e7d54af --- /dev/null +++ b/SOURCES/0001-daemon-Reimplement-partition-GPT-functions-using-sfd.patch @@ -0,0 +1,657 @@ +From 1638cd9e58161147bd2f440b6e28bf7365fc5688 Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Fri, 10 May 2024 13:27:22 +0100 +Subject: [PATCH] daemon: Reimplement partition GPT functions using sfdisk + +sfdisk can now do everything with GPT that sgdisk was needed for +before. In particular we are able to reimplement the following +functions using sfdisk: + +- part_set_disk_guid (replace with sfdisk --disk-id) +- part_get_disk_guid +- part_set_disk_guid_random +- part_set_gpt_attributes (sfdisk --part-attrs) +- part_get_gpt_attributes +- part_set_gpt_guid (sfdisk --part-uuid) +- part_get_gpt_guid +- part_set_gpt_type (sfdisk --part-type) +- part_get_gpt_type + +This allows us to drop the requirement for gdisk in many cases. + +There is only one API remaining which requires gdisk, part_expand_gpt, +which we do not use in our tools. In a prior commit I already moved +this solitary function to a new source file (daemon/gdisk.c). + +Fixes: https://issues.redhat.com/browse/RHEL-35998 +(cherry picked from commit c6c266a85d76dc2db90460202415790c585ac625) +--- + .gitignore | 1 + + daemon/Makefile.am | 3 + + daemon/inspect_fs_windows.ml | 2 +- + daemon/listfs.ml | 2 +- + daemon/parted.c | 144 ----------------------------- + daemon/parted.ml | 92 +------------------ + daemon/sfdisk.ml | 172 +++++++++++++++++++++++++++++++++++ + generator/actions_core.ml | 24 ++--- + 8 files changed, 189 insertions(+), 251 deletions(-) + create mode 100644 daemon/sfdisk.ml + +diff --git a/.gitignore b/.gitignore +index 00e59fb37..2fc52e843 100644 +--- a/.gitignore ++++ b/.gitignore +@@ -108,6 +108,7 @@ Makefile.in + /daemon/parted.mli + /daemon/realpath.mli + /daemon/rpm.mli ++/daemon/sfdisk.mli + /daemon/stamp-guestfsd.pod + /daemon/statvfs.mli + /daemon/structs-cleanups.c +diff --git a/daemon/Makefile.am b/daemon/Makefile.am +index 04370b7cd..bc74b6ef7 100644 +--- a/daemon/Makefile.am ++++ b/daemon/Makefile.am +@@ -59,6 +59,7 @@ generator_built = \ + parted.mli \ + realpath.mli \ + rpm.mli \ ++ sfdisk.mli \ + statvfs.mli \ + structs.ml \ + structs.mli +@@ -306,6 +307,7 @@ SOURCES_MLI = \ + parted.mli \ + realpath.mli \ + rpm.mli \ ++ sfdisk.mli \ + statvfs.mli \ + structs.mli \ + sysroot.mli \ +@@ -337,6 +339,7 @@ SOURCES_ML = \ + md.ml \ + mount.ml \ + mount_utils.ml \ ++ sfdisk.ml \ + parted.ml \ + listfs.ml \ + realpath.ml \ +diff --git a/daemon/inspect_fs_windows.ml b/daemon/inspect_fs_windows.ml +index 5d29c3a46..6537481e1 100644 +--- a/daemon/inspect_fs_windows.ml ++++ b/daemon/inspect_fs_windows.ml +@@ -419,7 +419,7 @@ and map_registry_disk_blob_gpt partitions blob = + let typ = Parted.part_get_parttype device in + if typ <> "gpt" then false + else ( +- let guid = Parted.part_get_gpt_guid device partnum in ++ let guid = Sfdisk.part_get_gpt_guid device partnum in + String.lowercase_ascii guid = blob_guid + ) + ) partitions in +diff --git a/daemon/listfs.ml b/daemon/listfs.ml +index 4cc3c437a..93c1e7145 100644 +--- a/daemon/listfs.ml ++++ b/daemon/listfs.ml +@@ -114,7 +114,7 @@ and is_partition_can_hold_filesystem partition = + else if is_mbr then + true + else ( +- let gpt_type = Parted.part_get_gpt_type device partnum in ++ let gpt_type = Sfdisk.part_get_gpt_type device partnum in + match gpt_type with + (* Windows Logical Disk Manager metadata partition. *) + | "5808C8AA-7E8F-42E0-85D2-E1E90434CFB3" +diff --git a/daemon/parted.c b/daemon/parted.c +index 9af5556c9..0f19baae5 100644 +--- a/daemon/parted.c ++++ b/daemon/parted.c +@@ -456,58 +456,6 @@ do_part_set_mbr_id (const char *device, int partnum, int idbyte) + return 0; + } + +-int +-do_part_set_gpt_type (const char *device, int partnum, const char *guid) +-{ +- if (partnum <= 0) { +- reply_with_error ("partition number must be >= 1"); +- return -1; +- } +- +- CLEANUP_FREE char *typecode = NULL; +- if (asprintf (&typecode, "%i:%s", partnum, guid) == -1) { +- reply_with_perror ("asprintf"); +- return -1; +- } +- +- CLEANUP_FREE char *err = NULL; +- int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR, +- "sgdisk", device, "-t", typecode, NULL); +- +- if (r == -1) { +- reply_with_error ("%s %s -t %s: %s", "sgdisk", device, typecode, err); +- return -1; +- } +- +- return 0; +-} +- +-int +-do_part_set_gpt_guid (const char *device, int partnum, const char *guid) +-{ +- if (partnum <= 0) { +- reply_with_error ("partition number must be >= 1"); +- return -1; +- } +- +- CLEANUP_FREE char *typecode = NULL; +- if (asprintf (&typecode, "%i:%s", partnum, guid) == -1) { +- reply_with_perror ("asprintf"); +- return -1; +- } +- +- CLEANUP_FREE char *err = NULL; +- int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR, +- "sgdisk", device, "-u", typecode, NULL); +- +- if (r == -1) { +- reply_with_error ("%s %s -u %s: %s", "sgdisk", device, typecode, err); +- return -1; +- } +- +- return 0; +-} +- + char * + do_part_get_name (const char *device, int partnum) + { +@@ -564,95 +512,3 @@ do_part_get_name (const char *device, int partnum) + return NULL; + } + } +- +-static char * +-extract_uuid (const char *value) +-{ +- /* The value contains only valid GUID characters */ +- const size_t value_len = strspn (value, "-0123456789ABCDEF"); +- +- char *ret = malloc (value_len + 1); +- if (ret == NULL) { +- reply_with_perror ("malloc"); +- return NULL; +- } +- +- memcpy (ret, value, value_len); +- ret[value_len] = '\0'; +- return ret; +-} +- +-char * +-do_part_get_disk_guid (const char *device) +-{ +- const char *pattern = "Disk identifier (GUID):"; +- size_t i; +- +- CLEANUP_FREE char *err = NULL; +- int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR, +- "sgdisk", device, "-p", NULL); +- if (r == -1) { +- reply_with_error ("%s %s -p: %s", "sgdisk", device, err); +- return NULL; +- } +- +- CLEANUP_FREE_STRING_LIST char **lines = split_lines (err); +- if (lines == NULL) { +- reply_with_error ("'%s %s -p' returned no output", +- "sgdisk", device); +- return NULL; +- } +- +- for (i = 0; lines[i] != NULL; ++i) { +- if (STRPREFIX (lines[i], pattern)) { +- char *value = lines[i] + strlen (pattern); +- +- /* Skip any leading whitespace */ +- value += strspn (value, " \t"); +- +- /* Extract the actual information from the field. */ +- char *ret = extract_uuid (value); +- if (ret == NULL) { +- /* The extraction function already sends the error. */ +- return NULL; +- } +- +- return ret; +- } +- } +- +- /* If we got here it means we didn't find the field */ +- reply_with_error ("sgdisk output did not contain disk GUID. " +- "See LIBGUESTFS_DEBUG output for more details"); +- return NULL; +-} +- +-int +-do_part_set_disk_guid (const char *device, const char *guid) +-{ +- CLEANUP_FREE char *err = NULL; +- int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR, +- "sgdisk", device, "-U", guid, NULL); +- +- if (r == -1) { +- reply_with_error ("%s %s -U %s: %s", "sgdisk", device, guid, err); +- return -1; +- } +- +- return 0; +-} +- +-int +-do_part_set_disk_guid_random (const char *device) +-{ +- CLEANUP_FREE char *err = NULL; +- int r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR, +- "sgdisk", device, "-U", "R", NULL); +- +- if (r == -1) { +- reply_with_error ("%s %s -U R: %s", "sgdisk", device, err); +- return -1; +- } +- +- return 0; +-} +diff --git a/daemon/parted.ml b/daemon/parted.ml +index c9e55890b..f8f142bc5 100644 +--- a/daemon/parted.ml ++++ b/daemon/parted.ml +@@ -25,18 +25,6 @@ open Utils + + include Structs + +-let part_get_mbr_id device partnum = +- if partnum <= 0 then +- failwith "partition number must be >= 1"; +- +- udev_settle (); +- let out = +- command "sfdisk" ["--part-type"; device; string_of_int partnum] in +- udev_settle (); +- +- (* It's printed in hex, possibly with a leading space. *) +- sscanf out " %x" identity +- + (* This is almost equivalent to print_partition_table in the C code. The + * difference is that here we enforce the "BYT;" header internally. + *) +@@ -110,7 +98,7 @@ let part_get_parttype device = + + let part_get_mbr_part_type device partnum = + let parttype = part_get_parttype device in +- let mbr_id = part_get_mbr_id device partnum in ++ let mbr_id = Sfdisk.part_get_mbr_id device partnum in + + (* 0x05 - extended partition. + * 0x0f - extended partition using BIOS INT 13h extensions. +@@ -120,81 +108,3 @@ let part_get_mbr_part_type device partnum = + | "msdos", (1|2|3|4), _ -> "primary" + | "msdos", _, _ -> "logical" + | _, _, _ -> "primary" +- +-let part_set_gpt_attributes device partnum attributes = +- if partnum <= 0 then failwith "partition number must be >= 1"; +- +- udev_settle (); +- +- let arg = sprintf "%d:=:%LX" partnum attributes in +- let r, _, err = +- commandr ~fold_stdout_on_stderr:true +- "sgdisk" [ device; "-A"; arg ] in +- if r <> 0 then +- failwithf "sgdisk: %s" err; +- +- udev_settle () +- +-let extract_guid value = +- (* The value contains only valid GUID characters. *) +- String.sub value 0 (String.span value "-0123456789ABCDEF") +- +-let extract_hex value = +- (* The value contains only valid numeric characters. *) +- let str = String.sub value 0 (String.span value "0123456789ABCDEF") in +- Int64.of_string ("0x" ^ str) +- +-let sgdisk_info_extract_field device partnum field extractor = +- if partnum <= 0 then failwith "partition number must be >= 1"; +- +- udev_settle (); +- +- let r, _, err = +- commandr ~fold_stdout_on_stderr:true +- "sgdisk" [ device; "-i"; string_of_int partnum ] in +- if r <> 0 then +- failwithf "getting %S: sgdisk: %s" field err; +- +- udev_settle (); +- +- let err = String.trim err in +- let lines = String.nsplit "\n" err in +- +- (* Parse the output of sgdisk -i: +- * Partition GUID code: 21686148-6449-6E6F-744E-656564454649 (BIOS boot partition) +- * Partition unique GUID: 19AEC5FE-D63A-4A15-9D37-6FCBFB873DC0 +- * First sector: 2048 (at 1024.0 KiB) +- * Last sector: 411647 (at 201.0 MiB) +- * Partition size: 409600 sectors (200.0 MiB) +- * Attribute flags: 0000000000000000 +- * Partition name: 'EFI System Partition' +- *) +- let field_len = String.length field in +- let rec loop = function +- | [] -> +- failwithf "%s: sgdisk output did not contain '%s'" device field +- | line :: _ when String.is_prefix line field && +- String.length line >= field_len + 2 && +- line.[field_len] = ':' -> +- let value = +- String.sub line (field_len+1) (String.length line - field_len - 1) in +- +- (* Skip any whitespace after the colon. *) +- let value = String.triml value in +- +- (* Extract the value. *) +- extractor value +- +- | _ :: lines -> loop lines +- in +- loop lines +- +-let rec part_get_gpt_type device partnum = +- sgdisk_info_extract_field device partnum "Partition GUID code" +- extract_guid +-and part_get_gpt_guid device partnum = +- sgdisk_info_extract_field device partnum "Partition unique GUID" +- extract_guid +-and part_get_gpt_attributes device partnum = +- sgdisk_info_extract_field device partnum "Attribute flags" +- extract_hex +diff --git a/daemon/sfdisk.ml b/daemon/sfdisk.ml +new file mode 100644 +index 000000000..2aea399aa +--- /dev/null ++++ b/daemon/sfdisk.ml +@@ -0,0 +1,172 @@ ++(* guestfs-inspection ++ * Copyright (C) 2009-2023 Red Hat Inc. ++ * ++ * This program is free software; you can redistribute it and/or modify ++ * it under the terms of the GNU General Public License as published by ++ * the Free Software Foundation; either version 2 of the License, or ++ * (at your option) any later version. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License along ++ * with this program; if not, write to the Free Software Foundation, Inc., ++ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ++ *) ++ ++open Scanf ++open Printf ++ ++open Std_utils ++ ++open Utils ++ ++include Structs ++ ++let part_get_mbr_id device partnum = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ udev_settle (); ++ let out = ++ command "sfdisk" ["--part-type"; device; string_of_int partnum] in ++ udev_settle (); ++ ++ (* It's printed in hex, possibly with a leading space. *) ++ sscanf out " %x" identity ++ ++let part_get_gpt_type device partnum = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ udev_settle (); ++ let out = ++ command "sfdisk" ["--part-type"; device; string_of_int partnum] in ++ udev_settle (); ++ ++ String.trimr out ++ ++let part_set_gpt_type device partnum typ = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ udev_settle (); ++ let cmd = ++ sprintf "sfdisk --part-type %s %d %s" ++ (quote device) partnum (quote typ) in ++ if verbose () then eprintf "%s\n%!" cmd; ++ if Sys.command cmd <> 0 then failwith "sfdisk --part-type failed"; ++ udev_settle () ++ ++let part_get_gpt_guid device partnum = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ udev_settle (); ++ let out = ++ command "sfdisk" ["--part-uuid"; device; string_of_int partnum] in ++ udev_settle (); ++ ++ String.trimr out ++ ++let part_set_gpt_guid device partnum guid = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ udev_settle (); ++ let cmd = ++ sprintf "sfdisk --part-uuid %s %d %s" ++ (quote device) partnum (quote guid) in ++ if verbose () then eprintf "%s\n%!" cmd; ++ if Sys.command cmd <> 0 then failwith "sfdisk --part-uuid failed"; ++ udev_settle () ++ ++let part_get_disk_guid device = ++ udev_settle (); ++ let out = ++ command "sfdisk" ["--disk-id"; device] in ++ udev_settle (); ++ ++ String.trimr out ++ ++let part_set_disk_guid device guid = ++ udev_settle (); ++ let cmd = ++ sprintf "sfdisk --disk-id %s %s" ++ (quote device) (quote guid) in ++ if verbose () then eprintf "%s\n%!" cmd; ++ if Sys.command cmd <> 0 then failwith "sfdisk --disk-id failed"; ++ udev_settle () ++ ++let part_set_disk_guid_random device = ++ let random_uuid = Utils.get_random_uuid () in ++ let random_uuid = String.trimr random_uuid in ++ part_set_disk_guid device random_uuid ++ ++let part_get_gpt_attributes device partnum = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ udev_settle (); ++ let out = ++ command "sfdisk" ["--part-attrs"; device; string_of_int partnum] in ++ udev_settle (); ++ ++ (* The output is a whitespace-separated list of: ++ * "RequiredPartition" (equivalent to bit 0) ++ * "NoBlockIOProtocol" (equivalent to bit 1) ++ * "LegacyBIOSBootable" (equivalent to bit 2) ++ * "48", "49", ..., "63" ++ *) ++ let out = String.trimr out in ++ let attrs = String.nsplit " " out in ++ List.fold_left ( ++ fun bits attr -> ++ let bit = ++ match attr with ++ | "" -> -1 ++ | "RequiredPartition" -> 0 ++ | "NoBlockIOProtocol" -> 1 ++ | "LegacyBIOSBootable" -> 2 ++ | n -> int_of_string n in ++ if bit >= 0 then ++ Int64.logor bits (Int64.shift_left 1_L bit) ++ else ++ bits ++ ) 0_L attrs ++ ++let part_set_gpt_attributes device partnum attrs = ++ if partnum <= 0 then ++ failwith "partition number must be >= 1"; ++ ++ (* The input to sfdisk --part-attrs is a comma-separated list of ++ * attribute names or bit positions. Note you have to use the ++ * names, you can't use "0", "1" or "2". ++ *) ++ let s = ref [] in ++ let rec loop i = ++ let b = Int64.logand attrs (Int64.shift_left 1_L i) <> Int64.zero in ++ (match i with ++ | 0 -> if b then List.push_front "RequiredPartition" s ++ | 1 -> if b then List.push_front "NoBlockIOProtocol" s ++ | 2 -> if b then List.push_front "LegacyBIOSBootable" s ++ | i when i >= 3 && i <= 47 -> ++ if b then ++ failwith "bits 3..47 are reserved and cannot be set" ++ | i when i >= 48 && i <= 63 -> ++ if b then List.push_front (string_of_int i) s ++ | _ -> assert false ++ ); ++ if i < 63 then loop (i+1) ++ in ++ loop 0; ++ ++ udev_settle (); ++ let cmd = ++ sprintf "sfdisk --part-attrs %s %d %s" ++ (quote device) partnum (quote (String.concat "," !s)) in ++ if verbose () then eprintf "%s\n%!" cmd; ++ if Sys.command cmd <> 0 then failwith "sfdisk --part-attrs failed"; ++ udev_settle () +diff --git a/generator/actions_core.ml b/generator/actions_core.ml +index 68627078f..46ef1422f 100644 +--- a/generator/actions_core.ml ++++ b/generator/actions_core.ml +@@ -5302,7 +5302,7 @@ See also C." }; + { defaults with + name = "part_get_mbr_id"; added = (1, 3, 2); + style = RInt "idbyte", [String (Device, "device"); Int "partnum"], []; +- impl = OCaml "Parted.part_get_mbr_id"; ++ impl = OCaml "Sfdisk.part_get_mbr_id"; + fish_output = Some FishOutputHexadecimal; + tests = [ + InitEmpty, Always, TestResult ( +@@ -8128,7 +8128,7 @@ group with GUID C." }; + { defaults with + name = "part_set_gpt_type"; added = (1, 21, 1); + style = RErr, [String (Device, "device"); Int "partnum"; String (GUID, "guid")], []; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_set_gpt_type"; + tests = [ + InitGPT, Always, TestLastFail ( + [["part_set_gpt_type"; "/dev/sda"; "1"; "f"]]), []; +@@ -8150,8 +8150,7 @@ for a useful list of type GUIDs." }; + { defaults with + name = "part_get_gpt_type"; added = (1, 21, 1); + style = RString (RPlainString, "guid"), [String (Device, "device"); Int "partnum"], []; +- impl = OCaml "Parted.part_get_gpt_type"; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_get_gpt_type"; + tests = [ + InitGPT, Always, TestResultString ( + [["part_set_gpt_type"; "/dev/sda"; "1"; +@@ -8166,8 +8165,7 @@ Return the type GUID of numbered GPT partition C." }; + { defaults with + name = "part_set_gpt_attributes"; added = (1, 21, 1); + style = RErr, [String (Device, "device"); Int "partnum"; Int64 "attributes"], []; +- impl = OCaml "Parted.part_set_gpt_attributes"; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_set_gpt_attributes"; + tests = [ + InitGPT, Always, TestResult ( + [["part_set_gpt_attributes"; "/dev/sda"; "1"; +@@ -8186,8 +8184,7 @@ for a useful list of partition attributes." }; + { defaults with + name = "part_get_gpt_attributes"; added = (1, 21, 1); + style = RInt64 "attributes", [String (Device, "device"); Int "partnum"], []; +- impl = OCaml "Parted.part_get_gpt_attributes"; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_get_gpt_attributes"; + tests = [ + InitGPT, Always, TestResult ( + [["part_set_gpt_attributes"; "/dev/sda"; "1"; +@@ -8987,7 +8984,7 @@ Recover bad superblocks from good copies." }; + { defaults with + name = "part_set_gpt_guid"; added = (1, 29, 25); + style = RErr, [String (Device, "device"); Int "partnum"; String (GUID, "guid")], []; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_set_gpt_guid"; + tests = [ + InitGPT, Always, TestLastFail ( + [["part_set_gpt_guid"; "/dev/sda"; "1"; "f"]]), []; +@@ -9006,8 +9003,7 @@ valid GUID." }; + { defaults with + name = "part_get_gpt_guid"; added = (1, 29, 25); + style = RString (RPlainString, "guid"), [String (Device, "device"); Int "partnum"], []; +- impl = OCaml "Parted.part_get_gpt_guid"; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_get_gpt_guid"; + tests = [ + InitGPT, Always, TestResultString ( + [["part_set_gpt_guid"; "/dev/sda"; "1"; +@@ -9206,7 +9202,7 @@ This is the internal call which implements C." }; + { defaults with + name = "part_set_disk_guid"; added = (1, 33, 2); + style = RErr, [String (Device, "device"); String (GUID, "guid")], []; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_set_disk_guid"; + tests = [ + InitGPT, Always, TestLastFail ( + [["part_set_disk_guid"; "/dev/sda"; "f"]]), []; +@@ -9225,7 +9221,7 @@ or if C is not a valid GUID." }; + { defaults with + name = "part_get_disk_guid"; added = (1, 33, 2); + style = RString (RPlainString, "guid"), [String (Device, "device")], []; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_get_disk_guid"; + tests = [ + InitGPT, Always, TestResultString ( + [["part_set_disk_guid"; "/dev/sda"; +@@ -9241,7 +9237,7 @@ Behaviour is undefined for other partition types." }; + { defaults with + name = "part_set_disk_guid_random"; added = (1, 33, 2); + style = RErr, [String (Device, "device")], []; +- optional = Some "gdisk"; ++ impl = OCaml "Sfdisk.part_set_disk_guid_random"; + tests = [ + InitGPT, Always, TestRun ( + [["part_set_disk_guid_random"; "/dev/sda"]]), []; +-- +2.43.0 + diff --git a/SOURCES/0002-daemon-Fix-parsing-in-part_get_gpt_attributes.patch b/SOURCES/0002-daemon-Fix-parsing-in-part_get_gpt_attributes.patch new file mode 100644 index 0000000..8a2600a --- /dev/null +++ b/SOURCES/0002-daemon-Fix-parsing-in-part_get_gpt_attributes.patch @@ -0,0 +1,134 @@ +From 8539b763639cbe80e4b248455c0c28bd8ced9cbe Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Fri, 28 Jun 2024 09:42:20 +0100 +Subject: [PATCH] daemon: Fix parsing in part_get_gpt_attributes + +The actual output of sfdisk --part-attrs is bizarre and doesn't match +the documentation. After looking at the source from util-linux, fix +the parsing to match what sfdisk produces. + +Reported-by: Yongkui Guo +Fixes: commit c6c266a85d76dc2db90460202415790c585ac625 +Fixes: https://issues.redhat.com/browse/RHEL-35998 +(cherry picked from commit 24c1f7b03aab6343e6c826250269e98a6060d762) +--- + daemon/sfdisk.ml | 80 +++++++++++++++++++++++++++++++-------- + generator/actions_core.ml | 4 +- + 2 files changed, 66 insertions(+), 18 deletions(-) + +diff --git a/daemon/sfdisk.ml b/daemon/sfdisk.ml +index 2aea399aa..8c8ed2305 100644 +--- a/daemon/sfdisk.ml ++++ b/daemon/sfdisk.ml +@@ -114,28 +114,76 @@ let part_get_gpt_attributes device partnum = + command "sfdisk" ["--part-attrs"; device; string_of_int partnum] in + udev_settle (); + ++ let out = String.trimr out in ++ + (* The output is a whitespace-separated list of: ++ * + * "RequiredPartition" (equivalent to bit 0) + * "NoBlockIOProtocol" (equivalent to bit 1) + * "LegacyBIOSBootable" (equivalent to bit 2) +- * "48", "49", ..., "63" ++ * "GUID:" followed by a comma-separated list of bit numbers ++ * ++ * eg: "LegacyBIOSBootable RequiredPartition GUID:48,49" ++ * ++ * So this is a massive PITA to parse. + *) +- let out = String.trimr out in +- let attrs = String.nsplit " " out in +- List.fold_left ( +- fun bits attr -> ++ let rec loop out acc = ++ let len = String.length out in ++ eprintf "part_get_gpt_attributes: %S [%s]\n%!" ++ out (String.concat "," (List.map string_of_int acc)); ++ if len = 0 then ( ++ acc ++ ) ++ else if Char.isspace out.[0] then ( ++ let out = String.triml out in ++ loop out acc ++ ) ++ else if out.[0] = ',' then ( ++ let out = String.sub out 1 (len-1) in ++ loop out acc ++ ) ++ else if String.is_prefix out "RequiredPartition" then ( ++ let acc = 0 :: acc in ++ let out = String.sub out 17 (len-17) in ++ loop out acc ++ ) ++ else if String.is_prefix out "NoBlockIOProtocol" then ( ++ let acc = 1 :: acc in ++ let out = String.sub out 17 (len-17) in ++ loop out acc ++ ) ++ else if String.is_prefix out "LegacyBIOSBootable" then ( ++ let acc = 2 :: acc in ++ let out = String.sub out 18 (len-18) in ++ loop out acc ++ ) ++ else if String.is_prefix out "GUID:" then ( ++ let out = String.sub out 5 (len-5) in ++ loop out acc ++ ) ++ else if Char.isdigit out.[0] then ( ++ let n = String.span out "0123456789" in ++ let num, out = String.break n out in + let bit = +- match attr with +- | "" -> -1 +- | "RequiredPartition" -> 0 +- | "NoBlockIOProtocol" -> 1 +- | "LegacyBIOSBootable" -> 2 +- | n -> int_of_string n in +- if bit >= 0 then +- Int64.logor bits (Int64.shift_left 1_L bit) +- else +- bits +- ) 0_L attrs ++ try int_of_string num ++ with Failure _ -> ++ failwithf "part_get_gpt_attributes: cannot parse number %S" num in ++ let acc = bit :: acc in ++ loop out acc ++ ) ++ else ( ++ failwithf "part_get_gpt_attributes: cannot parse %S" out ++ ) ++ in ++ let attrs = loop out [] in ++ ++ let bits = ++ List.fold_left ( ++ fun bits bit -> Int64.logor bits (Int64.shift_left 1_L bit) ++ ) 0_L attrs in ++ eprintf "part_get_gpt_attributes: [%s] -> %Ld\n%!" ++ (String.concat "," (List.map string_of_int attrs)) bits; ++ bits + + let part_set_gpt_attributes device partnum attrs = + if partnum <= 0 then +diff --git a/generator/actions_core.ml b/generator/actions_core.ml +index 46ef1422f..ef9096772 100644 +--- a/generator/actions_core.ml ++++ b/generator/actions_core.ml +@@ -8188,9 +8188,9 @@ for a useful list of partition attributes." }; + tests = [ + InitGPT, Always, TestResult ( + [["part_set_gpt_attributes"; "/dev/sda"; "1"; +- "0"]; ++ (* bits 0, 2, 48 and 49 set *) "844424930131973"]; + ["part_get_gpt_attributes"; "/dev/sda"; "1"]], +- "ret == 0"), []; ++ "ret == 844424930131973"), []; + ]; + shortdesc = "get the attribute flags of a GPT partition"; + longdesc = "\ +-- +2.43.0 + diff --git a/SOURCES/0003-RHEL-Disable-unsupported-remote-drive-protocols-RHBZ.patch b/SOURCES/0003-RHEL-Disable-unsupported-remote-drive-protocols-RHBZ.patch new file mode 100644 index 0000000..89340f4 --- /dev/null +++ b/SOURCES/0003-RHEL-Disable-unsupported-remote-drive-protocols-RHBZ.patch @@ -0,0 +1,611 @@ +From 75cdb13260f79a34a8b65059feb098f32738c8a4 Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Mon, 29 Jul 2013 14:47:56 +0100 +Subject: [PATCH] RHEL: Disable unsupported remote drive protocols + (RHBZ#962113). + +This disables support for unsupported remote drive protocols: + + * ftp + * ftps + * http + * https + * tftp + * gluster + * iscsi + * sheepdog + * ssh + +Note 'nbd' is not disabled, and of course 'file' works. + +We hope to gradually add some of these back over the lifetime of RHEL. + +(cherry picked from commit 66b9338e3d786db28fbd853d397741c3ceb19352) +--- + docs/guestfs-testing.pod | 20 ----- + fish/guestfish.pod | 66 ++-------------- + fish/test-add-uri.sh | 32 -------- + generator/actions_core.ml | 50 +------------ + lib/drives.c | 8 ++ + lib/guestfs.pod | 100 ------------------------- + tests/disks/test-qemu-drive-libvirt.sh | 28 ------- + tests/disks/test-qemu-drive.sh | 60 --------------- + 8 files changed, 16 insertions(+), 348 deletions(-) + +diff --git a/docs/guestfs-testing.pod b/docs/guestfs-testing.pod +index f5c09df6e..ee4b26d6b 100644 +--- a/docs/guestfs-testing.pod ++++ b/docs/guestfs-testing.pod +@@ -109,26 +109,6 @@ image. To exit, type C. + If you get an error, try enabling debugging (add C<-v> to the command + line). Also make sure that L succeeds. + +-=head2 Try to open a remote guest image with guestfish. +- +-You may also have to disable libvirt by setting this: +- +- export LIBGUESTFS_BACKEND=direct +- +-If you have a disk image available over HTTP/FTP, try to open it. +- +- guestfish --ro -i --format=raw -a http://www.example.com/disk.img +- +-For SSH you will need to make sure that ssh-agent is set up so you +-don't need a password to log in to the remote machine. Then a command +-similar to this should work: +- +- guestfish --ro -i --format=raw \ +- -a ssh://remote.example.com/path/to/disk.img +- +-If you get an error, try enabling debugging (add C<-v> to the command +-line). Also make sure that L succeeds. +- + =head2 Run virt-alignment-scan on all your guests. + + Run L on guests or disk images: +diff --git a/fish/guestfish.pod b/fish/guestfish.pod +index 492aa7163..33fc8b2c8 100644 +--- a/fish/guestfish.pod ++++ b/fish/guestfish.pod +@@ -131,9 +131,9 @@ To list what is available do: + + =head2 Remote drives + +-Access a remote disk using ssh: ++Access a remote disk using NBD: + +- guestfish -a ssh://example.com/path/to/disk.img ++ guestfish -a nbd://example.com + + =head2 Remote control + +@@ -1129,12 +1129,12 @@ L>. + On the command line, you can use the I<-a> option to add network + block devices using a URI-style format, for example: + +- guestfish -a ssh://root@example.com/disk.img ++ guestfish -a nbd://example.com + + URIs I be used with the L command. The equivalent + command using the API directly is: + +- > add /disk.img protocol:ssh server:tcp:example.com username:root ++ > add /disk.img protocol:nbd server:tcp:example.com + + The possible I<-a URI> formats are described below. + +@@ -1144,40 +1144,6 @@ The possible I<-a URI> formats are described below. + + Add the local disk image (or device) called F. + +-=head2 B<-a ftp://[user@]example.com[:port]/disk.img> +- +-=head2 B<-a ftps://[user@]example.com[:port]/disk.img> +- +-=head2 B<-a http://[user@]example.com[:port]/disk.img> +- +-=head2 B<-a https://[user@]example.com[:port]/disk.img> +- +-=head2 B<-a tftp://[user@]example.com[:port]/disk.img> +- +-Add a disk located on a remote FTP, HTTP or TFTP server. +- +-The equivalent API command would be: +- +- > add /disk.img protocol:(ftp|...) server:tcp:example.com +- +-=head2 B<-a gluster://example.com[:port]/volname/image> +- +-Add a disk image located on GlusterFS storage. +- +-The server is the one running C, and may be C. +- +-The equivalent API command would be: +- +- > add volname/image protocol:gluster server:tcp:example.com +- +-=head2 B<-a iscsi://example.com[:port]/target-iqn-name[/lun]> +- +-Add a disk located on an iSCSI server. +- +-The equivalent API command would be: +- +- > add target-iqn-name/lun protocol:iscsi server:tcp:example.com +- + =head2 B<-a nbd://example.com[:port]> + + =head2 B<-a nbd://example.com[:port]/exportname> +@@ -1212,35 +1178,13 @@ The equivalent API command would be: + + > add pool/disk protocol:rbd server:tcp:example.com:port + +-=head2 B<-a sheepdog://[example.com[:port]]/volume/image> +- +-Add a disk image located on a Sheepdog volume. +- +-The server name is optional. Although libguestfs and Sheepdog +-supports multiple servers, only at most one server can be specified +-when using this URI syntax. +- +-The equivalent API command would be: +- +- > add volume protocol:sheepdog [server:tcp:example.com] +- +-=head2 B<-a ssh://[user@]example.com[:port]/disk.img> +- +-Add a disk image located on a remote server, accessed using the Secure +-Shell (ssh) SFTP protocol. SFTP is supported out of the box by all +-major SSH servers. +- +-The equivalent API command would be: +- +- > add /disk protocol:ssh server:tcp:example.com [username:user] +- + Note that the URIs follow the syntax of + L: in particular, there + are restrictions on the allowed characters for the various components + of the URI. Characters such as C<:>, C<@>, and C B be + percent-encoded: + +- $ guestfish -a ssh://user:pass%40word@example.com/disk.img ++ $ guestfish -a rbd://user:pass%40word@example.com[:port]/pool/disk + + In this case, the password is C. + +diff --git a/fish/test-add-uri.sh b/fish/test-add-uri.sh +index 21d424984..ddabeb639 100755 +--- a/fish/test-add-uri.sh ++++ b/fish/test-add-uri.sh +@@ -40,14 +40,6 @@ function fail () + $VG guestfish -x -a file://$abs_builddir/test-add-uri.img test-add-uri.out 2>&1 + grep -sq 'add_drive ".*/test-add-uri.img"' test-add-uri.out || fail + +-# curl +-$VG guestfish -x -a ftp://user@example.com/disk.img test-add-uri.out 2>&1 +-grep -sq 'add_drive "/disk.img" "protocol:ftp" "server:tcp:example.com" "username:user"' test-add-uri.out || fail +- +-# gluster +-$VG guestfish -x -a gluster://example.com/disk test-add-uri.out 2>&1 +-grep -sq 'add_drive "disk" "protocol:gluster" "server:tcp:example.com"' test-add-uri.out || fail +- + # NBD + $VG guestfish -x -a nbd://example.com test-add-uri.out 2>&1 + grep -sq 'add_drive "" "protocol:nbd" "server:tcp:example.com"' test-add-uri.out || fail +@@ -67,29 +59,5 @@ grep -sq 'add_drive "pool/disk" "protocol:rbd" "server:tcp:example.com:6789"' te + $VG guestfish -x -a rbd:///pool/disk test-add-uri.out 2>&1 + grep -sq 'add_drive "pool/disk" "protocol:rbd"' test-add-uri.out || fail + +-# sheepdog +-$VG guestfish -x -a sheepdog:///volume/image test-add-uri.out 2>&1 +-grep -sq 'add_drive "volume/image" "protocol:sheepdog"' test-add-uri.out || fail +- +-$VG guestfish -x -a sheepdog://example.com:3000/volume/image test-add-uri.out 2>&1 +-grep -sq 'add_drive "volume/image" "protocol:sheepdog" "server:tcp:example.com:3000"' test-add-uri.out || fail +- +-# ssh +-$VG guestfish -x -a ssh://example.com/disk.img test-add-uri.out 2>&1 +-grep -sq 'add_drive "/disk.img" "protocol:ssh" "server:tcp:example.com"' test-add-uri.out || fail +- +-$VG guestfish -x -a ssh://user@example.com/disk.img test-add-uri.out 2>&1 +-grep -sq 'add_drive "/disk.img" "protocol:ssh" "server:tcp:example.com" "username:user"' test-add-uri.out || fail +- +-$VG guestfish -x -a ssh://user@example.com:2000/disk.img test-add-uri.out 2>&1 +-grep -sq 'add_drive "/disk.img" "protocol:ssh" "server:tcp:example.com:2000" "username:user"' test-add-uri.out || fail +- +-# iSCSI +-$VG guestfish -x -a iscsi://example.com/iqn.2015-12.com.libguestfs:test1/0 test-add-uri.out 2>&1 +-grep -sq 'add_drive "iqn.2015-12.com.libguestfs:test1/0" "protocol:iscsi" "server:tcp:example.com"' test-add-uri.out || fail +- +-$VG guestfish -x -a iscsi://user:password@example.com/iqn.2015-12.com.libguestfs:test2/0 test-add-uri.out 2>&1 +-grep -sq 'add_drive "iqn.2015-12.com.libguestfs:test2/0" "protocol:iscsi" "server:tcp:example.com" "username:user" "secret:password"' test-add-uri.out || fail +- + rm test-add-uri.out + rm test-add-uri.img +diff --git a/generator/actions_core.ml b/generator/actions_core.ml +index ef9096772..4a4a8e4c9 100644 +--- a/generator/actions_core.ml ++++ b/generator/actions_core.ml +@@ -350,29 +350,6 @@ F is interpreted as a local file or device. + This is the default if the optional protocol parameter + is omitted. + +-=item C +- +-Connect to a remote FTP, HTTP or TFTP server. +-The C parameter must also be supplied - see below. +- +-See also: L +- +-=item C +- +-Connect to the GlusterFS server. +-The C parameter must also be supplied - see below. +- +-See also: L +- +-=item C +- +-Connect to the iSCSI server. +-The C parameter must also be supplied - see below. +-The C parameter may be supplied. See below. +-The C parameter may be supplied. See below. +- +-See also: L. +- + =item C + + Connect to the Network Block Device server. +@@ -389,22 +366,6 @@ The C parameter may be supplied. See below. + + See also: L. + +-=item C +- +-Connect to the Sheepdog server. +-The C parameter may also be supplied - see below. +- +-See also: L. +- +-=item C +- +-Connect to the Secure Shell (ssh) server. +- +-The C parameter must be supplied. +-The C parameter may be supplied. See below. +- +-See also: L. +- + =back + + =item C +@@ -415,13 +376,8 @@ is a list of server(s). + Protocol Number of servers required + -------- -------------------------- + file List must be empty or param not used at all +- ftp|ftps|http|https|tftp Exactly one +- gluster Exactly one +- iscsi Exactly one + nbd Exactly one + rbd Zero or more +- sheepdog Zero or more +- ssh Exactly one + + Each list element is a string specifying a server. The string must be + in one of the following formats: +@@ -437,10 +393,10 @@ for the protocol is used (see F). + + =item C + +-For the C, C, C, C, C, C, C +-and C protocols, this specifies the remote username. ++For the C ++protocol, this specifies the remote username. + +-If not given, then the local username is used for C, and no authentication ++If not given, then no authentication + is attempted for ceph. But note this sometimes may give unexpected results, for + example if using the libvirt backend and if the libvirt backend is configured to + start the qemu appliance as a special user such as C. If in doubt, +diff --git a/lib/drives.c b/lib/drives.c +index c5a208468..efb289254 100644 +--- a/lib/drives.c ++++ b/lib/drives.c +@@ -166,6 +166,7 @@ create_drive_non_file (guestfs_h *g, + return drv; + } + ++#if 0 /* DISABLED IN RHEL 8 */ + static struct drive * + create_drive_curl (guestfs_h *g, + const struct drive_create_data *data) +@@ -224,6 +225,7 @@ create_drive_gluster (guestfs_h *g, + + return create_drive_non_file (g, data); + } ++#endif /* DISABLED IN RHEL 8 */ + + static int + nbd_port (void) +@@ -292,6 +294,7 @@ create_drive_rbd (guestfs_h *g, + return create_drive_non_file (g, data); + } + ++#if 0 /* DISABLED IN RHEL 8 */ + static struct drive * + create_drive_sheepdog (guestfs_h *g, + const struct drive_create_data *data) +@@ -392,6 +395,7 @@ create_drive_iscsi (guestfs_h *g, + + return create_drive_non_file (g, data); + } ++#endif /* DISABLED IN RHEL 8 */ + + /** + * Create the special F drive. +@@ -842,6 +846,7 @@ guestfs_impl_add_drive_opts (guestfs_h *g, const char *filename, + drv = create_drive_file (g, &data); + } + } ++#if 0 /* DISABLED IN RHEL 8 */ + else if (STREQ (protocol, "ftp")) { + data.protocol = drive_protocol_ftp; + drv = create_drive_curl (g, &data); +@@ -866,6 +871,7 @@ guestfs_impl_add_drive_opts (guestfs_h *g, const char *filename, + data.protocol = drive_protocol_iscsi; + drv = create_drive_iscsi (g, &data); + } ++#endif /* DISABLED IN RHEL 8 */ + else if (STREQ (protocol, "nbd")) { + data.protocol = drive_protocol_nbd; + drv = create_drive_nbd (g, &data); +@@ -874,6 +880,7 @@ guestfs_impl_add_drive_opts (guestfs_h *g, const char *filename, + data.protocol = drive_protocol_rbd; + drv = create_drive_rbd (g, &data); + } ++#if 0 /* DISABLED IN RHEL 8 */ + else if (STREQ (protocol, "sheepdog")) { + data.protocol = drive_protocol_sheepdog; + drv = create_drive_sheepdog (g, &data); +@@ -886,6 +893,7 @@ guestfs_impl_add_drive_opts (guestfs_h *g, const char *filename, + data.protocol = drive_protocol_tftp; + drv = create_drive_curl (g, &data); + } ++#endif /* DISABLED IN RHEL 8 */ + else { + error (g, _("unknown protocol ‘%s’"), protocol); + drv = NULL; /*FALLTHROUGH*/ +diff --git a/lib/guestfs.pod b/lib/guestfs.pod +index e46dd81f9..dff32cc9e 100644 +--- a/lib/guestfs.pod ++++ b/lib/guestfs.pod +@@ -723,70 +723,6 @@ a qcow2 backing file specification, libvirt does not construct an + ephemeral secret object from those, for Ceph authentication. Refer to + L. + +-=head3 FTP, HTTP AND TFTP +- +-Libguestfs can access remote disks over FTP, FTPS, HTTP, HTTPS +-or TFTP protocols. +- +-To do this, set the optional C and C parameters of +-L like this: +- +- char **servers = { "www.example.org", NULL }; +- guestfs_add_drive_opts (g, "/disk.img", +- GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", +- GUESTFS_ADD_DRIVE_OPTS_PROTOCOL, "http", +- GUESTFS_ADD_DRIVE_OPTS_SERVER, servers, +- -1); +- +-The C can be one of C<"ftp">, C<"ftps">, C<"http">, +-C<"https"> or C<"tftp">. +- +-C (the C parameter) is a list which must have a +-single element. The single element is a string defining the web, +-FTP or TFTP server. The format of this string is documented in +-L. +- +-=head3 GLUSTER +- +-Libguestfs can access Gluster disks. +- +-To do this, set the optional C and C parameters of +-L like this: +- +- char **servers = { "gluster.example.org:24007", NULL }; +- guestfs_add_drive_opts (g, "volname/image", +- GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", +- GUESTFS_ADD_DRIVE_OPTS_PROTOCOL, "gluster", +- GUESTFS_ADD_DRIVE_OPTS_SERVER, servers, +- -1); +- +-C (the C parameter) is a list which must have a +-single element. The single element is a string defining the Gluster +-server. The format of this string is documented in +-L. +- +-Note that gluster usually requires the client process (ie. libguestfs) +-to run as B and will give unfathomable errors if it is not +-(eg. "No data available"). +- +-=head3 ISCSI +- +-Libguestfs can access iSCSI disks remotely. +- +-To do this, set the optional C and C parameters like +-this: +- +- char **server = { "iscsi.example.org:3000", NULL }; +- guestfs_add_drive_opts (g, "target-iqn-name/lun", +- GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", +- GUESTFS_ADD_DRIVE_OPTS_PROTOCOL, "iscsi", +- GUESTFS_ADD_DRIVE_OPTS_SERVER, server, +- -1); +- +-The C parameter is a list which must have a single element. +-The single element is a string defining the iSCSI server. The format +-of this string is documented in L. +- + =head3 NETWORK BLOCK DEVICE + + Libguestfs can access Network Block Device (NBD) disks remotely. +@@ -849,42 +785,6 @@ L + + =back + +-=head3 SHEEPDOG +- +-Libguestfs can access Sheepdog disks. +- +-To do this, set the optional C and C parameters of +-L like this: +- +- char **servers = { /* optional servers ... */ NULL }; +- guestfs_add_drive_opts (g, "volume", +- GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", +- GUESTFS_ADD_DRIVE_OPTS_PROTOCOL, "sheepdog", +- GUESTFS_ADD_DRIVE_OPTS_SERVER, servers, +- -1); +- +-The optional list of C may be zero or more server addresses +-(C<"hostname:port">). The format of the server strings is documented +-in L. +- +-=head3 SSH +- +-Libguestfs can access disks over a Secure Shell (SSH) connection. +- +-To do this, set the C and C and (optionally) +-C parameters of L like this: +- +- char **server = { "remote.example.com", NULL }; +- guestfs_add_drive_opts (g, "/path/to/disk.img", +- GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", +- GUESTFS_ADD_DRIVE_OPTS_PROTOCOL, "ssh", +- GUESTFS_ADD_DRIVE_OPTS_SERVER, server, +- GUESTFS_ADD_DRIVE_OPTS_USERNAME, "remoteuser", +- -1); +- +-The format of the server string is documented in +-L. +- + =head2 INSPECTION + + Libguestfs has APIs for inspecting an unknown disk image to find out +diff --git a/tests/disks/test-qemu-drive-libvirt.sh b/tests/disks/test-qemu-drive-libvirt.sh +index d86a1ecd0..cf7d2a0c9 100755 +--- a/tests/disks/test-qemu-drive-libvirt.sh ++++ b/tests/disks/test-qemu-drive-libvirt.sh +@@ -65,34 +65,6 @@ check_output + grep -sq -- '-drive file=rbd:abc-def/ghi-jkl:auth_supported=none,' "$DEBUG_QEMU_FILE" || fail ceph2 + rm "$DEBUG_QEMU_FILE" + +-# Gluster. +- +-$guestfish -d gluster run ||: +-check_output +-grep -sq -- '-drive file=gluster://1.2.3.4:1234/volname/image,' "$DEBUG_QEMU_FILE" || fail gluster +-rm "$DEBUG_QEMU_FILE" +- +-# iSCSI. +- +-$guestfish -d iscsi run ||: +-check_output +-grep -sq -- '-drive file=iscsi://1.2.3.4:1234/iqn.2003-01.org.linux-iscsi.fedora' "$DEBUG_QEMU_FILE" || fail iscsi +-rm "$DEBUG_QEMU_FILE" +- +-# NBD. +- +-$guestfish -d nbd run ||: +-check_output +-grep -sq -- '-drive file=nbd:1.2.3.4:1234,' "$DEBUG_QEMU_FILE" || fail nbd +-rm "$DEBUG_QEMU_FILE" +- +-# Sheepdog. +- +-$guestfish -d sheepdog run ||: +-check_output +-grep -sq -- '-drive file=sheepdog:volume,' "$DEBUG_QEMU_FILE" || fail sheepdog +-rm "$DEBUG_QEMU_FILE" +- + # Local, stored in a pool. + + $guestfish -d pool1 run ||: +diff --git a/tests/disks/test-qemu-drive.sh b/tests/disks/test-qemu-drive.sh +index 12937fb30..b3e4f9903 100755 +--- a/tests/disks/test-qemu-drive.sh ++++ b/tests/disks/test-qemu-drive.sh +@@ -62,45 +62,6 @@ check_output + grep -sq -- '-drive file=rbd:abc-def/ghi-jkl:auth_supported=none,' "$DEBUG_QEMU_FILE" || fail + rm "$DEBUG_QEMU_FILE" + +-# HTTP. +- +-guestfish < +Date: Tue, 7 Jul 2015 09:28:03 -0400 +Subject: [PATCH] RHEL: Reject use of libguestfs-winsupport features except for + virt-* tools (RHBZ#1240276). + +Fix the tests: it doesn't let us use guestfish for arbitrary Windows +edits. + +(cherry picked from commit b875668bfa9f596aba2e84999c7c9921f8dcb55e) +--- + generator/c.ml | 16 ++++++++++++++++ + test-data/phony-guests/make-windows-img.sh | 1 + + tests/charsets/test-charset-fidelity.c | 2 ++ + 3 files changed, 19 insertions(+) + +diff --git a/generator/c.ml b/generator/c.ml +index 447059b8a..0391dd3dd 100644 +--- a/generator/c.ml ++++ b/generator/c.ml +@@ -1846,6 +1846,22 @@ and generate_client_actions actions () = + check_args_validity c_name style; + trace_call name c_name style; + ++ (* RHEL 8 *) ++ if name = "mount" || name = "mount_ro" || name = "mount_options" || ++ name = "mount_vfs" then ( ++ pr " if (g->program && !STRPREFIX (g->program, \"virt-\")) {\n"; ++ pr " CLEANUP_FREE char *vfs_type = guestfs_vfs_type (g, mountable);\n"; ++ pr " if (vfs_type && STREQ (vfs_type, \"ntfs\")) {\n"; ++ pr " error (g, \"mount: unsupported filesystem type\");\n"; ++ pr " if (trace_flag)\n"; ++ pr " guestfs_int_trace (g, \"%%s = %%s (error)\",\n"; ++ pr " \"%s\", \"-1\");\n" name; ++ pr " return %s;\n" (string_of_errcode errcode); ++ pr " }\n"; ++ pr " }\n"; ++ pr "\n"; ++ ); ++ + (* Calculate the total size of all FileIn arguments to pass + * as a progress bar hint. + *) +diff --git a/test-data/phony-guests/make-windows-img.sh b/test-data/phony-guests/make-windows-img.sh +index 16debd129..1c13ddac3 100755 +--- a/test-data/phony-guests/make-windows-img.sh ++++ b/test-data/phony-guests/make-windows-img.sh +@@ -37,6 +37,7 @@ fi + + # Create a disk image. + guestfish < +Date: Mon, 8 Jul 2024 14:37:22 +0100 +Subject: [PATCH] New APIs: findfs_partuuid and findfs_partlabel + +These search for partitions by UUID or label (name). They only work +for GPT. + +(cherry picked from commit 1816651f3c138600ad2e5ba0d6437b4753333818) +(cherry picked from commit 04a45af93d21880e54a386386313100a04b91ca7) +--- + daemon/findfs.ml | 4 ++++ + generator/actions_core.ml | 24 ++++++++++++++++++++++++ + generator/proc_nr.ml | 2 ++ + lib/MAX_PROC_NR | 2 +- + 4 files changed, 31 insertions(+), 1 deletion(-) + +diff --git a/daemon/findfs.ml b/daemon/findfs.ml +index cf2ba4a84..a94e0ce7b 100644 +--- a/daemon/findfs.ml ++++ b/daemon/findfs.ml +@@ -27,6 +27,10 @@ let rec findfs_uuid uuid = + findfs "UUID" uuid + and findfs_label label = + findfs "LABEL" label ++and findfs_partuuid uuid = ++ findfs "PARTUUID" uuid ++and findfs_partlabel label = ++ findfs "PARTLABEL" label + + and findfs tag str = + (* Kill the cache file, forcing blkid to reread values from the +diff --git a/generator/actions_core.ml b/generator/actions_core.ml +index 4a4a8e4c9..15cdd09ff 100644 +--- a/generator/actions_core.ml ++++ b/generator/actions_core.ml +@@ -5688,6 +5688,30 @@ filesystem can be found. + + To find the label of a filesystem, use C." }; + ++ { defaults with ++ name = "findfs_partuuid"; added = (1, 5, 3); ++ style = RString (RDevice, "device"), [String (PlainString, "uuid")], []; ++ impl = OCaml "Findfs.findfs_partuuid"; ++ shortdesc = "find a partition by UUID"; ++ longdesc = "\ ++This command searches the partitions and returns the one ++which has the given partition UUID. An error is returned if no such ++partition can be found. ++ ++To find the UUID of a partition, use C (C)." }; ++ ++ { defaults with ++ name = "findfs_partlabel"; added = (1, 5, 3); ++ style = RString (RDevice, "device"), [String (PlainString, "label")], []; ++ impl = OCaml "Findfs.findfs_partlabel"; ++ shortdesc = "find a partition by label"; ++ longdesc = "\ ++This command searches the partitions and returns the one ++which has the given label. An error is returned if no such ++partition can be found. ++ ++To find the label of a partition, use C (C)." }; ++ + { defaults with + name = "is_chardev"; added = (1, 5, 10); + style = RBool "flag", [String (Pathname, "path")], [OBool "followsymlinks"]; +diff --git a/generator/proc_nr.ml b/generator/proc_nr.ml +index f71a849c9..56cd97a9f 100644 +--- a/generator/proc_nr.ml ++++ b/generator/proc_nr.ml +@@ -516,6 +516,8 @@ let proc_nr = [ + 511, "internal_readdir"; + 512, "clevis_luks_unlock"; + 513, "inspect_get_build_id"; ++514, "findfs_partuuid"; ++515, "findfs_partlabel"; + ] + + (* End of list. If adding a new entry, add it at the end of the list +diff --git a/lib/MAX_PROC_NR b/lib/MAX_PROC_NR +index 31cf34b8d..3cda32fc2 100644 +--- a/lib/MAX_PROC_NR ++++ b/lib/MAX_PROC_NR +@@ -1 +1 @@ +-513 ++515 +-- +2.43.0 + diff --git a/SOURCES/0006-inspection-Resolve-PARTUUID-and-PARTLABEL-in-etc-fst.patch b/SOURCES/0006-inspection-Resolve-PARTUUID-and-PARTLABEL-in-etc-fst.patch new file mode 100644 index 0000000..bbc5529 --- /dev/null +++ b/SOURCES/0006-inspection-Resolve-PARTUUID-and-PARTLABEL-in-etc-fst.patch @@ -0,0 +1,45 @@ +From 5733e5268fe0b7a99f20b23ea30ab13632cc9d95 Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Mon, 8 Jul 2024 14:39:16 +0100 +Subject: [PATCH] inspection: Resolve PARTUUID= and PARTLABEL= in /etc/fstab + +Fixes: https://issues.redhat.com/browse/RHEL-46596 +(cherry picked from commit e616c8f286ddacf401d7c356724ae874ed883262) +(cherry picked from commit ebce03824a3ce75823037003ca2311d7b8d61565) +--- + daemon/inspect_fs_unix_fstab.ml | 19 +++++++++++++++++++ + 1 file changed, 19 insertions(+) + +diff --git a/daemon/inspect_fs_unix_fstab.ml b/daemon/inspect_fs_unix_fstab.ml +index 837c8c620..f5817a318 100644 +--- a/daemon/inspect_fs_unix_fstab.ml ++++ b/daemon/inspect_fs_unix_fstab.ml +@@ -131,6 +131,25 @@ and check_fstab_entry md_map root_mountable os_type aug entry = + with + Failure _ -> return None + ) ++ (* EFI partition UUIDs and labels. *) ++ else if String.is_prefix spec "PARTUUID=" then ( ++ let uuid = String.sub spec 9 (String.length spec - 9) in ++ let uuid = shell_unquote uuid in ++ (* Just ignore the device if the UUID cannot be resolved. *) ++ try ++ Mountable.of_device (Findfs.findfs_partuuid uuid) ++ with ++ Failure _ -> return None ++ ) ++ else if String.is_prefix spec "PARTLABEL=" then ( ++ let label = String.sub spec 10 (String.length spec - 10) in ++ let label = shell_unquote label in ++ (* Just ignore the device if the label cannot be resolved. *) ++ try ++ Mountable.of_device (Findfs.findfs_partlabel label) ++ with ++ Failure _ -> return None ++ ) + (* Resolve /dev/root to the current device. + * Do the same for the / partition of the *BSD + * systems, since the BSD -> Linux device +-- +2.43.0 + diff --git a/SOURCES/0007-appliance-init-Don-t-set-impossible-noop-disk-schedu.patch b/SOURCES/0007-appliance-init-Don-t-set-impossible-noop-disk-schedu.patch new file mode 100644 index 0000000..57efd5b --- /dev/null +++ b/SOURCES/0007-appliance-init-Don-t-set-impossible-noop-disk-schedu.patch @@ -0,0 +1,109 @@ +From 533d39a6862638f587b231ecf541ab1f5c8e85f9 Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Fri, 16 Aug 2024 08:26:34 +0100 +Subject: [PATCH] appliance/init: Don't set impossible "noop" disk scheduler + +Since RHEL 7.4, the noop scheduler is no longer a thing. Trying to +set it results in the error: + + + echo noop + /init: line 108: echo: write error: Invalid argument + +The current recommendation (https://access.redhat.com/solutions/5427) +is to use mq-deadline, but that's also the default so we don't have to +do anything. + +A bigger reason to remove these lines is that kernel 6.11.0 has +introduced a hang where -- rarely -- the ext4 filesystem hangs if you +try to change the scheduler while handing a page fault, even if you're +setting a scheduler that doesn't exist. I couldn't get much detail +except for a couple of stack traces from different VMs: + + crash> set 234 + PID: 234 + COMMAND: "modprobe" + TASK: ffff9f5ec3a22f40 [THREAD_INFO: ffff9f5ec3a22f40] + CPU: 0 + STATE: TASK_UNINTERRUPTIBLE + crash> bt + PID: 234 TASK: ffff9f5ec3a22f40 CPU: 0 COMMAND: "modprobe" + #0 [ffffb21e002e7840] __schedule at ffffffffa718f6d0 + #1 [ffffb21e002e78f8] schedule at ffffffffa7190a27 + #2 [ffffb21e002e7908] __bio_queue_enter at ffffffffa67e121c + #3 [ffffb21e002e7968] blk_mq_submit_bio at ffffffffa67f358c + #4 [ffffb21e002e79f0] __submit_bio at ffffffffa67e1e3c + #5 [ffffb21e002e7a58] submit_bio_noacct_nocheck at ffffffffa67e2326 + #6 [ffffb21e002e7ac0] ext4_mpage_readpages at ffffffffa65ceafc + #7 [ffffb21e002e7be0] read_pages at ffffffffa6381d17 + #8 [ffffb21e002e7c40] page_cache_ra_unbounded at ffffffffa6381ff5 + #9 [ffffb21e002e7ca8] filemap_fault at ffffffffa63761b5 + #10 [ffffb21e002e7d48] __do_fault at ffffffffa63d1892 + #11 [ffffb21e002e7d70] do_fault at ffffffffa63d2425 + #12 [ffffb21e002e7da0] __handle_mm_fault at ffffffffa63d8c6b + #13 [ffffb21e002e7e88] handle_mm_fault at ffffffffa63d95c2 + #14 [ffffb21e002e7ec8] do_user_addr_fault at ffffffffa60b34ea + #15 [ffffb21e002e7f28] exc_page_fault at ffffffffa7186e4e + #16 [ffffb21e002e7f50] asm_exc_page_fault at ffffffffa72012a6 + RIP: 000055d16159f8d8 RSP: 00007ffdd4c1f340 RFLAGS: 00010206 + RAX: 00000000000bec82 RBX: 00007ff2fd00dc82 RCX: 000055d1615b492a + RDX: 00007ffdd4c216b0 RSI: 00000000200bec82 RDI: 000055d185725960 + RBP: 00007ffdd4c1f5a0 R8: 0000000000000000 R9: 0000000000000000 + R10: 0000000000000000 R11: 0000000000000202 R12: 00000000200bec82 + R13: 000055d185725960 R14: 00007ffdd4c216b0 R15: 000055d1615b9708 + ORIG_RAX: ffffffffffffffff CS: 0033 SS: 002b + + crash> set 230 + PID: 230 + COMMAND: "modprobe" + TASK: ffff98ce03ca3040 [THREAD_INFO: ffff98ce03ca3040] + CPU: 0 + STATE: TASK_UNINTERRUPTIBLE + crash> bt + PID: 230 TASK: ffff98ce03ca3040 CPU: 0 COMMAND: "modprobe" + #0 [ffffaf9940307840] __schedule at ffffffff9618f6d0 + #1 [ffffaf99403078f8] schedule at ffffffff96190a27 + #2 [ffffaf9940307908] __bio_queue_enter at ffffffff957e121c + #3 [ffffaf9940307968] blk_mq_submit_bio at ffffffff957f358c + #4 [ffffaf99403079f0] __submit_bio at ffffffff957e1e3c + #5 [ffffaf9940307a58] submit_bio_noacct_nocheck at ffffffff957e2326 + #6 [ffffaf9940307ac0] ext4_mpage_readpages at ffffffff955ceafc + #7 [ffffaf9940307be0] read_pages at ffffffff95381d1a + #8 [ffffaf9940307c40] page_cache_ra_unbounded at ffffffff95381ff5 + #9 [ffffaf9940307ca8] filemap_fault at ffffffff953761b5 + #10 [ffffaf9940307d48] __do_fault at ffffffff953d1895 + #11 [ffffaf9940307d70] do_fault at ffffffff953d2425 + #12 [ffffaf9940307da0] __handle_mm_fault at ffffffff953d8c6b + #13 [ffffaf9940307e88] handle_mm_fault at ffffffff953d95c2 + #14 [ffffaf9940307ec8] do_user_addr_fault at ffffffff950b34ea + #15 [ffffaf9940307f28] exc_page_fault at ffffffff96186e4e + #16 [ffffaf9940307f50] asm_exc_page_fault at ffffffff962012a6 + RIP: 0000556b7a7468d8 RSP: 00007ffde2ffb560 RFLAGS: 00000206 + RAX: 00000000000bec82 RBX: 00007f5331a0dc82 RCX: 0000556b7a75b92a + RDX: 00007ffde2ffd8d0 RSI: 00000000200bec82 RDI: 0000556ba8edf960 + RBP: 00007ffde2ffb7c0 R8: 0000000000000000 R9: 0000000000000000 + R10: 0000000000000000 R11: 0000000000000202 R12: 00000000200bec82 + R13: 0000556ba8edf960 R14: 00007ffde2ffd8d0 R15: 0000556b7a760708 + ORIG_RAX: ffffffffffffffff CS: 0033 SS: 002b + +Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2303267 +(cherry picked from commit b2d682a4730ead8b4ae07e5aaf6fa230c5eec305) +--- + appliance/init | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/appliance/init b/appliance/init +index 128a3c20e..dae06dbbe 100755 +--- a/appliance/init ++++ b/appliance/init +@@ -104,8 +104,6 @@ udevadm settle --timeout=600 + # Increase the SCSI timeout so we can read remote images. + shopt -s nullglob + for f in /sys/block/sd*/device/timeout; do echo 300 > $f; done +-# https://access.redhat.com/site/solutions/5427 +-for f in /sys/block/{h,s,ub,v}d*/queue/scheduler; do echo noop > $f; done + shopt -u nullglob + + # Set up the network. +-- +2.43.0 + diff --git a/SOURCES/README-replacement.in b/SOURCES/README-replacement.in new file mode 100644 index 0000000..388dc34 --- /dev/null +++ b/SOURCES/README-replacement.in @@ -0,0 +1,37 @@ +Libguestfs is a set of tools and a library for accessing and modifying +guest disk images. For more information see the home page: + + http://libguestfs.org/ + +For discussion, development, patches, etc. please use the mailing +list: + + http://www.redhat.com/mailman/listinfo/libguestfs + +This package comes with a lot of help and examples to get you started. + +The first place to start are the manual pages. Type: + + man guestfs + man guestfs-faq + man guestfs-release-notes + man guestfish + man virt-cat # and other virt-* tools + +If you install the libguestfs-devel package, then in the +/usr/share/doc/libguestfs-devel/ directory you will find other +documentation including: + + - BUGS: list of open bugs in this version + + - ChangeLog.gz: the detailed list of changes in this version + + - HACKING: how to extend libguestfs + + - TODO: ideas for extending libguestfs + + - *.c: example C programs using the API + + - *.xml.gz: example virt-inspector output (compressed) + + - virt-inspector.rng: virt-inspector RelaxNG schema diff --git a/SOURCES/copy-patches.sh b/SOURCES/copy-patches.sh new file mode 100755 index 0000000..4d67ee7 --- /dev/null +++ b/SOURCES/copy-patches.sh @@ -0,0 +1,56 @@ +#!/bin/bash - + +set -e + +# Maintainer script to copy patches from the git repo to the current +# directory. It's normally only used downstream (ie. in RHEL). Use +# it like this: +# ./copy-patches.sh + +rhel_version=10.0 + +# Check we're in the right directory. +if [ ! -f libguestfs.spec ]; then + echo "$0: run this from the directory containing 'libguestfs.spec'" + exit 1 +fi + +git_checkout=$HOME/d/libguestfs-rhel-$rhel_version +if [ ! -d $git_checkout ]; then + echo "$0: $git_checkout does not exist" + echo "This script is only for use by the maintainer when preparing a" + echo "libguestfs release on RHEL." + exit 1 +fi + +# Get the base version of libguestfs. +version=`grep '^Version:' libguestfs.spec | awk '{print $2}'` +tag="v$version" + +# Remove any existing patches. +git rm -f [0-9]*.patch ||: +rm -f [0-9]*.patch + +# Get the patches. +(cd $git_checkout; rm -f [0-9]*.patch; git format-patch -N --submodule=diff $tag) +mv $git_checkout/[0-9]*.patch . + +# Remove any not to be applied. +rm -f *NOT-FOR-RPM*.patch + +# Add the patches. +git add [0-9]*.patch + +# Print out the patch lines. +echo +echo "--- Copy the following text into libguestfs.spec file" +echo + +echo "# Patches." +for f in [0-9]*.patch; do + n=`echo $f | awk -F- '{print $1}'` + echo "Patch$n: $f" +done + +echo +echo "--- End of text" diff --git a/SOURCES/guestfish.sh b/SOURCES/guestfish.sh new file mode 100644 index 0000000..cfd0492 --- /dev/null +++ b/SOURCES/guestfish.sh @@ -0,0 +1,6 @@ +# Guestfish colour prompts. See PROMPT in guestfish(1). +GUESTFISH_PS1='\[\e[1;32m\]>\[\e[0;31m\] ' +GUESTFISH_OUTPUT='\e[0m' +GUESTFISH_RESTORE="$GUESTFISH_OUTPUT" +GUESTFISH_INIT='\e[1;34m' +export GUESTFISH_PS1 GUESTFISH_OUTPUT GUESTFISH_RESTORE GUESTFISH_INIT diff --git a/SOURCES/libguestfs-1.52.2.tar.gz.sig b/SOURCES/libguestfs-1.52.2.tar.gz.sig new file mode 100644 index 0000000..da77df3 --- /dev/null +++ b/SOURCES/libguestfs-1.52.2.tar.gz.sig @@ -0,0 +1,17 @@ +-----BEGIN PGP SIGNATURE----- + +iQJFBAABCAAvFiEE93dPsa0HSn6Mh2fqkXOPc+G3aKAFAmaMBYQRHHJpY2hAYW5u +ZXhpYS5vcmcACgkQkXOPc+G3aKCgAA//Y3vipD+s/fdnFSNPkCxE7lPkBW+HPHKM +ESFfm4hMaR1m9IgNftcFfdQuiApLOsiKN5eGOqyINsrZCWPDkz7mww911GO4V7Oz +mbC2bqvpfLu7OhpxZew+ZrX0NY/hyGngGfSdlc8R0iF4uB76I+ghxllxEfGG1brG +mbvbzFbVIsTj7REPWe5HudQHXgqQFtiSxWmB65/uEQo85W/Wbc7BsPZPps99Uyxm +Mjt6QsiMxHipA2IZWXVCC9UgOewj7dcnXpmgxmWZxRn8e1C/mPNTYZo7z9AeB1YT +W6VX0RRg9TFppi4fCclsWaHyWtaFeasooPzpV9dXn6rezB8K5IzJXeV1Ial154mn +w2ofL1qkhtl8wMabBTC7zP+zb1pNu8iajrKgCmY10/Bgia/wRArIK5qS7dIxGDT9 +jJ5gfP9h5zi01tnNIKbZaoRKSrU+r2+efxvad+8uvQt4JFn1OAL+EVjzePi47aOx +h06kt2uktjtWsKBnLmY91FOwSDPL0aDd8zKp6Ddm84TIQ4tXy4caQ9vQCON7cuNy +5NhvHHs3VNAFOVUW5/e/E9RdmYMnSJaYRpdvpKOuHNcWzPmYR32BMI4LjtYABtkz +Cn0WKnCASUa2W3CzD7V5bHtdT4fnQNbZvcgPGouB/+SlIpABqyfyIQnUta8Tsn2u +msgD9HFR9kk= +=yVGZ +-----END PGP SIGNATURE----- diff --git a/SOURCES/yum.conf.in b/SOURCES/yum.conf.in new file mode 100644 index 0000000..d5e30d0 --- /dev/null +++ b/SOURCES/yum.conf.in @@ -0,0 +1,17 @@ +[main] +cachedir=@PWD@/cachedir +debuglevel=1 +logfile=@PWD@/yum.log +retries=20 +obsoletes=1 +gpgcheck=0 +assumeyes=1 +reposdir=/dev/null +modulesdir=@PWD@/modules + +[local] +name=local +baseurl=file://@PWD@/repo +failovermethod=priority +enabled=1 +gpgcheck=0 diff --git a/SPECS/libguestfs.spec b/SPECS/libguestfs.spec new file mode 100644 index 0000000..a37d235 --- /dev/null +++ b/SPECS/libguestfs.spec @@ -0,0 +1,5203 @@ +# OCaml packages not built on i686 since OCaml 5 / Fedora 39. +ExcludeArch: %{ix86} + +# Architectures on which golang works. +#% global golang_arches aarch64 % {arm} % {ix86} x86_64 +# In theory the above, in practice golang is so often broken that +# I now disable it: +%global golang_arches NONE + +# Architectures that we run the basic sanity-check test. +# +# The full test suite is done after the package has been built. Here +# we only do a sanity check that kernel/qemu/libvirt/appliance is not +# broken. To perform the full test suite, see instructions here: +# https://www.redhat.com/archives/libguestfs/2015-September/msg00078.html +%if !0%{?rhel} +%global test_arches aarch64 %{power64} s390x x86_64 +%else +# RHEL 9 only: +# x86-64: "/lib64/libc.so.6: CPU ISA level is lower than required" +# (RHBZ#1919389) +%global test_arches NONE +%endif + +# Trim older changelog entries. +# https://lists.fedoraproject.org/pipermail/devel/2013-April/thread.html#181627 +%global _changelog_trimtime %(date +%s -d "2 years ago") + +# Verify tarball signature with GPGv2. +%global verify_tarball_signature 1 + +# The source directory. +%global source_directory 1.52-stable + +# Filter perl provides. +%{?perl_default_filter} + +# Unbreak the linker. +%undefine _strict_symbol_defs_build + +Summary: Access and modify virtual machine disk images +Name: libguestfs +Epoch: 1 +Version: 1.52.2 +Release: 4%{?dist} +License: LGPL-2.1-or-later + +# Build only for architectures that have a kernel +ExclusiveArch: %{kernel_arches} +%if 0%{?rhel} +# No qemu-kvm on POWER (RHBZ#1946532). +ExcludeArch: %{power64} +%endif + +# Source and patches. +URL: http://libguestfs.org/ +Source0: http://libguestfs.org/download/%{source_directory}/%{name}-%{version}.tar.gz +%if 0%{verify_tarball_signature} +Source1: http://libguestfs.org/download/%{source_directory}/%{name}-%{version}.tar.gz.sig +%endif + +# Replacement README file. +Source4: README-replacement.in + +# Guestfish colour prompts. +Source5: guestfish.sh + +# Used to build the supermin appliance in Koji. +Source6: yum.conf.in + +# Keyring used to verify tarball signature. +%if 0%{verify_tarball_signature} +Source7: libguestfs.keyring +%endif + +# Maintainer script which helps with handling patches. +Source8: copy-patches.sh + +# Patches are maintained in the following repository: +# https://github.com/libguestfs/libguestfs/commits/rhel-10.0 + +# Patches. +Patch0001: 0001-daemon-Reimplement-partition-GPT-functions-using-sfd.patch +Patch0002: 0002-daemon-Fix-parsing-in-part_get_gpt_attributes.patch +Patch0003: 0003-RHEL-Disable-unsupported-remote-drive-protocols-RHBZ.patch +Patch0004: 0004-RHEL-Reject-use-of-libguestfs-winsupport-features-ex.patch +Patch0005: 0005-New-APIs-findfs_partuuid-and-findfs_partlabel.patch +Patch0006: 0006-inspection-Resolve-PARTUUID-and-PARTLABEL-in-etc-fst.patch +Patch0007: 0007-appliance-init-Don-t-set-impossible-noop-disk-schedu.patch + +BuildRequires: autoconf, automake, libtool, gettext-devel + +# Basic build requirements. +BuildRequires: gcc, gcc-c++ +BuildRequires: make +BuildRequires: rpcgen +BuildRequires: libtirpc-devel +BuildRequires: supermin-devel >= 5.1.18 +BuildRequires: hivex-devel >= 1.3.10 +BuildRequires: ocaml-hivex-devel +BuildRequires: perl(Pod::Simple) +BuildRequires: perl(Pod::Man) +BuildRequires: /usr/bin/pod2text +BuildRequires: po4a +BuildRequires: augeas-devel >= 1.7.0 +BuildRequires: ocaml-augeas-devel >= 0.6 +BuildRequires: readline-devel +BuildRequires: xorriso +BuildRequires: libxml2-devel +BuildRequires: createrepo_c +BuildRequires: glibc-static +BuildRequires: libselinux-utils +BuildRequires: libselinux-devel +BuildRequires: fuse, fuse-devel +BuildRequires: pcre2-devel +BuildRequires: file-devel +BuildRequires: libvirt-devel +BuildRequires: gperf +BuildRequires: flex +BuildRequires: bison +BuildRequires: rpm-devel +BuildRequires: cpio +BuildRequires: libconfig-devel +BuildRequires: xz-devel +%if !0%{?rhel} +BuildRequires: zip +BuildRequires: unzip +%endif +BuildRequires: systemd-units +BuildRequires: netpbm-progs +BuildRequires: icoutils +BuildRequires: libvirt-daemon-kvm >= 7.1.0 +%if !0%{?rhel} +BuildRequires: perl(Expect) +%endif +BuildRequires: libacl-devel +BuildRequires: libcap-devel +%if !0%{?rhel} +BuildRequires: libldm-devel +%endif +BuildRequires: jansson-devel +BuildRequires: systemd-devel +BuildRequires: bash-completion +BuildRequires: /usr/bin/ping +BuildRequires: curl +BuildRequires: xz +BuildRequires: zstd +BuildRequires: libzstd-devel +BuildRequires: /usr/bin/qemu-img + +%if 0%{verify_tarball_signature} +BuildRequires: gnupg2 +%endif + +# For language bindings. +BuildRequires: ocaml +BuildRequires: ocaml-ocamldoc +BuildRequires: ocaml-findlib-devel +%if !0%{?rhel} +BuildRequires: ocaml-ounit-devel +BuildRequires: lua +BuildRequires: lua-devel +%endif +BuildRequires: perl-devel +BuildRequires: perl-generators +BuildRequires: perl-macros +BuildRequires: perl(Test::More) +BuildRequires: perl(Test::Pod) >= 1.00 +BuildRequires: perl(Test::Pod::Coverage) >= 1.00 +BuildRequires: perl(Module::Build) +BuildRequires: perl(ExtUtils::CBuilder) +BuildRequires: perl(Locale::TextDomain) +BuildRequires: python3-devel +BuildRequires: python3-libvirt +%if !0%{?rhel} +BuildRequires: ruby-devel +BuildRequires: rubygem-rake +# json is not pulled in automatically, see RHBZ#1325022 +BuildRequires: rubygem(json) +BuildRequires: rubygem(rdoc) +BuildRequires: rubygem(test-unit) +BuildRequires: ruby-irb +BuildRequires: php-devel +BuildRequires: gobject-introspection-devel +BuildRequires: gjs +BuildRequires: vala +%endif +%ifarch %{golang_arches} +BuildRequires: golang +%endif + +# Build requirements for the appliance. +# +# Get the initial list by doing: +# for f in `cat appliance/packagelist`; do echo $f; done | sort -u +# However you have to edit the list down to packages which exist in +# current Fedora, since supermin ignores non-existent packages. + +BuildRequires: acl +BuildRequires: attr +BuildRequires: augeas-libs +BuildRequires: bash +BuildRequires: binutils +%if !0%{?rhel} +BuildRequires: btrfs-progs +%endif +BuildRequires: bzip2 +BuildRequires: clevis-luks +BuildRequires: coreutils +BuildRequires: cpio +BuildRequires: cryptsetup +BuildRequires: dhcpcd +BuildRequires: diffutils +BuildRequires: dosfstools +BuildRequires: e2fsprogs +BuildRequires: file +BuildRequires: findutils +BuildRequires: gawk +%if !0%{?rhel} +BuildRequires: gdisk +BuildRequires: gfs2-utils +%endif +BuildRequires: grep +BuildRequires: gzip +%if !0%{?rhel} +%ifnarch ppc +BuildRequires: hfsplus-tools +%endif +%endif +BuildRequires: hivex-libs +BuildRequires: iproute +BuildRequires: iputils +BuildRequires: kernel +BuildRequires: kmod +BuildRequires: less +BuildRequires: libcap +%if !0%{?rhel} +BuildRequires: libldm +%endif +BuildRequires: libselinux +BuildRequires: libxml2 +BuildRequires: lsof +BuildRequires: lsscsi +BuildRequires: lvm2 +BuildRequires: lzop +BuildRequires: mdadm +%if !0%{?rhel} +BuildRequires: ntfs-3g ntfsprogs ntfs-3g-system-compression +%endif +BuildRequires: openssh-clients +BuildRequires: parted +BuildRequires: pciutils +BuildRequires: pcre2 +BuildRequires: policycoreutils +BuildRequires: procps +BuildRequires: psmisc +BuildRequires: rpm-libs +BuildRequires: rsync +BuildRequires: scrub +BuildRequires: sed +%if !0%{?rhel} +BuildRequires: sleuthkit +%endif +BuildRequires: squashfs-tools +BuildRequires: strace +%if !0%{?rhel} +%ifarch %{ix86} x86_64 +BuildRequires: syslinux syslinux-extlinux +%endif +%endif +BuildRequires: systemd +BuildRequires: tar +BuildRequires: udev +BuildRequires: util-linux +BuildRequires: vim-minimal +BuildRequires: xfsprogs +BuildRequires: xz +%if !0%{?rhel} +BuildRequires: zerofree +%endif +%if !0%{?rhel} +%ifnarch %{arm} aarch64 s390 s390x riscv64 +# http://zfs-fuse.net/issues/94 +BuildRequires: zfs-fuse +%endif +%endif +BuildRequires: zstd + +# Main package requires the appliance. This allows the appliance to +# be replaced if there exists a package called +# "libguestfs-noappliance". This package is not provided anywhere, +# you have to provide the dependency or make the package yourself. If +# you do then libguestfs won't install the appliance and you are free +# to replace it with (eg) a fixed appliance. +Requires: (%{name}-appliance = %{epoch}:%{version}-%{release} or %{name}-noappliance) + +# The daemon dependencies are not included automatically, because it +# is buried inside the appliance, so list them here. +Requires: augeas-libs%{?_isa} >= 1.7.0 +Requires: jansson%{?_isa} +Requires: libacl%{?_isa} +Requires: libcap%{?_isa} +Requires: libselinux%{?_isa} +Requires: hivex-libs%{?_isa} >= 1.3.10 +Requires: pcre2%{?_isa} +Requires: rpm-libs%{?_isa} >= 4.16.1.3 +Requires: systemd-libs%{?_isa} + +# For core mount-local (FUSE) API. +Requires: fuse + +# For core APIs: +Requires: /usr/bin/qemu-img +Requires: coreutils +Requires: grep +Requires: tar + +# libguestfs-make-fixed-appliance requires xz. +Requires: xz + +# For qemu direct and libvirt backends. +Requires: qemu-kvm-core +%if !0%{?rhel} +Suggests: qemu-block-curl +Suggests: qemu-block-gluster +Suggests: qemu-block-iscsi +%endif +Suggests: qemu-block-rbd +%if !0%{?rhel} +Suggests: qemu-block-ssh +%endif +Recommends: libvirt-daemon-config-network +Requires: libvirt-daemon-driver-qemu >= 7.1.0 +Requires: libvirt-daemon-driver-secret +Requires: libvirt-daemon-driver-storage-core +Recommends: passt +Requires: (selinux-policy >= 3.11.1-63 if selinux-policy) + +%ifarch aarch64 +Requires: edk2-aarch64 +%endif + +# For guestfish. +#Requires: /usr/bin/emacs #theoretically, but too large +Requires: /usr/bin/hexedit +Requires: /usr/bin/less +Requires: /usr/bin/man +Requires: /usr/bin/vi + +%if !0%{?rhel} +# Someone managed to install libguestfs-winsupport (from RHEL!) on +# Fedora, which breaks everything. Thus: +Conflicts: libguestfs-winsupport +%else +Conflicts: libguestfs-winsupport < 7.2 +%endif + + +%description +Libguestfs is a library for accessing and modifying virtual machine +disk images. http://libguestfs.org + +Libguestfs uses Linux kernel and qemu code, and can access any type of +guest filesystem that Linux and qemu can, including but not limited +to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition +schemes, qcow, qcow2, vmdk. + +For enhanced features, install: + +%if !0%{?rhel} + libguestfs-forensics adds filesystem forensics support + libguestfs-gfs2 adds Global Filesystem (GFS2) support + libguestfs-hfsplus adds HFS+ (Mac filesystem) support +%endif + libguestfs-inspect-icons adds support for inspecting guest icons + libguestfs-rescue enhances virt-rescue shell with more tools + libguestfs-rsync rsync to/from guest filesystems +%if !0%{?rhel} + libguestfs-ufs adds UFS (BSD) support +%endif + libguestfs-xfs adds XFS support +%if !0%{?rhel} + libguestfs-zfs adds ZFS support +%endif + +For developers: + + libguestfs-devel C/C++ header files and library + +Language bindings: + +%if !0%{?rhel} +libguestfs-gobject-devel GObject bindings and GObject Introspection +%endif +%ifarch %{golang_arches} + golang-guestfs Go language bindings +%endif +%if !0%{?rhel} + lua-guestfs Lua bindings +%endif + ocaml-libguestfs-devel OCaml bindings + perl-Sys-Guestfs Perl bindings +%if !0%{?rhel} + php-libguestfs PHP bindings +%endif + python3-libguestfs Python 3 bindings +%if !0%{?rhel} + ruby-libguestfs Ruby bindings + libguestfs-vala Vala language bindings +%endif + + +%package appliance +Summary: Appliance for %{name} +License: GPL-2.0-or-later AND LGPL-2.1-or-later +Requires: supermin >= 5.1.18 + + +%description appliance +%{name}-appliance provides the appliance used by libguestfs. + + +%package devel +Summary: Development tools and libraries for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +Requires: pkgconfig + + +%description devel +%{name}-devel contains development tools and libraries +for %{name}. + + +%if !0%{?rhel} +%package forensics +Summary: Filesystem forensics support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description forensics +This adds filesystem forensics support to %{name}. Install it if you +want to forensically analyze disk images using The Sleuth Kit. +%endif + + +%if !0%{?rhel} +%package gfs2 +Summary: GFS2 support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description gfs2 +This adds GFS2 support to %{name}. Install it if you want to process +disk images containing GFS2. +%endif + + +%if !0%{?rhel} +%ifnarch ppc +%package hfsplus +Summary: HFS+ support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description hfsplus +This adds HFS+ support to %{name}. Install it if you want to process +disk images containing HFS+ / Mac OS Extended filesystems. +%endif +%endif + + +%package rescue +Summary: virt-rescue shell +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description rescue +This adds the virt-rescue shell which is a "rescue disk" for virtual +machines, and additional tools to use inside the shell such as ssh, +network utilities, editors and debugging utilities. + + +%package rsync +Summary: rsync support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description rsync +This adds rsync support to %{name}. Install it if you want to use +rsync to upload or download files into disk images. + + +%if !0%{?rhel} +%package ufs +Summary: UFS (BSD) support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description ufs +This adds UFS support to %{name}. Install it if you want to process +disk images containing UFS (BSD filesystems). +%endif + + +%package xfs +Summary: XFS support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description xfs +This adds XFS support to %{name}. Install it if you want to process +disk images containing XFS. + + +%if !0%{?rhel} +%ifnarch %{arm} aarch64 s390 s390x riscv64 +%package zfs +Summary: ZFS support for %{name} +License: GPL-2.0-or-later +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description zfs +This adds ZFS support to %{name}. Install it if you want to process +disk images containing ZFS. +%endif +%endif + + +%package inspect-icons +Summary: Additional dependencies for inspecting guest icons +License: LGPL-2.1-or-later +BuildArch: noarch +Requires: %{name} = %{epoch}:%{version}-%{release} + +Requires: netpbm-progs +Requires: icoutils + + +%description inspect-icons +%{name}-inspect-icons is a metapackage that pulls in additional +dependencies required by libguestfs to pull icons out of non-Linux +guests. Install this package if you want libguestfs to be able to +inspect non-Linux guests and display icons from them. + +The only reason this is a separate package is to avoid core libguestfs +having to depend on Perl. See https://bugzilla.redhat.com/1194158 + + +%package bash-completion +Summary: Bash tab-completion scripts for %{name} tools +License: GPL-2.0-or-later +BuildArch: noarch +Requires: bash-completion >= 2.0 + + +%description bash-completion +Install this package if you want intelligent bash tab-completion +for guestfish, guestmount and various virt-* tools. + + +%package -n ocaml-%{name} +Summary: OCaml bindings for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + + +%description -n ocaml-%{name} +ocaml-%{name} contains OCaml bindings for %{name}. + +This is for toplevel and scripting access only. To compile OCaml +programs which use %{name} you will also need ocaml-%{name}-devel. + + +%package -n ocaml-%{name}-devel +Summary: OCaml bindings for %{name} +Requires: ocaml-%{name}%{?_isa} = %{epoch}:%{version}-%{release} + + +%description -n ocaml-%{name}-devel +ocaml-%{name}-devel contains development libraries +required to use the OCaml bindings for %{name}. + + +%package -n perl-Sys-Guestfs +Summary: Perl bindings for %{name} (Sys::Guestfs) +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + + +%description -n perl-Sys-Guestfs +perl-Sys-Guestfs contains Perl bindings for %{name} (Sys::Guestfs). + + +%package -n python3-%{name} +Summary: Python 3 bindings for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +%{?python_provide:%python_provide python3-%{name}} + + +%description -n python3-%{name} +python3-%{name} contains Python 3 bindings for %{name}. + + +%if !0%{?rhel} +%package -n ruby-%{name} +Summary: Ruby bindings for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +Requires: ruby(release) +Requires: ruby +Provides: ruby(guestfs) = %{version} + +%description -n ruby-%{name} +ruby-%{name} contains Ruby bindings for %{name}. + + +%package -n php-%{name} +Summary: PHP bindings for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} + +%description -n php-%{name} +php-%{name} contains PHP bindings for %{name}. + + +%package -n lua-guestfs +Summary: Lua bindings for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +Requires: lua + +%description -n lua-guestfs +lua-guestfs contains Lua bindings for %{name}. + + +%package gobject +Summary: GObject bindings for %{name} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} + +%description gobject +%{name}-gobject contains GObject bindings for %{name}. + +To develop software against these bindings, you need to install +%{name}-gobject-devel. + + +%package gobject-devel +Summary: GObject bindings for %{name} +Requires: %{name}-gobject = %{epoch}:%{version}-%{release} + +%description gobject-devel +%{name}-gobject contains GObject bindings for %{name}. + +This package is needed if you want to write software using the +GObject bindings. It also contains GObject Introspection information. + + +%package vala +Summary: Vala for %{name} +Requires: %{name}-devel%{?_isa} = %{epoch}:%{version}-%{release} +Requires: vala + + +%description vala +%{name}-vala contains GObject bindings for %{name}. +%endif + + + +%ifarch %{golang_arches} +%package -n golang-guestfs +Summary: Golang bindings for %{name} +BuildArch: noarch +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: golang +Provides: golang(libguestfs.org) = %{epoch}:%{version}-%{release} + +%description -n golang-guestfs +golang-%{name} contains Go language bindings for %{name}. +%endif + + +%package man-pages-ja +Summary: Japanese (ja) man pages for %{name} +License: GPL-2.0-or-later +BuildArch: noarch +Requires: %{name} = %{epoch}:%{version}-%{release} + +%description man-pages-ja +%{name}-man-pages-ja contains Japanese (ja) man pages +for %{name}. + + +%package man-pages-uk +Summary: Ukrainian (uk) man pages for %{name} +License: GPL-2.0-or-later +BuildArch: noarch +Requires: %{name} = %{epoch}:%{version}-%{release} + +%description man-pages-uk +%{name}-man-pages-uk contains Ukrainian (uk) man pages +for %{name}. + + +%prep +%if 0%{verify_tarball_signature} +%{gpgverify} --keyring='%{SOURCE7}' --signature='%{SOURCE1}' --data='%{SOURCE0}' +%endif +%setup -q +%autopatch -p1 + +autoreconf -fiv + +# For sVirt to work, the local temporary directory we use in the tests +# must be labelled the same way as /tmp. This doesn't work if either +# the directory is on NFS (no SELinux labels) or if SELinux is +# disabled, hence the tests. +if [ "$(stat -f -L -c %T .)" != "nfs" ] && \ + [ "$(getenforce | tr '[A-Z]' '[a-z]')" != "disabled" ]; then + chcon --reference=/tmp tmp +fi + +# Replace developer-centric README that ships with libguestfs, with +# our replacement file. +mv README README.orig +sed 's/@VERSION@/%{version}/g' < %{SOURCE4} > README + + +%build +# Test if network is available. +ip addr list ||: +ip route list ||: +if ping -c 3 -w 20 8.8.8.8 && curl http://libguestfs.org -o /dev/null; then + extra= +else + mkdir cachedir repo + # For an explanation of what we are doing here, see: + # https://lists.fedorahosted.org/archives/list/koji-devel@lists.fedorahosted.org/thread/ZIBY53JAURLT3QRBBJIJJ7EZWLZDE3TI/ + # -n 1 because of RHBZ#980502. + dirs= + for d in /var/cache/{dnf,libdnf5,yum} ; do + if test -d $d ; then dirs="$dirs $d" ; fi + done + test -n "$dirs" + find $dirs -type f -name '*.rpm' -print0 | xargs -0 -n 1 cp -t repo + createrepo_c repo + sed -e "s|@PWD@|$(pwd)|" %{SOURCE6} > yum.conf + extra=--with-supermin-packager-config=$(pwd)/yum.conf +fi + +%{configure} \ +%if 0%{?rhel} + QEMU=%{_libexecdir}/qemu-kvm \ +%endif + PYTHON=%{__python3} \ + --with-default-backend=libvirt \ + --enable-appliance-format-auto \ +%if !0%{?rhel} + --with-extra="fedora=%{fedora},release=%{release},libvirt" \ +%else + --with-extra="rhel=%{rhel},release=%{release},libvirt" \ +%endif +%if 0%{?rhel} + --with-qemu="qemu-kvm qemu-system-%{_build_arch} qemu" \ +%endif +%ifnarch %{golang_arches} + --disable-golang \ +%endif + --without-java \ + --disable-erlang \ +%if 0%{?rhel} + --disable-gobject \ + --disable-lua \ + --disable-php \ + --disable-ruby \ +%endif + $extra + +# 'INSTALLDIRS' ensures that Perl and Ruby libs are installed in the +# vendor dir not the site dir. +%make_build INSTALLDIRS=vendor + + +%check +%ifarch %{test_arches} +# Only run the tests with non-debug (ie. non-Rawhide) kernels. +# XXX This tests for any debug kernel installed. +if grep CONFIG_DEBUG_MUTEXES=y /lib/modules/*/config ; then + echo "Skipping tests because debug kernel is installed" + exit 0 +fi + +export LIBGUESTFS_DEBUG=1 +export LIBGUESTFS_TRACE=1 +export LIBVIRT_DEBUG=1 + +if ! make quickcheck QUICKCHECK_TEST_TOOL_ARGS="-t 1200"; then + cat $HOME/.cache/libvirt/qemu/log/* + exit 1 +fi +%endif + + +%install +# 'INSTALLDIRS' ensures that Perl and Ruby libs are installed in the +# vendor dir not the site dir. +%make_install INSTALLDIRS=vendor + +# Delete static libraries. +rm $( find $RPM_BUILD_ROOT -name '*.a' | grep -v /ocaml/ ) + +# Delete libtool files. +find $RPM_BUILD_ROOT -name '*.la' -delete + +# Delete some bogus Perl files. +find $RPM_BUILD_ROOT -name perllocal.pod -delete +find $RPM_BUILD_ROOT -name .packlist -delete +find $RPM_BUILD_ROOT -name '*.bs' -delete +find $RPM_BUILD_ROOT -name 'bindtests.pl' -delete + +# golang: Ignore what libguestfs upstream installs, and just copy the +# source files to %%{_datadir}/gocode/src. +%ifarch %{golang_arches} +rm -r $RPM_BUILD_ROOT/usr/lib/golang +mkdir -p $RPM_BUILD_ROOT%{_datadir}/gocode/src +cp -a golang/src/libguestfs.org $RPM_BUILD_ROOT%{_datadir}/gocode/src +%endif + +# Split up the monolithic packages file in the supermin appliance so +# we can install dependencies in subpackages. +pushd $RPM_BUILD_ROOT%{_libdir}/guestfs/supermin.d + +function remove +{ + grep -Ev "^$1$" < packages > packages-t + mv packages-t packages +} + +function move_to +{ + if ! grep -Esq "^$1$" packages; then + echo "move_to $1: package name not found in packages file" + exit 1 + fi + remove "$1" + echo "$1" >> "$2" +} + +%if !0%{?rhel} +move_to sleuthkit zz-packages-forensics +move_to gfs2-utils zz-packages-gfs2 +move_to hfsplus-tools zz-packages-hfsplus +%else +remove sleuthkit +remove gfs2-utils +remove hfsplus-tools +%endif +move_to iputils zz-packages-rescue +move_to lsof zz-packages-rescue +move_to openssh-clients zz-packages-rescue +move_to pciutils zz-packages-rescue +move_to strace zz-packages-rescue +move_to vim-minimal zz-packages-rescue +move_to rsync zz-packages-rsync +move_to xfsprogs zz-packages-xfs +%if !0%{?rhel} +%ifnarch %{arm} aarch64 s390 s390x riscv64 +move_to zfs-fuse zz-packages-zfs +%endif +%else +remove zfs-fuse +%endif + +%if !0%{?rhel} +# On Fedora you need kernel-modules-extra to be able to mount +# UFS (BSD) filesystems. +echo "kernel-modules-extra" > zz-packages-ufs +%endif + +popd + +# If there is a bogus dependency on kernel-*, rename it to 'kernel' +# instead. This can happen for various reasons: +# - DNF picks kernel-debug instead of kernel. +# - Version of kernel-rt in brew > version of kernel. +# On all known architectures, depending on 'kernel' should +# mean "we need a kernel". +pushd $RPM_BUILD_ROOT%{_libdir}/guestfs/supermin.d +sed -i 's/^kernel-.*/kernel/' packages +popd + +# Guestfish colour prompts. +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/profile.d +install -m 0644 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d + +# Remove the .gitignore file from ocaml/html which will be copied to docdir. +rm ocaml/html/.gitignore + + +# Find locale files. +%find_lang %{name} + + +%files -f %{name}.lang +%license COPYING COPYING.LIB +%doc README +%{_bindir}/guestfish +%{_bindir}/guestmount +%{_bindir}/guestunmount +%{_bindir}/libguestfs-test-tool +%{_bindir}/virt-copy-in +%{_bindir}/virt-copy-out +%{_bindir}/virt-tar-in +%{_bindir}/virt-tar-out +%{_sbindir}/libguestfs-make-fixed-appliance +%{_libdir}/libguestfs.so.* +%{_mandir}/man1/guestfish.1* +%{_mandir}/man1/guestfs-faq.1* +%{_mandir}/man1/guestfs-performance.1* +%{_mandir}/man1/guestfs-recipes.1* +%{_mandir}/man1/guestfs-release-notes-1*.1* +%{_mandir}/man1/guestfs-release-notes.1* +%{_mandir}/man1/guestfs-security.1* +%{_mandir}/man1/guestmount.1* +%{_mandir}/man1/guestunmount.1* +%{_mandir}/man1/libguestfs-make-fixed-appliance.1* +%{_mandir}/man1/libguestfs-test-tool.1* +%{_mandir}/man1/virt-copy-in.1* +%{_mandir}/man1/virt-copy-out.1* +%{_mandir}/man1/virt-tar-in.1* +%{_mandir}/man1/virt-tar-out.1* +%{_mandir}/man5/libguestfs-tools.conf.5* +%config %{_sysconfdir}/profile.d/guestfish.sh +%config(noreplace) %{_sysconfdir}/libguestfs-tools.conf + + +%files appliance +%{_libdir}/guestfs/ +%exclude %{_libdir}/guestfs/supermin.d/zz-packages-* + + +%files devel +%doc AUTHORS HACKING TODO README +%doc examples/*.c +%{_libdir}/libguestfs.so +%{_mandir}/man1/guestfs-building.1* +%{_mandir}/man1/guestfs-hacking.1* +%{_mandir}/man1/guestfs-internals.1* +%{_mandir}/man1/guestfs-testing.1* +%{_mandir}/man3/guestfs.3* +%{_mandir}/man3/guestfs-examples.3* +%{_mandir}/man3/libguestfs.3* +%{_includedir}/guestfs.h +%{_libdir}/pkgconfig/libguestfs.pc + + +%if !0%{?rhel} +%files forensics +%{_libdir}/guestfs/supermin.d/zz-packages-forensics +%endif + +%if !0%{?rhel} +%files gfs2 +%{_libdir}/guestfs/supermin.d/zz-packages-gfs2 +%endif + +%if !0%{?rhel} +%ifnarch ppc +%files hfsplus +%{_libdir}/guestfs/supermin.d/zz-packages-hfsplus +%endif +%endif + +%files rsync +%{_libdir}/guestfs/supermin.d/zz-packages-rsync + +%files rescue +%{_libdir}/guestfs/supermin.d/zz-packages-rescue +%{_bindir}/virt-rescue +%{_mandir}/man1/virt-rescue.1* + +%if !0%{?rhel} +%files ufs +%{_libdir}/guestfs/supermin.d/zz-packages-ufs +%endif + +%files xfs +%{_libdir}/guestfs/supermin.d/zz-packages-xfs + +%if !0%{?rhel} +%ifnarch %{arm} aarch64 s390 s390x riscv64 +%files zfs +%{_libdir}/guestfs/supermin.d/zz-packages-zfs +%endif +%endif + + +%files inspect-icons +# no files + + +%files bash-completion +%dir %{_datadir}/bash-completion/completions +%{_datadir}/bash-completion/completions/guestfish +%{_datadir}/bash-completion/completions/guestmount +%{_datadir}/bash-completion/completions/guestunmount +%{_datadir}/bash-completion/completions/libguestfs-test-tool +%{_datadir}/bash-completion/completions/virt-copy-in +%{_datadir}/bash-completion/completions/virt-copy-out +%{_datadir}/bash-completion/completions/virt-rescue +%{_datadir}/bash-completion/completions/virt-tar-in +%{_datadir}/bash-completion/completions/virt-tar-out + + +%files -n ocaml-%{name} +%{_libdir}/ocaml/guestfs +%exclude %{_libdir}/ocaml/guestfs/*.a +%ifarch %{ocaml_native_compiler} +%exclude %{_libdir}/ocaml/guestfs/*.cmxa +%exclude %{_libdir}/ocaml/guestfs/*.cmx +%endif +%exclude %{_libdir}/ocaml/guestfs/*.mli +%{_libdir}/ocaml/stublibs/dllmlguestfs.so +%{_libdir}/ocaml/stublibs/dllmlguestfs.so.owner + + +%files -n ocaml-%{name}-devel +%doc ocaml/examples/*.ml ocaml/html +%{_libdir}/ocaml/guestfs/*.a +%ifarch %{ocaml_native_compiler} +%{_libdir}/ocaml/guestfs/*.cmxa +%{_libdir}/ocaml/guestfs/*.cmx +%endif +%{_libdir}/ocaml/guestfs/*.mli +%{_mandir}/man3/guestfs-ocaml.3* + + +%files -n perl-Sys-Guestfs +%doc perl/examples/*.pl +%{perl_vendorarch}/* +%{_mandir}/man3/Sys::Guestfs.3pm* +%{_mandir}/man3/guestfs-perl.3* + + +%files -n python3-%{name} +%doc python/examples/*.py +%{python3_sitearch}/libguestfsmod*.so +%{python3_sitearch}/guestfs.py +%{python3_sitearch}/__pycache__/guestfs*.py* +%{_mandir}/man3/guestfs-python.3* + + +%if !0%{?rhel} +%files -n ruby-%{name} +%doc ruby/examples/*.rb +%doc ruby/doc/site/* +%{ruby_vendorlibdir}/guestfs.rb +%{ruby_vendorarchdir}/_guestfs.so +%{_mandir}/man3/guestfs-ruby.3* + + +%files -n php-%{name} +%doc php/README-PHP +%dir %{_sysconfdir}/php.d +%{_sysconfdir}/php.d/guestfs_php.ini +%{_libdir}/php/modules/guestfs_php.so + + +%files -n lua-guestfs +%doc lua/examples/*.lua +%doc lua/examples/LICENSE +%{_libdir}/lua/*/guestfs.so +%{_mandir}/man3/guestfs-lua.3* + + +%files gobject +%{_libdir}/libguestfs-gobject-1.0.so.0* +%{_libdir}/girepository-1.0/Guestfs-1.0.typelib + + +%files gobject-devel +%{_libdir}/libguestfs-gobject-1.0.so +%{_includedir}/guestfs-gobject.h +%dir %{_includedir}/guestfs-gobject +%{_includedir}/guestfs-gobject/*.h +%{_datadir}/gir-1.0/Guestfs-1.0.gir +%{_libdir}/pkgconfig/libguestfs-gobject-1.0.pc +%{_mandir}/man3/guestfs-gobject.3* + + +%files vala +%{_datadir}/vala/vapi/libguestfs-gobject-1.0.deps +%{_datadir}/vala/vapi/libguestfs-gobject-1.0.vapi +%endif + + +%ifarch %{golang_arches} +%files -n golang-guestfs +%doc golang/examples/*.go +%doc golang/examples/LICENSE +%{_datadir}/gocode/src/libguestfs.org +%{_mandir}/man3/guestfs-golang.3* +%endif + + +%files man-pages-ja +%lang(ja) %{_mandir}/ja/man1/*.1* +%lang(ja) %{_mandir}/ja/man3/*.3* +%lang(ja) %{_mandir}/ja/man5/*.5* + + +%files man-pages-uk +%lang(uk) %{_mandir}/uk/man1/*.1* +%lang(uk) %{_mandir}/uk/man3/*.3* +%lang(uk) %{_mandir}/uk/man5/*.5* + + +%changelog +* Wed Aug 28 2024 Richard W.M. Jones - 1:1.52.2-4 +- Synchronize patches with RHEL 9.5 + resolves: RHEL-56325 +- appliance/init: Don't set impossible "noop" disk scheduler + resolves: RHEL-56157 + +* Thu Aug 08 2024 Troy Dawson - 1:1.52.2-2 +- Bump release for Aug 2024 java mass rebuild + +* Thu Jul 25 2024 Richard W.M. Jones - 1:1.52.2-1 +- Rebase to libguestfs 1.52.2 (along the stable branch) +- Remove dependency on syslinux packages + resolves: RHEL-50565 + +* Fri Jun 28 2024 Richard W.M. Jones - 1:1.52.1-6 +- Fix parsing in part_get_gpt_attributes + resolves: RHEL-45465 + +* Tue Jun 25 2024 Troy Dawson - 1:1.52.1-5 +- Bump release for June 2024 mass rebuild + +* Wed Jun 19 2024 Richard W.M. Jones - 1:1.52.1-4 +- OCaml 5.2.0 ppc64le fix + +* Fri May 31 2024 Richard W.M. Jones - 1:1.52.1-3 +- Rebuild for OCaml 5.2 +- Re-enable perl in RHEL, needed for virt-win-reg. + +* Mon May 13 2024 Richard W.M. Jones - 1:1.52.1-1 +- New stable branch version 1.52.1 +- Remove lua, perl, ruby, php and gobject bindings in RHEL +- Remove gdisk dependency for RHEL + resolves: RHEL-35998 + +* Thu Jan 25 2024 Fedora Release Engineering - 1:1.52.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 1:1.52.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 15 2024 Richard W.M. Jones - 1:1.52.0-5 +- Use curl instead of wget, since wget2 is broken + (https://gitlab.com/gnuwget/wget2/-/issues/652) +- Remove yajl daemon dep and replace with jansson. + +* Tue Jan 9 2024 Richard W.M. Jones - 1:1.52.0-3 +- Make cache directory find more robust + /var/cache/libdnf5 may be missing if dnf5 is not around + +* Mon Jan 8 2024 Richard W.M. Jones - 1:1.52.0-2 +- Look for RPMs in /var/cache/libdnf5 + https://bugzilla.redhat.com/show_bug.cgi?id=2256945#c5 + +* Thu Jan 4 2024 Richard W.M. Jones - 1:1.52.0-1 +- New upstream stable branch version 1.52.0 + +* Wed Jan 03 2024 Mamoru TASAKA - 1:1.51.10-2 +- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3 + +* Tue Dec 19 2023 Richard W.M. Jones - 1:1.51.10-1 +- New upstream development version 1.51.10 + +* Mon Dec 18 2023 Richard W.M. Jones - 1:1.51.9-4 +- OCaml 5.1.1 + s390x code gen fix for Fedora 40 + +* Thu Dec 14 2023 Richard W.M. Jones - 1:1.51.9-3 +- Fixes for https://github.com/ocaml/ocaml/issues/12820 + +* Tue Dec 12 2023 Richard W.M. Jones - 1:1.51.9-2 +- OCaml 5.1.1 rebuild for Fedora 40 + +* Sat Dec 9 2023 Richard W.M. Jones - 1:1.51.9-1 +- New upstream development version 1.51.9 + +* Mon Nov 27 2023 Richard W.M. Jones - 1:1.51.8-2 +- Fix build for libxml2 2.12.1 + +* Thu Nov 16 2023 Richard W.M. Jones - 1:1.51.8-1 +- New upstream development version 1.51.8 + +* Tue Nov 14 2023 Richard W.M. Jones - 1:1.51.7-6 +- Don't pull in selinux-policy as a requires + +* Mon Oct 30 2023 Richard W.M. Jones - 1:1.51.7-5 +- Use dhcpcd instead of dhclient (RHBZ#2247057) + +* Fri Oct 06 2023 Richard W.M. Jones - 1:1.51.7-4 +- Add upstream patch to fix linking the daemon with OCaml 5.1 + +* Thu Oct 05 2023 Richard W.M. Jones - 1:1.51.7-3 +- OCaml 5.1 rebuild for Fedora 40 + +* Wed Oct 4 2023 Jerry James - 1:1.51.7-2 +- Update names of the Unix and Camlstr libraries for OCaml 5.1.0 +- Link with libzstd for OCaml 5.1.0 + +* Tue Oct 03 2023 Remi Collet - 1:1.51.7-2 +- rebuild for https://fedoraproject.org/wiki/Changes/php83 + +* Thu Sep 21 2023 Richard W.M. Jones - 1:1.51.7-1 +- New upstream development branch 1.51.7 + +* Wed Jul 26 2023 Yaakov Selkowitz - 1:1.51.6-2 +- Use qemu-kvm in ELN builds + +* Thu Jul 20 2023 Richard W.M. Jones - 1:1.51.6-1 +- New upstream development branch 1.51.6 + +* Thu Jul 20 2023 Fedora Release Engineering - 1:1.51.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Fri Jul 14 2023 Richard W.M. Jones - 1:1.51.5-1 +- New upstream development branch 1.51.5 + +* Thu Jul 13 2023 Jitka Plesnikova - 1:1.51.4-8 +- Perl 5.38 re-rebuild updated packages + +* Thu Jul 13 2023 Richard W.M. Jones - 1:1.51.4-7 +- Bump and rebuild against supermin-5.3.3-13.fc39 + +* Thu Jul 13 2023 Jitka Plesnikova - 1:1.51.4-6 +- Perl 5.38 re-rebuild updated packages + +* Tue Jul 11 2023 Richard W.M. Jones - 1:1.51.4-5 +- OCaml 5.0 rebuild for Fedora 39 + +* Tue Jul 11 2023 Jitka Plesnikova - 1:1.51.4-4 +- Perl 5.38 rebuild + +* Mon Jul 10 2023 Jerry James - 1:1.51.4-3 +- OCaml 5.0.0 rebuild + +* Tue Jun 27 2023 Python Maint - 1:1.51.4-2 +- Rebuilt for Python 3.12 + +* Tue Jun 27 2023 Richard W.M. Jones - 1:1.51.4-1 +- New upstream development version 1.51.4 + +* Thu Jun 15 2023 Python Maint - 1:1.51.3-4 +- Rebuilt for Python 3.12 + +* Mon Jun 05 2023 Richard W.M. Jones - 1:1.51.3-3 +- Migrated to SPDX license + +* Fri May 19 2023 Richard W.M. Jones - 1:1.51.3-2 +- Rebuild against librpm 10 + +* Wed Apr 19 2023 Richard W.M. Jones - 1:1.51.3-1 +- New upstream development version 1.51.3 + +* Tue Feb 21 2023 Richard W.M. Jones - 1:1.51.2-1 +- New upstream development version 1.51.2 + +* Fri Feb 10 2023 Richard W.M. Jones - 1:1.51.1-1 +- New upstream development version 1.51.1 +- Remove virt-dib + +* Tue Feb 07 2023 Richard W.M. Jones - 1:1.50.0-1 +- New upstream stable branch 1.50.0 + +* Tue Jan 24 2023 Richard W.M. Jones - 1:1.49.9-2 +- Rebuild OCaml packages for F38 + +* Fri Jan 20 2023 Richard W.M. Jones - 1:1.49.9-1 +- New upstream development version 1.49.9 +- +BR ocaml-augeas-devel + +* Thu Jan 19 2023 Fedora Release Engineering - 1:1.49.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Jan 04 2023 Mamoru TASAKA - 1:1.49.8-2 +- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.2 + +* Sat Dec 10 2022 Richard W.M. Jones - 1:1.49.8-1 +- New upstream development version 1.49.8 + +* Mon Nov 28 2022 Richard W.M. Jones - 1:1.49.7-1 +- New upstream development version 1.49.7 + +* Mon Nov 21 2022 Richard W.M. Jones - 1:1.49.6-1 +- New upstream development version 1.49.6 + +* Tue Nov 08 2022 Richard W.M. Jones - 1:1.49.5-3 +- Move libguestfs-make-fixed-appliance to main package (RHBZ#2140695) + +* Tue Oct 11 2022 Richard W.M. Jones - 1:1.49.5-2 +- New upstream development version 1.49.5 + +* Wed Oct 05 2022 Remi Collet - 1:1.49.4-2 +- rebuild for https://fedoraproject.org/wiki/Changes/php82 + +* Mon Aug 01 2022 Richard W.M. Jones - 1:1.49.4-1 +- New upstream development version 1.49.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 1:1.49.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jul 04 2022 Richard W.M. Jones - 1:1.49.3-2 +- Add clevis-luks to BRs, required by 1.49.3 + +* Fri Jul 01 2022 Richard W.M. Jones - 1:1.49.3-1 +- New upstream development version 1.49.3 + +* Mon Jun 20 2022 Python Maint - 1:1.49.2-7 +- Rebuilt for Python 3.11 + +* Sun Jun 19 2022 Richard W.M. Jones - 1:1.49.2-6 +- OCaml 4.14.0 rebuild + +* Thu Jun 16 2022 Python Maint - 1:1.49.2-5 +- Rebuilt for Python 3.11 + +* Thu Jun 16 2022 Richard W.M. Jones - 1:1.49.2-4 +- Fix PHP bindings + +* Wed Jun 15 2022 Python Maint - 1:1.49.2-3 +- Rebuilt for Python 3.11 + +* Wed Jun 01 2022 Jitka Plesnikova - 1:1.49.2-2 +- Perl 5.36 rebuild + +* Thu May 26 2022 Richard W.M. Jones - 1:1.49.2-1 +- New upstream development version 1.49.2 + +* Sat May 21 2022 Richard W.M. Jones - 1:1.49.1-2 +- Add upstream patch which helps debugging appliance generation. + +* Thu May 12 2022 Richard W.M. Jones - 1:1.49.1-1 +- New upstream development version 1.49.1 + +* Thu Apr 14 2022 Richard W.M. Jones - 1:1.48.1-1 +- New upstream stable branch version 1.48.1 + +* Mon Mar 14 2022 Richard W.M. Jones - 1:1.48.0-1 +- New upstream stable branch version 1.48.0 +- Remove the RHEL (downstream) patches as they are out of date. + +* Tue Mar 08 2022 Richard W.M. Jones - 1:1.47.4-1 +- New upstream development version 1.47.4 +- Replace guestfs-release-notes-historical(1) with guestfs-release-notes(1) + +* Tue Mar 01 2022 Richard W.M. Jones - 1:1.47.3-1 +- New upstream development version 1.47.3 +- Enable tests on all arches again. + +* Mon Feb 28 2022 Richard W.M. Jones - 1:1.47.2-6 +- Add more external programs used by the library + +* Tue Feb 08 2022 Richard W.M. Jones - 1:1.47.2-5 +- Bump and rebuild for eln + +* Fri Feb 04 2022 Richard W.M. Jones - 1:1.47.2-4 +- OCaml 4.13.1 rebuild to remove package notes + +* Thu Jan 20 2022 Fedora Release Engineering - 1:1.47.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Jan 04 2022 Richard W.M. Jones - 1:1.47.2-2 +- Build and rebuild for new glibc causing broken deps on armv7 (RHBZ#2034715) + +* Fri Dec 24 2021 Richard W.M. Jones - 1:1.47.2-1 +- New upstream development version 1.47.2 + +* Thu Dec 09 2021 Richard W.M. Jones - 1:1.47.1-1 +- New upstream development version 1.47.1 + +* Fri Oct 29 2021 Richard W.M. Jones - 1:1.46.0-4 +- Require libvirt-daemon-driver-storage-core + resolves: rhbz#2018358 + +* Thu Oct 28 2021 Remi Collet - 1:1.46.0-3 +- rebuild for https://fedoraproject.org/wiki/Changes/php81 + +* Tue Oct 05 2021 Richard W.M. Jones - 1:1.46.0-2 +- OCaml 4.13.1 build + +* Thu Sep 23 2021 Richard W.M. Jones - 1:1.46.0-1 +- New upstream stable branch version 1.46.0 +- Remove BUGS file, no longer provided upstream + +* Tue Aug 31 2021 Richard W.M. Jones - 1:1.45.7-2 +- Rebuild for updated ntfs-3g CVE (RHBZ#1999788) + +* Tue Aug 31 2021 Richard W.M. Jones - 1:1.45.7-1 +- New upstream development version 1.45.7. +- Fix to work with qemu 6.1 (RHBZ#1998820) + +* Fri Aug 06 2021 Richard W.M. Jones - 1:1.45.6-11 +- Fix license files. +- Move appliance to separate subpackage (RHBZ#1989514). + +* Thu Jul 22 2021 Fedora Release Engineering - 1:1.45.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jun 29 2021 Richard W.M. Jones - 1:1.45.6-9 +- RHEL 9 patch for openssl missing configuration file + https://bugzilla.redhat.com/show_bug.cgi?id=1977214#c13 + +* Thu Jun 24 2021 Richard W.M. Jones - 1:1.45.6-8 +- Remove Suggests for unsupported qemu drivers in RHEL (RHBZ#1975703) + +* Sat Jun 12 2021 Richard W.M. Jones - 1:1.45.6-6 +- Depend on hivex-libs instead of hivex. + +* Fri Jun 04 2021 Python Maint - 1:1.45.6-5 +- Rebuilt for Python 3.10 + +* Thu Jun 3 2021 Richard W.M. Jones - 1:1.45.6-4 +- Add --enable-appliance-format-auto (RHBZ#1967166) + +* Wed Jun 2 2021 Richard W.M. Jones - 1:1.45.6-3 +- Add gating tests (for RHEL 9) + +* Tue Jun 01 2021 Richard W.M. Jones - 1:1.45.6-2 +- Depend on rpm-libs >= 4.16.1.3 (RHBZ#1966541). + +* Thu May 27 2021 Richard W.M. Jones - 1:1.45.6-1 +- New upstream development version 1.45.6. + +* Fri May 21 2021 Jitka Plesnikova - 1:1.45.5-3 +- Perl 5.34 rebuild + +* Mon May 10 2021 Jeff Law - 1:1.45.5-2 +- Re-enable LTO + +* Fri Apr 09 2021 Richard W.M. Jones - 1:1.45.5-1 +- New upstream development version 1.45.5. + +* Sat Apr 03 2021 Richard W.M. Jones - 1:1.45.4-1 +- New upstream version 1.45.4. + +* Wed Mar 31 2021 Richard W.M. Jones - 1:1.45.3-6 +- Don't require genisoimage or xorriso for the appliance. +- Add workaround for broken "file" utility in Rawhide (RHBZ#1945122). + +* Tue Mar 30 2021 Richard W.M. Jones - 1:1.45.3-4 +- Add downstream (RHEL-only) patches (RHBZ#1931724). +- Switch from genisoimage to xorriso. + +* Mon Mar 29 2021 Richard W.M. Jones - 1:1.45.3-2 +- New upstream release 1.45.3. +- Add proper dependencies on librpm, remove BDB. + +* Fri Mar 26 2021 Richard W.M. Jones - 1:1.45.2-2 +- Remove no longer needed requires on libguestfs-tools-c. + +* Tue Mar 23 2021 Richard W.M. Jones - 1:1.45.2-1 +- New upstream version 1.45.2. +- This drops the tools. Now packaged as guestfs-tools. +- guestfish, guestmount, guestunmount now packaged with libguestfs. +- virt-rescue now packaged in libguestfs-rescue. +- Drop ChangeLog file. +- Remove virt-dib in RHEL 9. +- Depend on PCRE2 instead of PCRE. + +* Thu Mar 18 2021 Richard W.M. Jones - 1:1.45.1-6 +- Drop dependency on perl(Sys::Virt). +- Fix -cpu max and require libvirt >= 7.1.0. + +* Wed Mar 10 2021 Richard W.M. Jones - 1:1.45.1-4 +- Drop Requires: libvirt-daemon-kvm, pulls in the whole of qemu and subpkgs. + +* Mon Mar 8 2021 Richard W.M. Jones - 1:1.45.1-3 +- Bump and rebuild for ocaml-gettext update. + +* Fri Mar 5 2021 Remi Collet - 1:1.45.1-2 +- rebuild for https://fedoraproject.org/wiki/Changes/php80 +- add trivial patch to fix build with PHP 8 + +* Wed Mar 3 2021 Richard W.M. Jones - 1:1.45.1-1 +- New upstream version 1.45.1. + +* Tue Mar 2 2021 Richard W.M. Jones - 1:1.44.0-8 +- OCaml 4.12.0 build +- Fixes for OCaml 4.12. + +* Wed Feb 17 2021 Richard W.M. Jones - 1:1.44.0-6 +- Remove jfsutils (dead upstream since 2011). +- Remove nilfs (dead upstream since 2015). +- Remove reiserfs (dead upstream since 2006). + +* Tue Feb 09 2021 Richard W.M. Jones - 1:1.44.0-5 +- Remove gfs2-utils dependency in RHEL 9. + +* Thu Jan 28 2021 Richard W.M. Jones - 1:1.44.0-4 +- ELN has full-fat qemu (not qemu-kvm). + +* Tue Jan 26 2021 Fedora Release Engineering - 1:1.44.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 07 2021 Mamoru TASAKA - 1:1.44.0-2 +- F-34: rebuild against ruby 3.0 + +* Wed Jan 06 2021 Richard W.M. Jones - 1:1.44.0-1 +- New upstream stable version 1.44.0. + +* Tue Jan 05 2021 Richard W.M. Jones - 1:1.43.4-1 +- New upstream version 1.43.4. + +* Mon Jan 04 2021 Richard W.M. Jones - 1:1.43.3-4 +- Drop explicit deps on perl(Sys::Virt) and perl(Win::Hivex). + +* Wed Dec 02 2020 Richard W.M. Jones - 1:1.43.3-3 +- Unify Fedora and RHEL spec files. + +* Tue Dec 01 2020 Richard W.M. Jones - 1:1.43.3-2 +- New upstream version 1.43.3. +- Disable LTO because of memory running out on ARMv7. + +* Mon Sep 21 2020 Richard W.M. Jones - 1:1.43.2-1 +- New upstream version 1.43.2. +- Replace libvirt-daemon-qemu with libvirt-daemon-kvm. + +* Tue Sep 01 2020 Richard W.M. Jones - 1:1.43.1-7 +- OCaml 4.11.1 rebuild + +* Fri Aug 21 2020 Richard W.M. Jones - 1:1.43.1-6 +- OCaml 4.11.0 rebuild + +* Mon Aug 10 2020 Merlin Mathesius - 1.43.1-5 +- Use ExclusiveArch: %%{kernel_arches} + +* Fri Jul 31 2020 Richard W.M. Jones - 1:1.43.1-4 +- Disable then reenable LTO. + https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/ULGH5JYL7MHKDKTINJLOEN2QG6LOHWH7/ + +* Tue Jul 28 2020 Fedora Release Engineering - 1:1.43.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 6 2020 Richard W.M. Jones - 1:1.43.1-1 +- New development branch 1.43. +- Remove upstream patches. + +* Thu Jun 25 2020 Jitka Plesnikova - 1:1.42.0-8 +- Perl 5.32 rebuild + +* Tue May 26 2020 Miro Hrončok - 1:1.42.0-7 +- Rebuilt for Python 3.9 + +* Wed May 06 2020 Richard W.M. Jones - 1:1.42.0-6 +- Fix path to libguestfs appliance. + +* Tue May 05 2020 Richard W.M. Jones - 1:1.42.0-5 +- OCaml 4.11.0+dev2-2020-04-22 rebuild + +* Wed Apr 22 2020 Richard W.M. Jones - 1:1.42.0-4 +- OCaml 4.11.0 pre-release attempt 2 + +* Sat Apr 04 2020 Richard W.M. Jones - 1:1.42.0-3 +- Update all OCaml dependencies for RPM 4.16. + +* Thu Mar 12 2020 Richard W.M. Jones - 1:1.42.1-1 +- Enable NTFS-3g system compression. + +* Mon Mar 09 2020 Richard W.M. Jones - 1:1.42.0-1 +- New upstream stable version 1.42.0. +- Drop the benchmarking subpackage: moved to a new package upstream. +- Enable Vala bindings. + +* Thu Feb 27 2020 Richard W.M. Jones - 1:1.41.8-9 +- OCaml 4.10.0 final. + +* Wed Jan 29 2020 Fedora Release Engineering - 1:1.41.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Jan 20 2020 Vít Ondruch - 1:1.41.8-7 +- Another rebuild against Ruby 2.7. + +* Sun Jan 19 2020 Richard W.M. Jones - 1:1.41.8-5 +- OCaml 4.10.0+beta1 rebuild. + +* Sat Jan 18 2020 Mamoru TASAKA - 1:1.41.8-4 +- F-32: rebuild against ruby27 + +* Fri Dec 06 2019 Richard W.M. Jones - 1:1.41.8-3 +- OCaml 4.09.0 (final) rebuild. + +* Wed Nov 27 2019 Richard W.M. Jones - 1:1.41.8-2 +- Use gpgverify macro instead of explicit gpgv2 command. + +* Tue Nov 19 2019 Richard W.M. Jones - 1:1.41.8-1 +- New upstream version 1.41.8. +- virt-v2v is now in a separate project. +- Drop erlang bindings. + +* Fri Oct 11 2019 Richard W.M. Jones - 1:1.41.5-1 +- New upstream version 1.41.5. + +* Fri Oct 04 2019 Remi Collet - 1:1.41.4-2 +- rebuild for https://fedoraproject.org/wiki/Changes/php74 + +* Tue Sep 17 2019 Pino Toscano - 1:1.41.4-2 +- Drop virt-p2v (virt-p2v-maker subpackage), which is now built from + its own source. + +* Mon Sep 02 2019 Richard W.M. Jones - 1:1.41.4-1 +- New upstream version 1.41.4. + +* Mon Aug 19 2019 Miro Hrončok - 1:1.40.2-10 +- Rebuilt for Python 3.8 + +* Fri Aug 16 2019 Richard W.M. Jones - 1:1.40.2-9 +- OCaml 4.08.1 (final) rebuild. + +* Thu Aug 01 2019 Richard W.M. Jones - 1:1.40.2-8 +- OCaml 4.08.1 (rc2) rebuild. + +* Thu Jul 25 2019 Fedora Release Engineering - 1:1.40.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild +- Disable the package entirely on i686 because there is no kernel + https://fedoraproject.org/wiki/Changes/Stop_Building_i686_Kernels + +* Fri May 31 2019 Jitka Plesnikova - 1:1.40.2-6 +- Perl 5.30 rebuild + +* Fri May 31 2019 Richard W.M. Jones - 1:1.40.2-5 +- Add proposed patch for Python 3.8 (RHBZ#1705482). + +* Mon Mar 18 2019 Richard W.M. Jones - 1:1.40.2-4 +- Remove Java bindings. + https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/CW4XMOIKMNRRPAZ4H2ER7VPBY6YV2ODL/#YHTZ7IGVTKPWCBOY5C6UW7BMX7F35R5Q + +* Thu Mar 07 2019 Richard W.M. Jones - 1:1.40.2-3 +- Remove Python 2 bindings completely. + https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sun Feb 17 2019 Igor Gnatenko - 1:1.40.2-2 +- Rebuild for readline 8.0 + +* Fri Feb 08 2019 Richard W.M. Jones - 1:1.40.2-1 +- New upstream version 1.40.2. + +* Fri Feb 01 2019 Fedora Release Engineering - 1:1.40.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Jan 22 2019 Mamoru TASAKA - 1:1.40.1-4 +- F-30: rebuild against ruby26 + +* Mon Jan 21 2019 David Abdurachmanov - 1:1.40.1-3 +- Disable ZFS for RISC-V (riscv64) + +* Thu Jan 17 2019 Richard W.M. Jones - 1:1.40.1-2 +- nbdkit Python3 plugin is called "python3" in Fedora, adjust configure line. + +* Thu Jan 17 2019 Richard W.M. Jones - 1:1.40.1-1 +- New upstream version 1.40.1. +- Remove patch which is now upstream. +- Add new virt-v2v man pages. + +* Mon Jan 14 2019 Björn Esser - 1:1.39.11-4 +- Rebuilt for libcrypt.so.2 (#1666033) + +* Tue Jan 08 2019 Richard W.M. Jones - 1:1.39.11-3 +- Small fix for qemu behaviour (RHBZ#1664318). + +* Fri Oct 12 2018 Richard W.M. Jones - 1:1.39.11-2 +- lib: Add Recommends for libvirt-daemon-config-network so that networking + works out of the box. + +* Sat Sep 22 2018 Richard W.M. Jones - 1:1.39.11-1 +- New upstream version 1.39.11. + +* Fri Sep 21 2018 Richard W.M. Jones - 1:1.39.10-1 +- New upstream version 1.39.10. + +* Fri Aug 31 2018 Richard W.M. Jones - 1:1.39.9-1 +- New upstream version 1.39.9. + +* Fri Jul 27 2018 Richard W.M. Jones - 1:1.39.8-1 +- New upstream version 1.39.8. + +* Thu Jul 26 2018 Richard W.M. Jones - 1:1.39.7-3 +- v2v: Recommends nbdkit-plugin-vddk for -it vddk mode. + +* Tue Jul 24 2018 Richard W.M. Jones - 1:1.39.7-2 +- Rebuild for unannounced soname bump in libconfig. + +* Sat Jul 14 2018 Richard W.M. Jones - 1:1.39.7-1 +- New upstream version 1.39.7. +- v2v/TODO was removed upstream. + +* Fri Jul 13 2018 Richard W.M. Jones - 1:1.39.6-10 +- v2v: Recommends nbdkit and the Python 3 plugin. + +* Fri Jul 13 2018 Fedora Release Engineering - 1:1.39.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Jul 11 2018 Richard W.M. Jones - 1:1.39.6-7 +- OCaml 4.07.0 (final) rebuild. + +* Tue Jul 10 2018 Richard W.M. Jones - 1:1.39.6-6 +- Update PHP dependencies. + +* Thu Jul 05 2018 Richard W.M. Jones - 1:1.39.6-5 +- Remove ldconfig + https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/SU3LJVDZ7LUSJGZR5MS72BMRAFP3PQQL/ +- BR on python-unversioned-command + https://fedoraproject.org/wiki/Changes/Move_usr_bin_python_into_separate_package + +* Tue Jul 03 2018 Petr Pisar - 1:1.39.6-4 +- Perl 5.28 rebuild + +* Mon Jul 02 2018 Miro Hrončok - 1:1.39.6-3 +- Rebuilt for Python 3.7 + +* Fri Jun 29 2018 Jitka Plesnikova - 1:1.39.6-2 +- Perl 5.28 rebuild + +* Fri Jun 29 2018 Richard W.M. Jones - 1:1.39.6-1 +- New upstream version 1.39.6. +- Add new bash-completion script for libguestfs-test-tool. + +* Wed Jun 20 2018 Richard W.M. Jones - 1:1.39.5-5 +- Bump release and rebuild. + +* Wed Jun 20 2018 Richard W.M. Jones - 1:1.39.5-4 +- Bump release and rebuild. + +* Wed Jun 20 2018 Richard W.M. Jones - 1:1.39.5-3 +- OCaml 4.07.0-rc1 rebuild. + +* Tue Jun 19 2018 Miro Hrončok - 1:1.39.5-2 +- Rebuilt for Python 3.7 + +* Wed May 23 2018 Richard W.M. Jones - 1:1.39.5-1 +- New upstream version 1.39.5. + +* Wed May 02 2018 Richard W.M. Jones - 1:1.39.4-1 +- New upstream version 1.39.4. + +* Sun Apr 22 2018 Richard W.M. Jones - 1:1.39.3-1 +- New upstream version 1.39.3. +- Remove upstream patch. + +* Tue Apr 10 2018 Iryna Shcherbina - 1:1.39.2-3 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Thu Mar 29 2018 Richard W.M. Jones - 1:1.39.2-2 +- Add patch to fix detection of qemu mandatory locking. + +* Thu Mar 29 2018 Richard W.M. Jones - 1:1.39.2-1 +- New upstream version 1.39.2. + +* Tue Mar 13 2018 Richard W.M. Jones - 1:1.39.1-1 +- New upstream version 1.39.1. + +* Fri Feb 09 2018 Richard W.M. Jones - 1:1.38.0-1 +- New upstream version 1.38.0. +- Enable tarball signing since we are on a stable branch. +- Fix Source URLs. + +* Tue Feb 06 2018 Richard W.M. Jones - 1:1.37.37-1 +- New upstream version 1.37.37. + +* Thu Jan 25 2018 Richard W.M. Jones - 1:1.37.36-1 +- New upstream version 1.37.36. +- Unbreak the linker. + +* Sat Jan 20 2018 Björn Esser - 1:1.37.35-3 +- Rebuilt for switch to libxcrypt + +* Thu Jan 11 2018 Richard W.M. Jones - 1:1.37.35-2 +- Add BR rpcgen, libtirpc-devel and rebuild against updated Ruby. + +* Sun Dec 10 2017 Richard W.M. Jones - 1:1.37.35-1 +- New upstream version 1.37.35. +- Remove upstream patches. +- Add virt-builder-repository and man page. + +* Thu Dec 7 2017 Richard W.M. Jones - 1:1.37.34-4 +- Remove for libvirt >= 3.10. + +* Sun Dec 3 2017 Richard W.M. Jones - 1:1.37.34-3 +- Fix locking on NBD drives. + +* Fri Nov 17 2017 Richard W.M. Jones - 1:1.37.34-2 +- OCaml 4.06.0 rebuild. + +* Fri Nov 17 2017 Richard W.M. Jones - 1:1.37.34-1 +- New upstream version 1.37.34. + +* Thu Oct 19 2017 Richard W.M. Jones - 1:1.37.31-1 +- New upstream version 1.37.31. + +* Tue Oct 10 2017 Richard W.M. Jones - 1:1.37.29-1 +- New upstream version 1.37.29. + +* Thu Oct 05 2017 Richard W.M. Jones - 1:1.37.28-2 +- Add libguestfs-ufs (BSD) subpackage. + +* Thu Sep 28 2017 Richard W.M. Jones - 1:1.37.28-1 +- New upstream version 1.37.28. + +* Sat Sep 23 2017 Richard W.M. Jones - 1:1.37.27-1 +- New upstream version 1.37.27. + +* Sun Sep 17 2017 Richard W.M. Jones - 1:1.37.26-1 +- New upstream version 1.37.26. + +* Sat Sep 16 2017 Richard W.M. Jones - 1:1.37.25-1 +- New upstream version 1.37.25. + +* Tue Sep 05 2017 Richard W.M. Jones - 1:1.37.22-1 +- New upstream version 1.37.22. + +* Sat Aug 19 2017 Richard W.M. Jones - 1:1.37.21-2 +- Disable zfs subpackage on s390, s390x. + +* Wed Aug 09 2017 Richard W.M. Jones - 1:1.37.21-1 +- New upstream version 1.37.21. + +* Tue Aug 08 2017 Richard W.M. Jones - 1:1.37.20-2 +- OCaml 4.05.0 rebuild. + +* Fri Aug 04 2017 Richard W.M. Jones - 1:1.37.20-1 +- New upstream version 1.37.20. + +* Thu Aug 03 2017 Fedora Release Engineering - 1:1.37.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Sat Jul 29 2017 Richard W.M. Jones - 1:1.37.19-1 +- New upstream version 1.37.19. + +* Wed Jul 26 2017 Fedora Release Engineering - 1:1.37.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Jul 18 2017 Richard W.M. Jones - 1:1.37.18-1 +- New upstream version 1.37.18. + +* Tue Jul 11 2017 Richard W.M. Jones - 1:1.37.17-2 +- New upstream version 1.37.17. +- Drop libguestfs-gobject-doc because gtk-doc is no longer provided upstream. +- Add new man page guestfs-gobject(3) to libguestfs-gobject-devel. + +* Mon Jun 26 2017 Richard W.M. Jones - 1:1.37.16-2 +- OCaml 4.04.2 rebuild. + +* Fri Jun 23 2017 Richard W.M. Jones - 1:1.37.16-1 +- New upstream version 1.37.16. + +* Tue Jun 06 2017 Jitka Plesnikova - 1:1.37.14-3 +- Perl 5.26 rebuild + +* Mon May 22 2017 Richard W.M. Jones - 1:1.37.14-2 +- Bump release and rebuild for ppc64, ppc64le and s390x. + +* Fri May 19 2017 Richard W.M. Jones - 1:1.37.14-1 +- New upstream version 1.37.14. + +* Fri May 12 2017 Richard W.M. Jones - 1:1.37.13-2 +- OCaml 4.04.1 rebuild. + +* Mon May 08 2017 Richard W.M. Jones - 1:1.37.13-1 +- New upstream version 1.37.13. + +* Wed Apr 26 2017 Richard W.M. Jones - 1:1.37.12-1 +- New upstream version 1.37.12. + +* Sat Apr 15 2017 Richard W.M. Jones - 1:1.37.11-1 +- New upstream version 1.37.11. + +* Wed Apr 12 2017 Richard W.M. Jones - 1:1.37.10-1 +- New upstream version 1.37.10. + +* Sat Apr 08 2017 Richard W.M. Jones - 1:1.37.9-1 +- New upstream version 1.37.9. + +* Fri Mar 31 2017 Richard W.M. Jones - 1:1.37.8-1 +- New upstream version 1.37.8. + +* Fri Mar 24 2017 Richard W.M. Jones - 1:1.37.7-1 +- New upstream version 1.37.7. + +* Mon Mar 20 2017 Richard W.M. Jones - 1:1.37.6-1 +- New upstream version 1.37.6. + +* Tue Mar 14 2017 Richard W.M. Jones - 1:1.37.2-1 +- New upstream version 1.37.2. + +* Tue Mar 07 2017 Richard W.M. Jones - 1:1.37.1-1 +- New upstream version 1.37.1. + +* Tue Feb 28 2017 Richard W.M. Jones - 1:1.37.0-1 +- New upstream version 1.37.0. + +* Fri Feb 24 2017 Richard W.M. Jones - 1:1.35.28-1 +- New upstream version 1.35.28. + +* Thu Feb 23 2017 Richard W.M. Jones - 1:1.35.27-1 +- New upstream version 1.35.27. + +* Wed Feb 22 2017 Richard W.M. Jones - 1:1.35.26-1 +- New upstream version 1.35.26. + +* Wed Feb 15 2017 Richard W.M. Jones - 1:1.35.25-1 +- New upstream version 1.35.25. + +* Sat Feb 11 2017 Richard W.M. Jones - 1:1.35.24-1 +- New upstream version 1.35.24. + +* Sat Feb 11 2017 Richard W.M. Jones - 1:1.35.23-1 +- New upstream version 1.35.23. + +* Fri Feb 10 2017 Richard W.M. Jones - 1:1.35.22-1 +- New upstream version 1.35.22. + +* Wed Feb 08 2017 Richard W.M. Jones - 1:1.35.21-1 +- New upstream version 1.35.21. + +* Thu Feb 02 2017 Pino Toscano - 1:1.35.20-2 +- Avoid spurious dependencies on kernel-debug etc. + +* Sat Jan 28 2017 Richard W.M. Jones - 1:1.35.20-1 +- New upstream version 1.35.20. + +* Fri Jan 13 2017 Mamoru TASAKA - 1:1.35.19-4 +- Rebuild again for f26-ruby24 sidetag + +* Thu Jan 12 2017 Igor Gnatenko - 1:1.35.19-3 +- Rebuild for readline 7.x + +* Thu Jan 12 2017 Vít Ondruch - 1:1.35.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4 + +* Sat Dec 24 2016 Richard W.M. Jones - 1:1.35.19-1 +- New upstream version 1.35.19. + +* Thu Dec 22 2016 Miro Hrončok - 1:1.35.18-3 +- Second rebuild for Python 3.6 + +* Mon Dec 19 2016 Miro Hrončok - 1:1.35.18-2 +- Rebuild for Python 3.6 + +* Thu Dec 15 2016 Richard W.M. Jones - 1:1.35.18-1 +- New upstream version 1.35.18. + +* Sun Dec 11 2016 Richard W.M. Jones - 1:1.35.17-1 +- New upstream version 1.35.17. + +* Mon Nov 14 2016 Richard W.M. Jones - 1:1.35.14-4 +- Use _isa macro on dependencies (except for noarch packages). + https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/QSQ7CWSFZ3CRHH7DDGAWVUCB2KFC3OWQ/ + +* Fri Nov 11 2016 Richard W.M. Jones - 1:1.35.14-3 +- Drop libguestfs-live-service subpackage. +- Remove setting _hardened_build since it is now the default in Fedora. +- Some tidying up of the description section. +- Require Augeas 1.7.0. + +* Sat Nov 05 2016 Richard W.M. Jones - 1:1.35.14-2 +- Rebuild for OCaml 4.04.0. + +* Wed Oct 26 2016 Richard W.M. Jones - 1:1.35.14-1 +- New upstream version 1.35.14. +- Add dbus-devel BR for virt-p2v. + +* Fri Oct 21 2016 Richard W.M. Jones - 1:1.35.9-1 +- New upstream version 1.35.9. + +* Fri Oct 21 2016 Richard W.M. Jones - 1:1.35.8-2 +- Add 'Suggests: perl' for virt-edit and virt-customize. + +* Wed Oct 12 2016 Richard W.M. Jones - 1:1.35.8-1 +- New upstream version 1.35.8. + +* Thu Oct 06 2016 Richard W.M. Jones - 1:1.35.6-2 +- Split off virt-p2v into virt-p2v-maker so it doesn't depend on X + (RHBZ#1382275). + +* Fri Sep 23 2016 Richard W.M. Jones - 1:1.35.6-1 +- New upstream version 1.35.6. + +* Mon Sep 12 2016 Richard W.M. Jones - 1:1.35.5-1 +- New upstream version 1.35.5. + +* Sat Sep 03 2016 Richard W.M. Jones - 1:1.35.4-1 +- New upstream version 1.35.4. + +* Thu Sep 01 2016 Richard W.M. Jones - 1:1.35.3-1 +- New upstream version 1.35.3. + +* Fri Aug 05 2016 Richard W.M. Jones - 1:1.33.49-1 +- New upstream version 1.33.49. + +* Wed Jul 27 2016 Richard W.M. Jones - 1:1.33.46-1 +- New upstream version 1.33.46. + +* Sat Jul 23 2016 Richard W.M. Jones - 1:1.33.45-1 +- New upstream version 1.33.45. + +* Tue Jul 19 2016 Richard W.M. Jones - 1:1.33.44-1 +- New upstream version 1.33.44. + +* Tue Jul 19 2016 Fedora Release Engineering - 1:1.33.43-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Fri Jul 15 2016 Richard W.M. Jones - 1:1.33.43-2 +- Fix missing dependency on policycoreutils. + +* Fri Jul 15 2016 Richard W.M. Jones - 1:1.33.43-1 +- New upstream version 1.33.43. + +* Wed Jul 13 2016 Richard W.M. Jones - 1:1.33.42-2 +- Don't install libtool wrapper scripts in benchmarking subpkg. + +* Sat Jul 09 2016 Richard W.M. Jones - 1:1.33.42-1 +- New upstream version 1.33.42. + +* Wed Jul 06 2016 Richard W.M. Jones - 1:1.33.41-1 +- New upstream version 1.33.41. + +* Fri Jul 01 2016 Richard W.M. Jones - 1:1.33.40-1 +- New upstream version 1.33.40. + +* Fri Jun 24 2016 Richard W.M. Jones - 1:1.33.39-1 +- New upstream version 1.33.39. + +* Tue Jun 21 2016 Richard W.M. Jones - 1:1.33.38-2 +- Bump release and rebuild. + +* Sun Jun 19 2016 Richard W.M. Jones - 1:1.33.38-1 +- New upstream version 1.33.38. + +* Fri Jun 17 2016 Richard W.M. Jones - 1:1.33.37-1 +- New upstream version 1.33.37. + +* Mon Jun 13 2016 Richard W.M. Jones - 1:1.33.36-1 +- New upstream version 1.33.36. + +* Mon Jun 06 2016 Richard W.M. Jones - 1:1.33.35-1 +- New upstream version 1.33.35. + +* Fri Jun 03 2016 Richard W.M. Jones - 1:1.33.34-1 +- New upstream version 1.33.34. +- Now building virt-p2v with gtk3 not gtk2. + +* Fri May 27 2016 Richard W.M. Jones - 1:1.33.32-1 +- New upstream version 1.33.32. + +* Mon May 23 2016 Richard W.M. Jones - 1:1.33.30-1 +- New upstream version 1.33.30. + +* Thu May 19 2016 Jitka Plesnikova - 1:1.33.29-2 +- Perl 5.24 re-rebuild of bootstrapped packages + +* Wed May 18 2016 Richard W.M. Jones - 1:1.33.29-1 +- New upstream version 1.33.29. + +* Tue May 17 2016 Jitka Plesnikova - 1:1.33.28-2 +- Perl 5.24 rebuild + +* Mon May 09 2016 Richard W.M. Jones - 1:1.33.28-1 +- New upstream version 1.33.28. + +* Wed May 04 2016 Richard W.M. Jones - 1:1.33.27-1 +- New upstream version 1.33.27. + +* Tue May 03 2016 Richard W.M. Jones - 1:1.33.26-1 +- New upstream version 1.33.26. + +* Sun May 01 2016 Richard W.M. Jones - 1:1.33.24-1 +- New upstream version 1.33.24. + +* Mon Apr 25 2016 Richard W.M. Jones - 1:1.33.23-1 +- New upstream version 1.33.23. + +* Fri Apr 15 2016 Richard W.M. Jones - 1:1.33.20-1 +- New upstream version 1.33.20. + +* Tue Apr 12 2016 Richard W.M. Jones - 1:1.33.19-2 +- New upstream version 1.33.19. +- Build python3 in a different directory. + +* Fri Apr 08 2016 Richard W.M. Jones - 1:1.33.18-5 +- Disable tests on 32 bit arm because of libvirt RHBZ#1325085. + +* Thu Apr 07 2016 Richard W.M. Jones - 1:1.33.18-4 +- Disable tests on POWER because of RHBZ#1293024. +- Enable tests on 32 bit arm because RHBZ#1303147 supposedly fixed. +- Explicitly depend on rubygem-rdoc, needed to build Ruby docs. + +* Tue Apr 05 2016 Richard W.M. Jones - 1:1.33.18-1 +- New upstream version 1.33.18. + +* Thu Mar 31 2016 Richard W.M. Jones - 1:1.33.16-2 +- Add code to verify tarball signatures (only enabled on stable branches). + +* Fri Mar 25 2016 Richard W.M. Jones - 1:1.33.16-1 +- New upstream version 1.33.16. + +* Thu Mar 17 2016 Richard W.M. Jones - 1:1.33.15-1 +- New upstream version 1.33.15. + +* Mon Mar 07 2016 Richard W.M. Jones - 1:1.33.14-1 +- New upstream version 1.33.14. + +* Fri Feb 26 2016 Richard W.M. Jones - 1:1.33.13-1 +- New upstream version 1.33.13. + +* Thu Feb 18 2016 Orion Poplawski - 1:1.33.12-2 +- Filter perl provides + +* Fri Feb 12 2016 Richard W.M. Jones - 1:1.33.12-1 +- New upstream version 1.33.12. + +* Wed Feb 10 2016 Richard W.M. Jones - 1:1.33.11-1 +- New upstream version 1.33.11. + +* Mon Feb 08 2016 Richard W.M. Jones - 1:1.33.10-2 +- New upstream version 1.33.10. +- Add non-upstream patch to fix 'ssh root@remote virt-xyz ...' + +* Fri Feb 05 2016 Richard W.M. Jones - 1:1.33.9-1 +- New upstream version 1.33.9. + +* Wed Feb 03 2016 Richard W.M. Jones - 1:1.33.8-1 +- New upstream version 1.33.8. + +* Fri Jan 29 2016 Richard W.M. Jones - 1:1.33.7-1 +- New upstream version 1.33.7. + +* Thu Jan 28 2016 Richard W.M. Jones - 1:1.33.6-1 +- New upstream version 1.33.6. + +* Tue Jan 26 2016 Richard W.M. Jones - 1:1.33.5-1 +- New upstream version 1.33.5. + +* Fri Jan 22 2016 Richard W.M. Jones - 1:1.33.4-1 +- New upstream version 1.33.4. +- Add guestfs-building(1), new man page. + +* Thu Jan 21 2016 Richard Jones - 1:1.33.1-3 +- Remove useless python*_site* macros. +- Package python3 pyo files if present. + +* Sat Jan 16 2016 Richard Jones - 1:1.33.1-2 +- Rebuild for updated Ruby in Rawhide. + +* Mon Jan 11 2016 Richard W.M. Jones - 1:1.33.1-1 +- New upstream version 1.33.1. + +* Thu Jan 07 2016 Richard W.M. Jones - 1:1.33.0-1 +- New upstream development version 1.33.0. + +* Wed Dec 16 2015 Richard W.M. Jones - 1:1.31.30-1 +- New upstream version 1.31.30. + +* Sun Dec 06 2015 Richard W.M. Jones - 1:1.31.29-1 +- New upstream version 1.31.29. + +* Wed Nov 25 2015 Richard W.M. Jones - 1:1.31.28-1 +- New upstream version 1.31.28. + +* Fri Nov 20 2015 Richard W.M. Jones - 1:1.31.27-1 +- New upstream version 1.31.27. +- Add new tool: virt-v2v-copy-to-local. + +* Sat Nov 14 2015 Richard W.M. Jones - 1:1.31.26-1 +- New upstream version 1.31.26. + +* Wed Nov 11 2015 Richard W.M. Jones - 1:1.31.25-3 +- Drop __pycache__/*.pyo files, as these are not generated by python 3.5. + +* Tue Nov 10 2015 Fedora Release Engineering - 1:1.31.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Nov 06 2015 Richard W.M. Jones - 1:1.31.25-1 +- New upstream version 1.31.25. + +* Fri Nov 06 2015 Richard W.M. Jones - 1:1.31.24-2 +- Rename python-libguestfs -> python2-libguestfs. + See: https://fedoraproject.org/wiki/Packaging:Python + +* Thu Nov 05 2015 Richard W.M. Jones - 1:1.31.24-1 +- New upstream version 1.31.24. + +* Sat Oct 31 2015 Richard W.M. Jones - 1:1.31.23-1 +- New upstream version 1.31.23. + +* Fri Oct 30 2015 Richard W.M. Jones - 1:1.31.22-1 +- New upstream version 1.31.22. +- Add new manual pages guestfs-{hacking,internals,security}(1). + +* Sun Oct 25 2015 Richard W.M. Jones - 1:1.31.20-1 +- New upstream version 1.31.20. +- Perl bindings switched from ExtUtils::MakeMaker to Module::Build. + +* Wed Oct 21 2015 Richard W.M. Jones - 1:1.31.19-1 +- New upstream version 1.31.19. + +* Tue Oct 20 2015 Richard W.M. Jones - 1:1.31.18-1 +- New upstream version 1.31.18. + +* Thu Oct 15 2015 Richard W.M. Jones - 1:1.31.17-1 +- New upstream version 1.31.17. + +* Tue Oct 13 2015 Richard W.M. Jones - 1:1.31.16-2 +- Add hack to supermin to get builds working temporarily. + +* Fri Oct 09 2015 Richard W.M. Jones - 1:1.31.16-1 +- New upstream version 1.31.16. + +* Fri Oct 09 2015 Richard W.M. Jones - 1:1.31.15-1 +- New upstream version 1.31.15. + +* Wed Oct 07 2015 Richard W.M. Jones - 1:1.31.13-1 +- New upstream version 1.31.13. + +* Tue Oct 06 2015 Richard W.M. Jones - 1:1.31.11-2 +- BR ocamldoc so that we build the OCaml documentation. + +* Mon Oct 05 2015 Richard W.M. Jones - 1:1.31.11-1 +- New upstream version 1.31.11. + +* Thu Oct 01 2015 Richard W.M. Jones - 1:1.31.9-4 +- New upstream version 1.31.9. +- Include patch which fixes 'make install' in OCaml directory. +- Switch to using RPM autopatch directive. +- Fix a few RPM "macro expanded in comment" warnings. +- Include OCaml bindings documentation in ocaml-libguestfs-devel package. +- Add opensuse virt-builder files. + +* Tue Sep 29 2015 Richard W.M. Jones - 1:1.31.8-1 +- New upstream version 1.31.8. + +* Mon Sep 21 2015 Richard W.M. Jones - 1:1.31.7-2 +- Remove tests, except sanity check. Testing is now done after the + package has been built. + +* Sun Sep 20 2015 Richard W.M. Jones - 1:1.31.7-1 +- New upstream version 1.31.7. + +* Sat Sep 12 2015 Richard W.M. Jones - 1:1.31.6-1 +- New upstream version 1.31.6. + +* Tue Sep 08 2015 Richard W.M. Jones - 1:1.31.5-1 +- New upstream version 1.31.5. + +* Fri Sep 04 2015 Richard W.M. Jones - 1:1.31.4-1 +- New upstream version 1.31.4. + +* Sat Aug 29 2015 Richard W.M. Jones - 1:1.31.3-1 +- New upstream version 1.31.3. +- Disable tests on armv7 because they take nearly 24 hours to run. + +* Thu Aug 13 2015 Richard W.M. Jones - 1:1.31.2-1 +- New upstream version 1.31.2. +- Enable tests on i686, arm and aarch64. +- Remove patch which is now upstream. + +* Fri Aug 7 2015 Pino Toscano - 1:1.31.1-3 +- Make libguestfs-tools-c recommend libguestfs-xfs, as the default filesystem + is XFS so we want tools to work on XFS by default. +- Remove version suffix from the docdir mentioned in the installed README. + +* Sun Aug 2 2015 Richard W.M. Jones - 1:1.31.1-2 +- Skip virt-sysprep test. + +* Fri Jul 31 2015 Richard W.M. Jones - 1:1.31.1-1 +- New upstream version 1.31.1. + +* Tue Jul 28 2015 Richard W.M. Jones - 1:1.30.0-2 +- OCaml 4.02.3 rebuild. + +* Tue Jul 21 2015 Richard W.M. Jones - 1:1.30.0-1 +- New upstream version 1.30.0. + +* Thu Jul 09 2015 Richard W.M. Jones - 1:1.29.50-1 +- New upstream version 1.29.50. +- Add virt-dib. + +* Thu Jul 02 2015 Richard W.M. Jones - 1:1.29.49-1 +- New upstream version 1.29.49. + +* Tue Jun 30 2015 Richard W.M. Jones - 1:1.29.48-1 +- New upstream version 1.29.48. + +* Thu Jun 18 2015 Richard W.M. Jones - 1:1.29.47-2 +- Bump release and rebuild. + +* Thu Jun 18 2015 Richard W.M. Jones - 1:1.29.47-1 +- New upstream version 1.29.47. +- New tool: virt-get-kernel. +- Skip xfs_admin tests because of RHBZ#1233220. + +* Wed Jun 17 2015 Richard W.M. Jones - 1:1.29.46-4 +- ocaml-4.02.2 rebuild. + +* Wed Jun 17 2015 Fedora Release Engineering - 1:1.29.46-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Jun 09 2015 Jitka Plesnikova - 1:1.29.46-2 +- Perl 5.22 rebuild + +* Sun Jun 07 2015 Richard W.M. Jones - 1:1.29.46-1 +- New upstream version 1.29.46. + +* Sat Jun 06 2015 Jitka Plesnikova - 1:1.29.44-2 +- Perl 5.22 rebuild + +* Thu May 28 2015 Richard W.M. Jones - 1:1.29.44-1 +- New upstream version 1.29.44. + +* Tue May 19 2015 Richard W.M. Jones - 1:1.29.43-2 +- Remove several test SKIP_* variables related to bugs which have + since been fixed. + +* Sat May 16 2015 Richard W.M. Jones - 1:1.29.43-1 +- New upstream version 1.29.43. + +* Thu May 14 2015 Richard W.M. Jones - 1:1.29.42-1 +- New upstream version 1.29.42. + +* Mon May 11 2015 Richard W.M. Jones - 1:1.29.41-1 +- New upstream version 1.29.41. + +* Thu May 07 2015 Richard W.M. Jones - 1:1.29.40-2 +- Add workaround for builder/index-parse.c autotools race. + +* Wed May 06 2015 Richard W.M. Jones - 1:1.29.40-1 +- New upstream version 1.29.40. + +* Sun May 03 2015 Richard W.M. Jones - 1:1.29.39-1 +- New upstream version 1.29.39. + +* Tue Apr 28 2015 Richard W.M. Jones - 1:1.29.38-1 +- New upstream version 1.29.38. + +* Fri Apr 24 2015 Richard W.M. Jones - 1:1.29.37-1 +- New upstream version 1.29.37. + +* Mon Apr 20 2015 Richard W.M. Jones - 1:1.29.36-2 +- Remove deprecated programs: virt-list-partitions, virt-list-filesystems, + virt-tar (RHBZ#1213298). + +* Thu Apr 16 2015 Richard W.M. Jones - 1:1.29.36-1 +- New upstream version 1.29.36. + +* Fri Apr 10 2015 Richard W.M. Jones - 1:1.29.34-1 +- New upstream version 1.29.34. +- Drop the virt-v2v test harness subpackage. + +* Wed Apr 01 2015 Richard W.M. Jones - 1:1.29.33-2 +- New upstream version 1.29.33. + +* Fri Mar 27 2015 Richard W.M. Jones - 1:1.29.32-1 +- New upstream version 1.29.32. + +* Tue Mar 24 2015 Richard W.M. Jones - 1:1.29.31-2 +- New upstream version 1.29.31. +- Remove upstream patches. + +* Fri Mar 20 2015 Richard W.M. Jones - 1:1.29.30-5 +- More upstream patches to fix virt-v2v test harness. +- Do not delete OCaml *.a files, including ones in the virt-v2v test harness. + +* Sun Mar 15 2015 Richard W.M. Jones - 1:1.29.30-4 +- Enable golang on various arches. + +* Thu Mar 12 2015 Richard W.M. Jones - 1:1.29.30-3 +- Add virt-v2v-test-harness subpackage. +- Add a couple of upstream patches to fix the virt-v2v test harness. +- Remove external dependency generator. Use supermin RPM deps instead. +- Depend on fuse (for testing with fusermount etc) (RHBZ#1201507). + +* Wed Mar 11 2015 Richard W.M. Jones - 1:1.29.30-1 +- New upstream version 1.29.30. + +* Thu Mar 5 2015 Richard W.M. Jones - 1:1.29.29-1 +- New upstream version 1.29.29. + +* Mon Mar 2 2015 Richard W.M. Jones - 1:1.29.26-3 +- Add new subpackage libguestfs-inspect-icons (RHBZ#1194158). +- Remove dependency on uml_utilities, since UML is currently broken. +- Speed python3 build by copying over the generator pod2text cache and + disabling non-Python language bindings. +- Disable mdadm test because of mdadm hangs (RHBZ#1197305). + +* Wed Feb 18 2015 Richard W.M. Jones - 1:1.29.26-1 +- New upstream version 1.29.26. +- ocaml-4.02.1 rebuild. + +* Thu Feb 12 2015 Richard W.M. Jones - 1:1.29.25-1 +- New upstream version 1.29.25. +- Remove patches which are now upstream. + +* Thu Feb 05 2015 Richard W.M. Jones - 1:1.29.24-3 +- Upstream patch to fix virt-resize/virt-builder on aarch64 (RHBZ#1189284). + +* Wed Feb 04 2015 Richard W.M. Jones - 1:1.29.24-2 +- Upstream patch to fix performance regression in virt-builder (RHBZ#1188866). +- Change the way Python double-build is done so we only have to + apply patches in one place. + +* Tue Feb 03 2015 Richard W.M. Jones - 1:1.29.24-1 +- New upstream version 1.29.24. +- Add Python 3 bindings. +- Disable btrfs-qgroup-show test. + +* Tue Jan 27 2015 Richard W.M. Jones - 1:1.29.23-1 +- New upstream version 1.29.23. + +* Thu Jan 22 2015 Richard W.M. Jones - 1:1.29.22-2 +- New upstream version 1.29.22. +- BR ounit (will be required for building >= 1.29.23). +- Disable FUSE tests because of a bug in Rawhide. + +* Mon Jan 19 2015 Richard W.M. Jones - 1:1.29.20-2 +- Bump release for f22-ruby. + +* Sun Jan 18 2015 Richard W.M. Jones - 1:1.29.20-1 +- New upstream version 1.29.20. +- Rebuild upstream with automake 1.15. +- Add upstream patch to allow LVM test to be skipped. +- Add upstream patch which fixes LUA 5.3 (beta) in Rawhide. +- Skip a couple of tests which are broken by changes in Rawhide. +- Remove bogus daemon/m4 directory which has not existed for years. + +* Tue Dec 23 2014 Richard W.M. Jones - 1:1.29.19-1 +- New upstream version 1.29.19. + +* Tue Dec 16 2014 Richard W.M. Jones - 1:1.29.18-1 +- New upstream version 1.29.18. + +* Tue Dec 16 2014 Richard W.M. Jones - 1:1.29.17-1 +- New upstream version 1.29.17. + +* Thu Dec 11 2014 Richard W.M. Jones - 1:1.29.14-1 +- New upstream version 1.29.14. + +* Fri Dec 05 2014 Richard W.M. Jones - 1:1.29.13-1 +- New upstream version 1.29.13. + +* Sat Nov 29 2014 Richard W.M. Jones - 1:1.29.12-1 +- New upstream version 1.29.12. + +* Thu Nov 27 2014 Richard W.M. Jones - 1:1.29.11-1 +- New upstream version 1.29.11. + +* Tue Nov 25 2014 Richard W.M. Jones - 1:1.29.10-1 +- New upstream version 1.29.10. + +* Fri Nov 21 2014 Richard W.M. Jones - 1:1.29.9-1 +- New upstream version 1.29.9. + +* Tue Nov 18 2014 Richard W.M. Jones - 1:1.29.8-1 +- New upstream version 1.29.8. + +* Sat Nov 15 2014 Richard W.M. Jones - 1:1.29.7-1 +- New upstream version 1.29.7. + +* Fri Nov 07 2014 Richard W.M. Jones - 1:1.29.6-1 +- New upstream version 1.29.6. +- Remove patch which is now upstream. + +* Wed Nov 05 2014 Richard W.M. Jones - 1:1.29.5-1 +- New upstream version 1.29.5. + +* Wed Nov 5 2014 Richard W.M. Jones - 1:1.29.4-2 +- configure: Don't override upstream's qemu selection. + +* Fri Oct 31 2014 Richard W.M. Jones - 1:1.29.4-1 +- New upstream version 1.29.4. + +* Fri Oct 31 2014 Richard W.M. Jones - 1:1.29.3-1 +- New upstream version 1.29.3. + +* Sat Oct 25 2014 Richard W.M. Jones - 1:1.29.2-1 +- New upstream version 1.29.2. + +* Wed Oct 22 2014 Richard W.M. Jones - 1:1.29.1-1 +- New upstream version 1.29.1. + +* Fri Oct 17 2014 Richard W.M. Jones - 1:1.27.64-1 +- New upstream version 1.27.64. + +* Thu Oct 16 2014 Richard W.M. Jones - 1:1.27.63-1 +- New upstream version 1.27.63. + +* Fri Oct 10 2014 Richard W.M. Jones - 1:1.27.62-1 +- New upstream version 1.27.62. + +* Thu Oct 09 2014 Richard W.M. Jones - 1:1.27.61-1 +- New upstream version 1.27.61. + +* Wed Oct 08 2014 Richard W.M. Jones - 1:1.27.60-1 +- New upstream version 1.27.60. + +* Thu Oct 02 2014 Richard W.M. Jones - 1:1.27.58-1 +- New upstream version 1.27.58. + +* Wed Oct 01 2014 Richard W.M. Jones - 1:1.27.57-1 +- New upstream version 1.27.57. + +* Tue Sep 30 2014 Richard W.M. Jones - 1:1.27.56-1 +- New upstream version 1.27.56. + +* Sat Sep 27 2014 Richard W.M. Jones - 1:1.27.55-1 +- New upstream version 1.27.55. + +* Wed Sep 24 2014 Richard W.M. Jones - 1:1.27.54-1 +- New upstream version 1.27.54. + +* Tue Sep 23 2014 Richard W.M. Jones - 1:1.27.53-1 +- New upstream version 1.27.53. + +* Fri Sep 19 2014 Richard W.M. Jones - 1:1.27.50-1 +- New upstream version 1.27.50. + +* Thu Sep 18 2014 Richard W.M. Jones - 1:1.27.49-1 +- New upstream version 1.27.49. +- Fix guestfish colour prompts when using white-on-black terminal (RHBZ#1144201). + +* Wed Sep 17 2014 Richard W.M. Jones - 1:1.27.48-1 +- New upstream version 1.27.48. + +* Tue Sep 16 2014 Richard W.M. Jones - 1:1.27.47-1 +- New upstream version 1.27.47. + +* Mon Sep 15 2014 Richard W.M. Jones - 1:1.27.46-1 +- New upstream version 1.27.46. + +* Sun Sep 14 2014 Richard W.M. Jones - 1:1.27.45-1 +- New upstream version 1.27.45. + +* Sat Sep 13 2014 Richard W.M. Jones - 1:1.27.44-1 +- New upstream version 1.27.44. + +* Thu Sep 11 2014 Richard W.M. Jones - 1:1.27.43-1 +- New upstream version 1.27.43. + +* Thu Sep 11 2014 Richard W.M. Jones - 1:1.27.42-1 +- New upstream version 1.27.42. + +* Tue Sep 09 2014 Richard W.M. Jones - 1:1.27.41-1 +- New upstream version 1.27.41. + +* Mon Sep 08 2014 Jitka Plesnikova - 1:1.27.39-2 +- Perl 5.20 re-rebuild of bootstrapped packages + +* Sat Sep 06 2014 Richard W.M. Jones - 1:1.27.39-1 +- New upstream version 1.27.39. +- Package virt-p2v ISO build tools together with virt-v2v in + a separate virt-v2v subpackage. + +* Fri Sep 05 2014 Richard W.M. Jones - 1:1.27.38-1 +- New upstream version 1.27.38. + +* Thu Sep 04 2014 Richard W.M. Jones - 1:1.27.37-1 +- New upstream version 1.27.37. + +* Wed Sep 03 2014 Jitka Plesnikova - 1:1.27.36-2 +- Perl 5.20 rebuild + +* Tue Sep 02 2014 Richard W.M. Jones - 1:1.27.36-1 +- New upstream version 1.27.36. + +* Mon Sep 01 2014 Richard W.M. Jones - 1:1.27.35-1 +- New upstream version 1.27.35. + +* Sat Aug 30 2014 Richard W.M. Jones - 1:1.27.34-1 +- New upstream version 1.27.34. + +* Fri Aug 29 2014 Jitka Plesnikova - 1:1.27.33-3 +- Perl 5.20 rebuild + +* Fri Aug 29 2014 Richard W.M. Jones - 1:1.27.33-2 +- New upstream version 1.27.33. +- Enable LVM filtering test (thanks Pino Toscano). + +* Mon Aug 25 2014 Richard W.M. Jones - 1:1.27.31-1 +- New upstream version 1.27.31. + +* Thu Aug 21 2014 Richard W.M. Jones - 1:1.27.30-1 +- New upstream version 1.27.30. + +* Wed Aug 20 2014 Richard W.M. Jones - 1:1.27.28-1 +- New upstream version 1.27.28. + +* Sun Aug 17 2014 Fedora Release Engineering - 1:1.27.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Fri Aug 15 2014 Richard W.M. Jones - 1:1.27.27-1 +- New upstream version 1.27.27. + +* Fri Aug 15 2014 Richard W.M. Jones - 1:1.27.26-2 +- Java is now java-1.8.0-openjdk in Rawhide. + +* Thu Aug 14 2014 Richard W.M. Jones - 1:1.27.26-1 +- New upstream version 1.27.26. + +* Thu Aug 14 2014 Richard W.M. Jones - 1:1.27.25-2 +- Require mingw32-srvany >= 1.0-13 because otherwise we have a broken symlink. +- Skip virt-v2v tests since they require rhsrvany.exe which is not + available during the tests. + +* Tue Aug 05 2014 Richard W.M. Jones - 1:1.27.25-1 +- New upstream version 1.27.25. + +* Mon Jul 28 2014 Richard W.M. Jones - 1:1.27.24-3 +- Rebuild on aarch64. + +* Sun Jul 27 2014 Richard W.M. Jones - 1:1.27.24-2 +- New upstream version 1.27.24. +- Remove patch now upstream. + +* Fri Jul 25 2014 Richard W.M. Jones - 1:1.27.23-3 +- Skip LVM test which is failing. + +* Thu Jul 24 2014 Richard W.M. Jones - 1:1.27.23-2 +- Enable tests on aarch64, in order to study which tests fail. + +* Wed Jul 23 2014 Richard W.M. Jones - 1:1.27.23-1 +- New upstream version 1.27.23. + +* Tue Jul 22 2014 Kalev Lember - 1:1.27.22-3 +- Rebuilt for gobject-introspection 1.41.4 + +* Mon Jul 21 2014 Richard W.M. Jones - 1:1.27.22-2 +- New upstream version 1.27.22. +- Disable golang since the Fedora package is broken again. + +* Wed Jul 16 2014 Peter Robinson 1:1.27.21-2 +- Disable tests on aarch64 +- ntfs-3g available on all arches +- hfsplus-tools on all arches +- KVM available on ARMv7 and aarch64 + +* Tue Jul 08 2014 Richard W.M. Jones - 1:1.27.21-1 +- New upstream version 1.27.21. + +* Wed Jul 02 2014 Richard W.M. Jones - 1:1.27.20-1 +- New upstream version 1.27.20. + +* Tue Jun 24 2014 Richard W.M. Jones - 1:1.27.19-1 +- New upstream version 1.27.19. + +* Mon Jun 16 2014 Richard W.M. Jones - 1:1.27.18-1 +- New upstream version 1.27.18. + +* Sat Jun 14 2014 Richard W.M. Jones - 1:1.27.16-2 +- Install guestfish colour prompts. + +* Sat Jun 14 2014 Richard W.M. Jones - 1:1.27.16-1 +- New upstream version 1.27.16. + +* Wed Jun 11 2014 Richard W.M. Jones - 1:1.27.15-1 +- New upstream version 1.27.15. + +* Sat Jun 07 2014 Fedora Release Engineering - 1:1.27.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 30 2014 Richard W.M. Jones - 1:1.27.14-1 +- New upstream version 1.27.14. + +* Sun May 25 2014 Richard W.M. Jones - 1:1.27.13-1 +- New upstream version 1.27.13. + +* Fri May 23 2014 Richard W.M. Jones - 1:1.27.12-2 +- New upstream version 1.27.12. +- Enable golang since it is now working on Rawhide. +- Fix golang installation again. +- Delete guestfs-p2v-iso(1) (internal documentation). + +* Fri May 16 2014 Richard W.M. Jones - 1:1.27.11-3 +- Try re-enabling x86-64 tests. + Requires supermin >= 5.1.8-3 which supports xz-compressed kernel modules. + +* Fri May 16 2014 Richard W.M. Jones - 1:1.27.11-2 +- New upstream version 1.27.11. + +* Fri May 16 2014 Richard W.M. Jones - 1:1.27.10-1 +- New upstream version 1.27.10. + +* Thu May 08 2014 Richard W.M. Jones - 1:1.27.9-1 +- New upstream version 1.27.9. + +* Sat May 3 2014 Richard W.M. Jones - 1:1.27.8-2 +- Remove ruby(release) version. Fix for Ruby 2.1. + +* Fri May 02 2014 Richard W.M. Jones - 1:1.27.8-1 +- New upstream version 1.27.8. + +* Sat Apr 26 2014 Richard W.M. Jones - 1:1.27.7-1 +- New upstream version 1.27.7. + +* Tue Apr 22 2014 Richard W.M. Jones - 1:1.27.6-1 +- New upstream version 1.27.6. + +* Wed Apr 16 2014 Richard W.M. Jones - 1:1.27.5-2 +- Remove /var/run/libguestfs, which is not used. + +* Wed Apr 16 2014 Richard W.M. Jones - 1:1.27.5-1 +- New upstream version 1.27.5. + +* Tue Apr 15 2014 Richard W.M. Jones - 1:1.27.4-1 +- New upstream version 1.27.4. + +* Tue Apr 8 2014 Richard W.M. Jones - 1:1.27.3-3 +- Re-enable virt-sparsify --in-place test, see: + https://bugzilla.redhat.com/show_bug.cgi?id=1079210#c4 + +* Mon Apr 07 2014 Richard W.M. Jones - 1:1.27.3-2 +- Do not use rubygem-minitest. Temporary workaround, see: + https://bugzilla.redhat.com/show_bug.cgi?id=1085029#c2 + +* Sun Apr 06 2014 Richard W.M. Jones - 1:1.27.3-1 +- New upstream version 1.27.3. + +* Mon Mar 31 2014 Richard W.M. Jones - 1:1.27.2-1 +- New upstream version 1.27.2. + +* Fri Mar 28 2014 Richard W.M. Jones - 1:1.27.0-1 +- New upstream version 1.27.0. + +* Wed Mar 26 2014 Richard W.M. Jones - 1:1.25.49-1 +- New upstream version 1.25.49. + +* Tue Mar 25 2014 Richard W.M. Jones - 1:1.25.47-1 +- New upstream version 1.25.47. +- Include new tool: virt-customize. + +* Thu Mar 20 2014 Richard W.M. Jones - 1:1.25.46-1 +- New upstream version 1.25.46. + +* Thu Mar 20 2014 Richard W.M. Jones - 1:1.25.45-2 +- Further split libguestfs appliance dependencies. + +* Mon Mar 17 2014 Richard W.M. Jones - 1:1.25.45-1 +- New upstream version 1.25.45. + +* Fri Mar 14 2014 Richard W.M. Jones - 1:1.25.44-2 +- Try to patch fstrim so it works in Koji/Rawhide. + +* Thu Mar 13 2014 Richard W.M. Jones - 1:1.25.44-1 +- New upstream version 1.25.44. + +* Sat Mar 08 2014 Richard W.M. Jones - 1:1.25.43-1 +- New upstream version 1.25.43. + +* Thu Mar 06 2014 Richard W.M. Jones - 1:1.25.42-1 +- New upstream version 1.25.42. + +* Tue Mar 04 2014 Richard W.M. Jones - 1:1.25.41-1 +- New upstream version 1.25.41. + +* Mon Mar 03 2014 Richard W.M. Jones - 1:1.25.40-1 +- New upstream version 1.25.40. + +* Sun Mar 02 2014 Richard W.M. Jones - 1:1.25.39-2 +- New upstream version 1.25.39. + +* Fri Feb 28 2014 Richard W.M. Jones - 1:1.25.38-4 +- Disable hfsplus subpackage on arm & ppc. +- Disable zfs subpackage on arm. +- Disable tests on x86. + +* Thu Feb 27 2014 Richard W.M. Jones - 1:1.25.38-3 +- Ensure dependencies needed by the daemon are added to base libguestfs. + +* Wed Feb 26 2014 Richard W.M. Jones - 1:1.25.38-2 +- New upstream version 1.25.38. +- Requires new supermin 5.1.0. +- Split the dependencies into subpackages, at least for the less common + filesystem types. +- In the dependency generator, we can now generate ordinary dependencies! + +* Sat Feb 22 2014 Richard W.M. Jones - 1:1.25.37-2 +- New upstream version 1.25.37. +- Disable tests on ARM because of RHBZ#1066581. + +* Tue Feb 18 2014 Richard W.M. Jones - 1:1.25.36-5 +- Add upstream patches, workaround for libvirt on ARM / ppc64 bug. +- Run make quickcheck (and fail early) before doing full make check. + +* Mon Feb 17 2014 Richard W.M. Jones - 1:1.25.36-1 +- New upstream version 1.25.36. + +* Sun Feb 16 2014 Richard W.M. Jones - 1:1.25.34-1 +- Enable tests on i686 as both of the referenced bugs (RHBZ#998722 & + RHBZ#998692) are now supposed to be fixed. +- Enable tests on ARM as the bug (RHBZ#990258) is supposed to be fixed. + +* Thu Feb 13 2014 Richard W.M. Jones - 1:1.25.34-1 +- New upstream version 1.25.34. +- Reenable tests as the kernel bug is fixed. + +* Wed Feb 05 2014 Richard W.M. Jones - 1:1.25.33-1 +- New upstream version 1.25.33. + +* Tue Feb 04 2014 Richard W.M. Jones - 1:1.25.32-2 +- Since Python package is not noarch, do not put Python files into + shared /usr/lib/python2.X/site-packages (RHBZ#1061155). + +* Tue Feb 04 2014 Richard W.M. Jones - 1:1.25.32-1 +- New upstream version 1.25.32. + +* Wed Jan 29 2014 Richard W.M. Jones - 1:1.25.31-2 +- virt-make-fs has been rewritten in C. +- qemu-img is now required by the core library (for guestfs_disk_create). +- perl(String::ShellQuote) is no longer used. + +* Wed Jan 29 2014 Richard W.M. Jones - 1:1.25.31-1 +- New upstream version 1.25.31. + +* Sat Jan 25 2014 Richard W.M. Jones - 1:1.25.29-1 +- New upstream version 1.25.29. + +* Fri Jan 24 2014 Richard W.M. Jones - 1:1.25.27-1 +- New upstream version 1.25.27. + +* Wed Jan 22 2014 Richard W.M. Jones - 1:1.25.26-1 +- New upstream version 1.25.26. + +* Wed Jan 22 2014 Richard W.M. Jones - 1:1.25.25-2 +- Update to latest Fedora golang packaging draft. +- See: https://fedoraproject.org/wiki/PackagingDrafts/Go + +* Tue Jan 21 2014 Richard W.M. Jones - 1:1.25.25-1 +- New upstream version 1.25.25. + +* Sun Jan 19 2014 Richard W.M. Jones - 1:1.25.24-1 +- New upstream version 1.25.24. + +* Sat Jan 18 2014 Richard W.M. Jones - 1:1.25.23-1 +- New upstream version 1.25.23. + +* Tue Jan 14 2014 Richard W.M. Jones - 1:1.25.21-1 +- New upstream version 1.25.21. + +* Mon Jan 13 2014 Richard W.M. Jones - 1:1.25.20-1 +- New upstream version 1.25.20. + +* Thu Jan 02 2014 Richard W.M. Jones - 1:1.25.19-1 +- New upstream version 1.25.19. + +* Thu Dec 19 2013 Richard W.M. Jones - 1:1.25.18-1 +- New upstream version 1.25.18. + +* Sat Dec 14 2013 Richard W.M. Jones - 1:1.25.15-1 +- New upstream version 1.25.15. + +* Thu Dec 12 2013 Richard W.M. Jones - 1:1.25.14-1 +- New upstream version 1.25.14. + +* Mon Dec 09 2013 Richard W.M. Jones - 1:1.25.13-1 +- New upstream version 1.25.13. + +* Fri Dec 06 2013 Richard W.M. Jones - 1:1.25.12-3 +- Build golang package only on x86 and ARM. The golang package in Fedora + uses the same ExclusiveArch. Thanks: Dan Horák. + +* Wed Dec 04 2013 Richard W.M. Jones - 1:1.25.12-2 +- Rebuild for procps SONAME bump. + +* Mon Dec 02 2013 Richard W.M. Jones - 1:1.25.12-1 +- New upstream version 1.25.12. + +* Mon Nov 25 2013 Richard W.M. Jones - 1:1.25.11-3 +- Disable NBD test, buggy in qemu 1.7.0 (filed as RHBZ#1034433). + +* Sat Nov 23 2013 Richard W.M. Jones - 1:1.25.11-2 +- Disable mdadm test, buggy in kernel 3.13 (filed as RHBZ#1033971). + +* Sat Nov 23 2013 Richard W.M. Jones - 1:1.25.11-1 +- New upstream version 1.25.11. + +* Wed Nov 20 2013 Richard W.M. Jones - 1:1.25.8-2 +- Rebuild to resolve broken dependency on krb libraries. +- Remove obsolete Obsoletes. +- Fix Source URL. +- Require java-headless instead of java: + https://fedoraproject.org/wiki/Changes/HeadlessJava +- Backport upstream patch to fix btrfs. + +* Thu Nov 14 2013 Richard W.M. Jones - 1:1.25.8-1 +- New upstream version 1.25.8. + +* Sat Nov 09 2013 Richard W.M. Jones - 1:1.25.7-1 +- New upstream version 1.25.7. + +* Tue Nov 05 2013 Richard W.M. Jones - 1:1.25.6-2 +- New upstream version 1.25.6. +- Add virt-index-validate tool & man page. + +* Tue Nov 05 2013 Richard W.M. Jones - 1:1.25.3-2 +- Remove patches, now upstream. +- +BR flex & bison, required by libguestfs >= 1.25.4. +- +BR xz-devel (for liblzma) to accelerate virt-builder in >= 1.25.5. + +* Fri Nov 01 2013 Richard W.M. Jones - 1:1.25.3-1 +- New upstream version 1.25.3. + +* Wed Oct 30 2013 Richard W.M. Jones - 1:1.25.2-1 +- New upstream version 1.25.2. + +* Sat Oct 26 2013 Richard W.M. Jones - 1:1.25.1-1 +- New upstream version 1.25.1. + +* Tue Oct 22 2013 Richard W.M. Jones - 1:1.25.0-2 +- Don't use versioned jar file (RHBZ#1022133). + +* Sat Oct 19 2013 Richard W.M. Jones - 1:1.25.0-1 +- New upstream version 1.25.0. + +* Tue Oct 15 2013 Richard W.M. Jones - 1:1.23.33-1 +- New upstream version 1.23.33. + +* Mon Oct 14 2013 Richard W.M. Jones - 1:1.23.32-1 +- New upstream version 1.23.32. + +* Sun Oct 13 2013 Richard W.M. Jones - 1:1.23.31-1 +- New upstream version 1.23.31. + +* Fri Oct 11 2013 Richard W.M. Jones - 1:1.23.30-1 +- New upstream version 1.23.30. + +* Tue Oct 08 2013 Richard W.M. Jones - 1:1.23.28-1 +- New upstream version 1.23.28. + +* Mon Oct 07 2013 Richard W.M. Jones - 1:1.23.27-1 +- New upstream version 1.23.27. + +* Fri Oct 4 2013 Richard W.M. Jones - 1:1.23.25-1 +- New upstream version 1.23.25. +- Add virt-builder and its dependencies. + +* Mon Sep 30 2013 Richard W.M. Jones - 1:1.23.23-2 +- New upstream version 1.23.23. +- Remove patch which is now upstream. + +* Thu Sep 12 2013 Richard W.M. Jones - 1:1.23.22-2 +- Add patch to debug parallel tests. + +* Wed Sep 11 2013 Richard W.M. Jones - 1:1.23.22-1 +- New upstream version 1.23.22. + +* Mon Sep 9 2013 Richard W.M. Jones - 1:1.23.21-2 +- Disable golang bindings on ppc64 (no golang package available). + +* Sat Sep 7 2013 Richard W.M. Jones - 1:1.23.21-1 +- New upstream version 1.23.21. +- Remove patches which are now upstream. +- Requires supermin >= 4.1.5 (technically only on ARM for device tree + support, but might as well have it everywhere). + +* Tue Sep 3 2013 Richard W.M. Jones - 1:1.23.20-5 +- Enable debugging messages in parallel virt-alignment-scan, virt-df + in order to debug possible race condition seen in Koji. + +* Mon Sep 2 2013 Richard W.M. Jones - 1:1.23.20-4 +- Rebuild now that RHBZ#1003495 is supposed to be fixed. + +* Sun Sep 1 2013 Richard W.M. Jones - 1:1.23.20-2 +- New upstream version 1.23.20. + +* Thu Aug 29 2013 Richard W.M. Jones - 1:1.23.19-1 +- New upstream version 1.23.19. +- Remove 2 x patches which are upstream. + +* Thu Aug 29 2013 Richard W.M. Jones - 1:1.23.18-4 +- Enable gzip-compressed appliance. +- Note this requires supermin >= 4.1.4. + +* Wed Aug 28 2013 Richard W.M. Jones - 1:1.23.18-3 +- Fix javadoc location to use _javadocdir macro. +- Call ldconfig in java post and postun scripts. +- Do not explicitly depend on perl-devel. +- Compress the ChangeLog and *.xml files in devel package. +- Create new subpackage gobject-doc for the huge HTML documentation. +- Make javadoc, gobject-doc, bash-completion, man-pages-*, tools packages + 'noarch'. + +* Mon Aug 19 2013 Richard W.M. Jones - 1:1.23.18-2 +- New upstream version 1.23.18. +- Disable 32 bit x86 tests because of RHBZ#998722 & RHBZ#998692. + +* Thu Aug 15 2013 Richard W.M. Jones - 1:1.23.17-1 +- New upstream version 1.23.17. +- Enable tests as cpu host-model is no longer used on TCG. + +* Tue Aug 13 2013 Richard W.M. Jones - 1:1.23.16-1 +- New upstream version 1.23.16. + +* Sun Aug 11 2013 Richard W.M. Jones - 1:1.23.15-1 +- New upstream version 1.23.15. + +* Tue Aug 6 2013 Richard W.M. Jones - 1:1.23.14-1 +- New upstream version 1.23.14. + +* Sun Aug 4 2013 Richard W.M. Jones - 1:1.23.13-2 +- Disable all tests because Rawhide kernel is broken (RHBZ#991808). + +* Sat Aug 3 2013 Richard W.M. Jones - 1:1.23.13-1 +- New upstream version 1.23.13. + +* Fri Aug 02 2013 Petr Pisar - 1:1.23.12-2 +- Perl 5.18 rebuild + +* Tue Jul 30 2013 Richard W.M. Jones - 1:1.23.12-1 +- New upstream version 1.23.12. +- Disable ARM tests because of libvirt error: + XML error: No PCI buses available [code=27 domain=10] (RHBZ#990258). + +* Tue Jul 30 2013 Richard W.M. Jones - 1:1.23.11-2 +- Enable ARM builds (thanks Dan Berrange). + +* Mon Jul 29 2013 Richard W.M. Jones - 1:1.23.11-1 +- New upstream version 1.23.11. +- +BR systemd-devel (for systemd journal processing). +- Disable ARM builds for now. + +* Tue Jul 23 2013 Richard W.M. Jones - 1:1.23.10-1 +- New upstream version 1.23.10. + +* Fri Jul 19 2013 Richard W.M. Jones - 1:1.23.9-1 +- New upstream version 1.23.9. +- Remove 5 x patches which are all upstream. + +* Thu Jul 11 2013 Richard W.M. Jones - 1:1.23.8-5 +- Add patches to ./run so we capture errors when i686 tests time out. +- Include upstream patch to fix double-free if appliance + building fails (RHBZ#983218). + +* Tue Jul 9 2013 Richard W.M. Jones - 1:1.23.8-2 +- New upstream version 1.23.8. +- Try enabling golang bindings. +- Add upstream patch to fix golang bindings. + +* Wed Jul 3 2013 Richard W.M. Jones - 1:1.23.7-1 +- New upstream version 1.23.7. +- Disable golang bindings. + +* Thu Jun 27 2013 Richard W.M. Jones - 1:1.23.6-2 +- Re-enable tests on i686, supposedly TCG problems are fixed + (RHBZ#857026 etc.). + +* Wed Jun 26 2013 Richard W.M. Jones - 1:1.23.6-1 +- New upstream version 1.23.6. + +* Tue Jun 18 2013 Richard W.M. Jones - 1:1.23.5-1 +- New upstream version 1.23.5. +- Fix hostname inspection because of change in Augeas (RHBZ#975412). +- Upstream libguestfs now requires Augeas >= 1.0.0. +- Kernel bug which affected mdadm is fixed (RHBZ#962079). + +* Fri Jun 14 2013 Richard W.M. Jones - 1:1.23.4-1 +- New upstream version 1.23.4. + +* Mon Jun 10 2013 Richard W.M. Jones - 1:1.23.3-1 +- New upstream version 1.23.3. + +* Wed Jun 5 2013 Richard W.M. Jones - 1:1.23.2-2 +- libguestfs-devel should depend on an explicit version of + libguestfs-tools-c, in order that the latest package is pulled in. + +* Mon Jun 3 2013 Richard W.M. Jones - 1:1.23.2-1 +- New upstream version 1.23.2. + +* Tue May 28 2013 Richard W.M. Jones - 1:1.23.1-1 +- New upstream development branch 1.23. +- New upstream version 1.21.1. + +* Tue May 21 2013 Richard W.M. Jones - 1:1.21.40-3 +- New upstream version 1.21.40. + +* Wed May 15 2013 Richard W.M. Jones - 1:1.21.39-1 +- New upstream version 1.21.39. + +* Mon May 13 2013 Richard W.M. Jones - 1:1.21.38-2 +- Bump and rebuild. + +* Sat May 11 2013 Richard W.M. Jones - 1:1.21.38-1 +- New upstream version 1.21.38. + +* Thu May 9 2013 Richard W.M. Jones - 1:1.21.37-1 +- New upstream version 1.21.37. + +* Sun May 5 2013 Richard W.M. Jones - 1:1.21.36-2 +- Bump and rebuild. + +* Thu May 2 2013 Richard W.M. Jones - 1:1.21.36-1 +- New upstream version 1.21.36. + +* Tue Apr 30 2013 Richard W.M. Jones - 1:1.21.35-1 +- New upstream version 1.21.35. + +* Mon Apr 29 2013 Richard W.M. Jones - 1:1.21.34-2 +- New upstream version 1.21.34. + +* Thu Apr 25 2013 Richard W.M. Jones - 1:1.21.33-1 +- New upstream version 1.21.33. + +* Tue Apr 23 2013 Richard W.M. Jones - 1:1.21.32-1 +- New upstream version 1.21.32. +- Fix stray backslash in spec file. +- Enable btrfs tests, since these are now stable enough not to fail usually. +- Skip gnulib tests which fail. + +* Wed Apr 17 2013 Richard W.M. Jones - 1:1.21.31-1 +- New upstream version 1.21.31. +- Rebuild against new krb5 (RHBZ#953001). + +* Tue Apr 16 2013 Richard W.M. Jones - 1:1.21.30-1 +- New upstream version 1.21.30. + +* Sat Apr 13 2013 Richard W.M. Jones - 1:1.21.29-1 +- New upstream version 1.21.29. + +* Thu Apr 11 2013 Richard W.M. Jones - 1:1.21.28-3 +- SYSLINUX only exists on x86 arches so make that dependency conditional + (thanks Dennis Gilmore). + +* Tue Apr 9 2013 Richard W.M. Jones - 1:1.21.28-2 +- New upstream version 1.21.28. +- Change attach-method -> backend in a few places. +- Simplify make install section so it fits on a single page. + +* Thu Apr 4 2013 Richard W.M. Jones - 1:1.21.27-1 +- New upstream version 1.21.27. +- Add new appliance BRs: syslinux, syslinux-extlinux. +- Add a dependency on libosinfo (partial fix for RHBZ#948324). + +* Tue Apr 2 2013 Richard W.M. Jones - 1:1.21.26-4 +- New upstream version 1.21.26. +- Use ./configure --with-default-backend=.. instead of attach-method. +- Remove Sys::Guestfs::Lib (removed upstream). +- Detect if network is available. + libguestfs_buildnet macro no longer needed. +- Enable hardened build (-fPIE, RELRO). +- Remove BRs: ncurses-devel and versioned parted. + +* Sat Mar 30 2013 Richard W.M. Jones - 1:1.21.25-1 +- New upstream version 1.21.25. + +* Fri Mar 29 2013 Richard W.M. Jones - 1:1.21.24-1 +- New upstream version 1.21.24. +- Remove patches, now upstream. + +* Fri Mar 29 2013 Richard W.M. Jones - 1:1.21.23-3 +- Add patch for broken 'file' command in Rawhide (RHBZ#928995). + +* Thu Mar 28 2013 Richard W.M. Jones - 1:1.21.23-2 +- New upstream version 1.21.23. +- Remove 'Group' which is not required by modern RPM. +- Add patch to use new-style demand-loaded bash-completion scripts. +- Spin bash-completion scripts into a new libguestfs-bash-completion package. + +* Mon Mar 18 2013 Richard W.M. Jones - 1:1.21.22-1 +- New upstream version 1.21.22. + +* Sat Mar 16 2013 Richard W.M. Jones - 1:1.21.21-2 +- Set INSTALLDIRS on both make and make install rules. + +* Fri Mar 15 2013 Richard W.M. Jones - 1:1.21.21-1 +- New upstream version 1.21.21. +- Remove ruby vendor patch. + +* Wed Mar 13 2013 Richard W.M. Jones - 1:1.21.20-1 +- New upstream version 1.21.20. +- In Fedora 19, 'ruby(abi)' has been replaced by 'ruby(release)' + and the version of the ruby ABI/release is now 2.0.0. + +* Mon Mar 11 2013 Richard W.M. Jones - 1:1.21.19-1 +- New upstream version 1.21.19. + +* Thu Mar 7 2013 Richard W.M. Jones - 1:1.21.18-1 +- New upstream version 1.21.18. + +* Tue Mar 5 2013 Richard W.M. Jones - 1:1.21.17-1 +- New upstream version 1.21.17. +- New program 'guestunmount'. + +* Fri Mar 1 2013 Richard W.M. Jones - 1:1.21.16-1 +- New upstream version 1.21.16. +- Re-enable tests, since kernel patch is upstream. + +* Tue Feb 26 2013 Richard W.M. Jones - 1:1.21.15-1 +- New upstream version 1.21.15. + +* Mon Feb 25 2013 Richard W.M. Jones - 1:1.21.14-2 +- New upstream version 1.21.14. +- Disable tests because of Rawhide kernel bug that prevents booting. + +* Wed Feb 20 2013 Richard W.M. Jones - 1:1.21.13-1 +- New upstream version 1.21.13. + +* Tue Feb 19 2013 Richard W.M. Jones - 1:1.21.12-1 +- New upstream version 1.21.12. +- Remove patch, now upstream. + +* Thu Feb 14 2013 Richard W.M. Jones - 1:1.21.11-2 +- New upstream version 1.21.11. +- Add experimental patch to capture stack trace of segfaults in the appliance. + +* Mon Feb 11 2013 Richard W.M. Jones - 1:1.21.10-1 +- New upstream version 1.21.10. + +* Sat Feb 9 2013 Richard W.M. Jones - 1:1.21.9-1 +- New upstream version 1.21.9. + +* Thu Feb 7 2013 Richard W.M. Jones - 1:1.21.8-2 +- Bump and rebuild. + +* Tue Feb 5 2013 Richard W.M. Jones - 1:1.21.8-1 +- New upstream version 1.21.8. +- Remove patch which is now upstream. +- 'febootstrap' with renamed to 'supermin' upstream. + . Depend on supermin >= 4.1.1. + . Use new --with-supermin-packager-config option. + +* Tue Feb 5 2013 Richard W.M. Jones - 1:1.21.7-4 +- Skip set_label tests because of RHBZ#906777. +- Disable btrfs tests again because RHBZ#863978 is not fixed. + +* Mon Feb 4 2013 Richard W.M. Jones - 1:1.21.7-2 +- New development version 1.21.7. +- Re-enable btrfs tests, apparently fixed upstream. + +* Mon Jan 28 2013 Richard W.M. Jones - 1:1.21.6-1 +- New development version 1.21.6. + +* Sat Jan 26 2013 Richard W.M. Jones - 1:1.21.5-3 +- Bump and rebuild. + +* Fri Jan 25 2013 Richard W.M. Jones - 1:1.21.5-2 +- Bump and rebuild. + +* Mon Jan 21 2013 Richard W.M. Jones - 1:1.21.5-1 +- New development version 1.21.5. +- Remove upstream patch. + +* Mon Jan 21 2013 Richard W.M. Jones - 1:1.21.4-3 +- Add upstream patch to allow btrfs tests to be skipped. +- Skip btrfs tests because btrfs has been broken forever (RHBZ#863978). + +* Sat Jan 19 2013 Richard W.M. Jones - 1:1.21.4-2 +- Depend on openjdk instead of java. + +* Thu Jan 17 2013 Richard W.M. Jones - 1:1.21.4-1 +- New upstream version 1.21.4. +- Add libguestfs-gobject-1.0.pc. +- Remove automake 1.13 hack, fixed upstream. +- Add explicit dependency on libcap, needed by the appliance. + +* Thu Jan 17 2013 Richard W.M. Jones - 1:1.21.3-2 +- New upstream version 1.21.3. + +* Sat Jan 12 2013 Richard W.M. Jones - 1:1.21.2-3 +- Bump and rebuild. + +* Sat Dec 22 2012 Richard W.M. Jones - 1:1.21.2-2 +- New upstream version 1.21.2. +- Use new --with-febootstrap-packager-config option. + +* Mon Dec 17 2012 Richard W.M. Jones - 1:1.21.1-3 +- Remove all RHEL-specific hacks since I've now branched RHEL 7. +- Add BR gdisk. + +* Mon Dec 17 2012 Richard W.M. Jones - 1:1.21.1-2 +- New upstream version 1.21.1 (development branch). +- Fix source URL. +- Rebase ruby site/vendor patch. +- Use 'make check -k' so we get to see all test failures at once. +- For RHEL 7: + * Do not depend on perl(Expect) (only needed to test virt-rescue). + * Depend on /usr/bin/qemu-img instead of qemu-img package, since the + package name (but not the binary) is different in RHEL 7. + * Add workaround for libvirt/KVM bug RHBZ#878406. + * Do not depend on libvirt-daemon-qemu. + * Do not depend on libldm (not yet in RHEL 7: RHBZ#887894). + +* Thu Dec 13 2012 Richard W.M. Jones - 1:1.20.0-1 +- New upstream version 1.20.0. +- New source URL for this branch. +- Reconcile upstream packagelist, BRs and Requires lists. +- Requires newest SELinux policy so that SVirt works. +- Fix patch 2. Actually, remove and replace with a small script. + +* Sat Dec 01 2012 Richard W.M. Jones - 1:1.19.66-1 +- New upstream version 1.19.66. + +* Fri Nov 30 2012 Richard W.M. Jones - 1:1.19.65-2 +- Add a hack to work around glibc header bug . + +* Thu Nov 29 2012 Richard W.M. Jones - 1:1.19.65-1 +- New upstream version 1.19.65. + +* Sat Nov 24 2012 Richard W.M. Jones - 1:1.19.64-1 +- New upstream version 1.19.64. + +* Sat Nov 24 2012 Richard W.M. Jones - 1:1.19.63-3 +- Re-add: Non-upstream patch to add the noapic flag on the kernel + command line on i386 only. This works around a bug in 32-bit qemu, + https://bugzilla.redhat.com/show_bug.cgi?id=857026 + +* Fri Nov 23 2012 Richard W.M. Jones - 1:1.19.63-2 +- Remove non-upstream patch designed to work around + https://bugzilla.redhat.com/show_bug.cgi?id=857026 + to see if this has been fixed. +- Re-enable tests on i686 to see if + https://bugzilla.redhat.com/show_bug.cgi?id=870042 + has been fixed. + +* Fri Nov 23 2012 Richard W.M. Jones - 1:1.19.63-1 +- New upstream version 1.19.63. + +* Tue Nov 20 2012 Richard W.M. Jones - 1:1.19.62-1 +- New upstream version 1.19.62. + +* Mon Nov 19 2012 Richard W.M. Jones - 1:1.19.61-1 +- New upstream version 1.19.61. + +* Sat Nov 17 2012 Richard W.M. Jones - 1:1.19.60-2 +- Remove Lua bogus libtool *.la file. + +* Sat Nov 17 2012 Richard W.M. Jones - 1:1.19.60-1 +- New upstream version 1.19.60. + +* Tue Nov 13 2012 Richard W.M. Jones - 1:1.19.59-1 +- New upstream version 1.19.59. + +* Sat Nov 10 2012 Richard W.M. Jones - 1:1.19.58-1 +- New upstream version 1.19.58. + +* Thu Nov 08 2012 Richard W.M. Jones - 1:1.19.57-1 +- New upstream version 1.19.57. + +* Tue Nov 06 2012 Richard W.M. Jones - 1:1.19.56-3 +- Add upstream patch to disable virt-format test, and disable + it because wipefs utility is broken. + +* Sat Nov 03 2012 Richard W.M. Jones - 1:1.19.56-2 +- Add upstream patch to fix wipefs test. + +* Fri Nov 02 2012 Richard W.M. Jones - 1:1.19.56-1 +- New upstream version 1.19.56. + +* Tue Oct 30 2012 Richard W.M. Jones - 1:1.19.55-1 +- New upstream version 1.19.55. + +* Mon Oct 29 2012 Richard W.M. Jones - 1:1.19.54-1 +- New upstream version 1.19.54. + +* Wed Oct 24 2012 Richard W.M. Jones - 1:1.19.53-3 +- Disable tests on ix86 because qemu/kernel is broken (RHBZ#870042). + +* Wed Oct 24 2012 Richard W.M. Jones - 1:1.19.53-2 +- Add upstream patch to fix guestfish tests. + +* Fri Oct 19 2012 Richard W.M. Jones - 1:1.19.53-1 +- New upstream version 1.19.53. + +* Sun Oct 14 2012 Richard W.M. Jones - 1:1.19.52-1 +- New upstream version 1.19.52. + +* Thu Oct 11 2012 Richard W.M. Jones - 1:1.19.51-1 +- New upstream version 1.19.51. + +* Thu Oct 11 2012 Petr Pisar - 1:1.19.50-2 +- Correct perl dependencies + +* Thu Oct 11 2012 Richard W.M. Jones - 1:1.19.50-1 +- New upstream version 1.19.50. + +* Wed Oct 10 2012 Richard W.M. Jones - 1:1.19.49-3 +- Upstream patch to workaround btrfs problems with kernel 3.7.0. + +* Tue Oct 09 2012 Richard W.M. Jones - 1:1.19.49-2 +- Install all libguestfs-live-service udev rules into /usr/lib/udev/rules.d. + +* Tue Oct 09 2012 Richard W.M. Jones - 1:1.19.49-1 +- New upstream version 1.19.49. + +* Sun Oct 07 2012 Richard W.M. Jones - 1:1.19.48-1 +- New upstream version 1.19.48. + +* Mon Oct 01 2012 Richard W.M. Jones - 1:1.19.46-1 +- New upstream version 1.19.46. + +* Wed Sep 26 2012 Richard W.M. Jones - 1:1.19.45-1 +- New upstream version 1.19.45. + +* Tue Sep 25 2012 Richard W.M. Jones - 1:1.19.44-2 +- Enable sVirt (NB: requires libvirt >= 0.10.2-3, selinux-policy >= 3.11.1-23). +- Add upstream patch to label the custom $TMPDIR used in test-launch-race. + +* Mon Sep 24 2012 Richard W.M. Jones - 1:1.19.44-1 +- New upstream version 1.19.44. + +* Sat Sep 22 2012 Richard W.M. Jones - 1:1.19.43-1 +- New upstream version 1.19.43. + +* Tue Sep 18 2012 Richard W.M. Jones - 1:1.19.42-2 +- New upstream version 1.19.42. +- Rebase sVirt (disable) patch. + +* Sun Sep 16 2012 Richard W.M. Jones - 1:1.19.41-1 +- New upstream version 1.19.41. + +* Fri Sep 14 2012 Richard W.M. Jones - 1:1.19.40-3 +- Add (non-upstream) patch to add the noapic flag on the kernel + command line on i386 only. This works around a bug in 32-bit qemu. + +* Wed Sep 12 2012 Richard W.M. Jones - 1:1.19.40-2 +- Enable tests because RHBZ#853408 has been fixed in qemu-1.2.0-3.fc18. + +* Wed Sep 05 2012 Richard W.M. Jones - 1:1.19.40-1 +- New upstream version 1.19.40. + +* Tue Sep 04 2012 Richard W.M. Jones - 1:1.19.39-1 +- New upstream version 1.19.39. + +* Mon Sep 03 2012 Richard W.M. Jones - 1:1.19.38-1 +- New upstream version 1.19.38. + +* Fri Aug 31 2012 Richard W.M. Jones - 1:1.19.37-1 +- New upstream version 1.19.37. + +* Thu Aug 30 2012 Richard W.M. Jones - 1:1.19.36-2 +- New upstream version 1.19.36. +- Require libvirt-daemon-qemu (for libvirt attach method). + +* Thu Aug 30 2012 Richard W.M. Jones - 1:1.19.36-1 +- Switch to using libvirt as the backend for running the appliance. See: + https://www.redhat.com/archives/libguestfs/2012-August/msg00070.html +- Use configure RPM macro instead of ./configure. + +* Wed Aug 29 2012 Richard W.M. Jones - 1:1.19.35-1 +- New upstream version 1.19.35. + +* Wed Aug 29 2012 Richard W.M. Jones - 1:1.19.34-2 +- Add upstream patch to fix Perl bindtests on 32 bit. + +* Tue Aug 28 2012 Richard W.M. Jones - 1:1.19.34-1 +- New upstream version 1.19.34. + +* Tue Aug 28 2012 Richard W.M. Jones - 1:1.19.33-1 +- New upstream version 1.19.33. + +* Mon Aug 27 2012 Richard W.M. Jones - 1:1.19.33-3 +- Fix Perl examples directory so we only include the examples. +- Add Java examples to java-devel RPM. + +* Tue Aug 21 2012 Richard W.M. Jones - 1:1.19.33-2 +- New upstream version 1.19.33. +- Reenable tests. + +* Sat Aug 18 2012 Richard W.M. Jones - 1:1.19.32-1 +- New upstream version 1.19.32. + +* Wed Aug 15 2012 Richard W.M. Jones - 1:1.19.31-1 +- New upstream version 1.19.31. + +* Tue Aug 14 2012 Richard W.M. Jones - 1:1.19.30-1 +- New upstream version 1.19.30. + +* Sat Aug 11 2012 Richard W.M. Jones - 1:1.19.29-2 +- New upstream version 1.19.29. +- Remove RELEASE NOTES from doc section, and add equivalent man page. + +* Fri Aug 10 2012 Richard W.M. Jones - 1:1.19.28-4 +- Bump and rebuild. + +* Thu Aug 02 2012 Richard W.M. Jones - 1:1.19.28-3 +- New upstream version 1.19.28. +- Update libguestfs-find-requires to generate ordinary lib dependencies. + +* Wed Aug 1 2012 Richard W.M. Jones - 1:1.19.27-2 +- Disable tests because of RHBZ#844485. + +* Mon Jul 30 2012 Richard W.M. Jones - 1:1.19.27-1 +- New upstream version 1.19.27. + +* Thu Jul 26 2012 Richard W.M. Jones - 1:1.19.26-2 +- Remove old RPM-isms like defattr. +- Add upstream patches to fix use of 'run' script in tests. + +* Thu Jul 26 2012 Richard W.M. Jones - 1:1.19.26-1 +- New upstream version 1.19.26. + +* Tue Jul 24 2012 Richard W.M. Jones - 1:1.19.25-1 +- New upstream version 1.19.25. + +* Mon Jul 23 2012 Richard W.M. Jones - 1:1.19.24-1 +- New upstream version 1.19.24. + +* Sun Jul 22 2012 Richard W.M. Jones - 1:1.19.23-1 +- New upstream version 1.19.23. + +* Thu Jul 19 2012 Richard W.M. Jones - 1:1.19.22-2 +- Add upstream patch to skip mount-local test if /dev/fuse not writable. + +* Thu Jul 19 2012 Richard W.M. Jones - 1:1.19.22-1 +- New upstream version 1.19.22. + +* Wed Jul 18 2012 Richard W.M. Jones - 1:1.19.21-1 +- New upstream version 1.19.21. + +* Tue Jul 17 2012 Richard W.M. Jones - 1:1.19.20-1 +- New upstream version 1.19.20. + +* Mon Jul 16 2012 Richard W.M. Jones - 1:1.19.19-1 +- New upstream version 1.19.19. + +* Tue Jul 10 2012 Petr Pisar - 1:1.19.18-2 +- Perl 5.16 rebuild + +* Mon Jul 09 2012 Richard W.M. Jones - 1:1.19.18-1 +- New upstream version 1.19.18. + +* Fri Jul 06 2012 Richard W.M. Jones - 1:1.19.17-1 +- New upstream version 1.19.17. + +* Wed Jul 04 2012 Richard W.M. Jones - 1:1.19.16-1 +- New upstream version 1.19.16. + +* Fri Jun 29 2012 Richard W.M. Jones - 1:1.19.15-1 +- New upstream version 1.19.15. + +* Thu Jun 28 2012 Richard W.M. Jones - 1:1.19.14-1 +- New upstream version 1.19.14. + +* Wed Jun 27 2012 Richard W.M. Jones - 1:1.19.13-2 +- New upstream version 1.19.13. +- Add upstream patch to fix GObject/Javascript tests. + +* Tue Jun 26 2012 Richard W.M. Jones - 1:1.19.12-1 +- New upstream version 1.19.12. + +* Mon Jun 25 2012 Richard W.M. Jones - 1:1.19.11-1 +- New upstream version 1.19.11. + +* Fri Jun 22 2012 Richard W.M. Jones - 1:1.19.10-1 +- New upstream version 1.19.10. + +* Mon Jun 18 2012 Richard W.M. Jones - 1:1.19.9-1 +- New upstream version 1.19.9. + +* Thu Jun 14 2012 Richard W.M. Jones - 1:1.19.8-1 +- New upstream version 1.19.8. + +* Thu Jun 14 2012 Richard W.M. Jones - 1:1.19.7-2 +- New upstream version 1.19.7. +- Require febotstrap >= 3.17. + +* Tue Jun 12 2012 Richard W.M. Jones - 1:1.19.6-2 +- Require febootstrap >= 3.16. + +* Tue Jun 12 2012 Richard W.M. Jones - 1:1.19.6-1 +- New upstream version 1.19.6. + +* Tue Jun 12 2012 Richard W.M. Jones - 1:1.19.6-1 +- New upstream version 1.19.6. +- This version defaults to using virtio-scsi. +- Requires qemu >= 1.0. +- Requires febootstrap >= 3.15. + +* Mon Jun 11 2012 Petr Pisar - 1:1.19.5-2 +- Perl 5.16 rebuild + +* Sat Jun 09 2012 Richard W.M. Jones - 1:1.19.5-1 +- New upstream version 1.19.5. + +* Thu Jun 07 2012 Richard W.M. Jones - 1:1.19.4-1 +- New upstream version 1.19.4. + +* Fri Jun 01 2012 Richard W.M. Jones - 1:1.19.3-2 +- New upstream version 1.19.3. +- Remove patches which are now upstream. + +* Tue May 29 2012 Richard W.M. Jones - 1:1.19.2-3 +- Remove obsolete list of bugs in make check rule. +- Remove some obsolete test workarounds. +- Disable i386 tests (because of RHBZ#825944). + +* Mon May 28 2012 Richard W.M. Jones - 1:1.19.2-2 +- Include patches to fix udev. + +* Mon May 28 2012 Richard W.M. Jones - 1:1.19.2-1 +- New upstream version 1.19.2. + +* Sat May 26 2012 Richard W.M. Jones - 1:1.19.1-1 +- New upstream version 1.19.1. + +* Mon May 21 2012 Richard W.M. Jones - 1:1.19.0-1 +- New upstream version 1.19.0. + +* Thu May 17 2012 Richard W.M. Jones - 1:1.17.43-1 +- New upstream version 1.17.43. + +* Thu May 17 2012 Richard W.M. Jones - 1:1.17.42-4 +- On RHEL 7 only, remove reiserfs-utils, zerofree. + +* Thu May 17 2012 Richard W.M. Jones - 1:1.17.42-3 +- On RHEL 7 only, remove nilfs-utils. + +* Tue May 15 2012 Richard W.M. Jones - 1:1.17.42-2 +- Bundled gnulib (RHBZ#821767). + +* Mon May 14 2012 Richard W.M. Jones - 1:1.17.42-1 +- New upstream version 1.17.42. + +* Fri May 11 2012 Richard W.M. Jones - 1:1.17.41-1 +- New upstream version 1.17.41. + +* Tue May 08 2012 Richard W.M. Jones - 1:1.17.40-1 +- New upstream version 1.17.40. + +* Tue May 8 2012 Richard W.M. Jones - 1:1.17.39-3 +- Disable hfsplus-tools on RHEL 7. + +* Thu May 03 2012 Richard W.M. Jones - 1:1.17.39-2 +- BR perl-XML-XPath to run the new XML test. + +* Thu May 03 2012 Richard W.M. Jones - 1:1.17.39-1 +- New upstream version 1.17.39. + +* Wed May 02 2012 Richard W.M. Jones - 1:1.17.38-3 +- Remove explicit runtime deps for old virt-sysprep. +- Add explicit runtime dep on fuse (RHBZ#767852, thanks Pádraig Brady). +- Remove explicit versioned dep on glibc. + +* Tue May 1 2012 Peter Robinson - 1:1.17.38-2 +- Update supported filesystems for ARM + +* Tue May 01 2012 Richard W.M. Jones - 1:1.17.38-1 +- New upstream version 1.17.38. + +* Tue May 01 2012 Richard W.M. Jones - 1:1.17.37-2 +- Add guestfs-faq(1) (FAQ is now a man page). + +* Tue May 01 2012 Richard W.M. Jones - 1:1.17.37-1 +- New upstream version 1.17.37. + +* Fri Apr 27 2012 Richard W.M. Jones - 1:1.17.36-2 +- Add upstream patch to fix installation of gobject headers. + +* Thu Apr 26 2012 Richard W.M. Jones - 1:1.17.36-1 +- New upstream version 1.17.36. + +* Thu Apr 26 2012 Richard W.M. Jones - 1:1.17.35-1 +- New upstream version 1.17.35. + +* Tue Apr 24 2012 Richard W.M. Jones - 1:1.17.34-1 +- New upstream version 1.17.34. + +* Mon Apr 23 2012 Richard W.M. Jones - 1:1.17.33-1 +- New upstream version 1.17.33. + +* Tue Apr 17 2012 Richard W.M. Jones - 1:1.17.32-1 +- New upstream version 1.17.32. + +* Mon Apr 16 2012 Richard W.M. Jones - 1:1.17.31-1 +- New upstream version 1.17.31. + +* Fri Apr 13 2012 Richard W.M. Jones - 1:1.17.30-1 +- New upstream version 1.17.30. + +* Thu Apr 12 2012 Richard W.M. Jones - 1:1.17.29-1 +- New upstream version 1.17.29. + +* Thu Apr 12 2012 Richard W.M. Jones - 1:1.17.28-2 +- Enable ruby 1.9 patch in RHEL 7 (RHBZ#812139). + +* Thu Apr 12 2012 Richard W.M. Jones - 1:1.17.28-1 +- New upstream version 1.17.28. + +* Wed Apr 11 2012 Richard W.M. Jones - 1:1.17.27-2 +- Add guestfs-performance(1) manual page. + +* Tue Apr 10 2012 Richard W.M. Jones - 1:1.17.27-1 +- New upstream version 1.17.27. + +* Tue Apr 03 2012 Richard W.M. Jones - 1:1.17.26-1 +- New upstream version 1.17.26. + +* Mon Apr 02 2012 Richard W.M. Jones - 1:1.17.25-1 +- New upstream version 1.17.25. + +* Sun Apr 01 2012 Richard W.M. Jones - 1:1.17.24-1 +- New upstream version 1.17.24. + +* Sun Apr 01 2012 Richard W.M. Jones - 1:1.17.23-1 +- New upstream version 1.17.23. + +* Thu Mar 29 2012 Richard W.M. Jones - 1:1.17.22-2 +- Include all gobject header files. +- Include gtk-doc, and depend on the gtk-doc package at runtime. + +* Thu Mar 29 2012 Richard W.M. Jones - 1:1.17.22-1 +- New upstream version 1.17.22. + +* Thu Mar 29 2012 Richard W.M. Jones - 1:1.17.21-2 +- Bump and rebuild. + +* Wed Mar 21 2012 Richard W.M. Jones - 1:1.17.21-1 +- New upstream version 1.17.21. + +* Mon Mar 19 2012 Richard W.M. Jones - 1:1.17.20-3 +- Reenable LUKS, since RHBZ#804345 is reported to be fixed. + +* Sun Mar 18 2012 Richard W.M. Jones - 1:1.17.20-2 +- Disable LUKS tests because LUKS is broken in Rawhide (RHBZ#804345). + +* Sat Mar 17 2012 Richard W.M. Jones - 1:1.17.20-1 +- New upstream version 1.17.20. + +* Sat Mar 17 2012 Richard W.M. Jones - 1:1.17.19-2 +- Add libguestfs-make-fixed-appliance (with man page). + +* Fri Mar 16 2012 Richard W.M. Jones - 1:1.17.19-1 +- New upstream version 1.17.19. + +* Thu Mar 15 2012 Richard W.M. Jones - 1:1.17.18-1 +- New upstream version 1.17.18. + +* Wed Mar 14 2012 Richard W.M. Jones - 1:1.17.17-1 +- New upstream version 1.17.17. + +* Wed Mar 14 2012 Richard W.M. Jones - 1:1.17.16-2 +- Bump and rebuild. + +* Tue Mar 13 2012 Richard W.M. Jones - 1:1.17.16-1 +- New upstream version 1.17.16. + +* Mon Mar 12 2012 Richard W.M. Jones - 1:1.17.15-1 +- New upstream version 1.17.15. + +* Fri Mar 09 2012 Richard W.M. Jones - 1:1.17.14-1 +- New upstream version 1.17.14. + +* Thu Mar 08 2012 Richard W.M. Jones - 1:1.17.13-1 +- New upstream version 1.17.13. + +* Thu Mar 08 2012 Richard W.M. Jones - 1:1.17.12-2 +- Enable Japanese man pages, since these are in a better state upstream. + +* Wed Mar 07 2012 Richard W.M. Jones - 1:1.17.12-1 +- New upstream version 1.17.12. + +* Wed Mar 07 2012 Richard W.M. Jones - 1:1.17.11-2 +- Require netpbm-progs, icoutils. These are needed for icon generation + during inspection, but were not being pulled in before. + +* Mon Mar 05 2012 Richard W.M. Jones - 1:1.17.11-1 +- New upstream version 1.17.11. + +* Sat Mar 03 2012 Richard W.M. Jones - 1:1.17.10-2 +- New upstream version 1.17.10. +- Rebase Ruby patch against new libguestfs. + +* Wed Feb 29 2012 Richard W.M. Jones - 1:1.17.9-1 +- New upstream version 1.17.9. + +* Wed Feb 15 2012 Richard W.M. Jones - 1:1.17.8-1 +- New upstream version 1.17.8. + +* Mon Feb 13 2012 Richard W.M. Jones - 1:1.17.7-1 +- New upstream version 1.17.7. + +* Fri Feb 10 2012 Richard W.M. Jones - 1:1.17.6-1 +- +BR ruby-irb. +- Make virtio unconditional. It's been a very long time since disabling + virtio was a good idea. +- Disable some packages not available in RHEL 7. +- New upstream version 1.17.6. + +* Fri Feb 10 2012 Petr Pisar - 1:1.17.5-3 +- Rebuild against PCRE 8.30 + +* Thu Feb 9 2012 Richard W.M. Jones - 1:1.17.5-2 +- Rebuild with ruby(abi) = 1.9.1. + +* Wed Feb 8 2012 Richard W.M. Jones - 1:1.17.5-1 +- New upstream version 1.17.5. +- Remove usrmove workaround patch, now upstream. + +* Wed Feb 8 2012 Richard W.M. Jones - 1:1.17.4-8 +- Further Ruby 1.9 changes. + +* Tue Feb 07 2012 Richard W.M. Jones - 1:1.17.4-7 +- Bump and rebuild for Ruby update. + +* Mon Feb 6 2012 Richard W.M. Jones - 1:1.17.4-6 +- Add workaround for usrmove in Fedora. + +* Wed Feb 1 2012 Richard W.M. Jones - 1:1.17.4-1 +- New upstream version 1.17.4. +- Remove patch now upstream. + +* Sat Jan 28 2012 Richard W.M. Jones - 1:1.17.3-2 +- New upstream version 1.17.3. +- Remove patch now upstream. +- Add upstream patch to fix OCaml bytecode compilation. + +* Fri Jan 27 2012 Richard W.M. Jones - 1:1.17.2-3 +- Upstream patch to work with udev >= 176. + +* Thu Jan 26 2012 Richard W.M. Jones - 1:1.17.2-2 +- New upstream version 1.17.2. +- Use libdb-utils instead of old db4-utils. +- net-tools is no longer used; replaced by iproute (RHBZ#784647). +- Try re-enabling tests on i686. + +* Tue Jan 24 2012 Richard W.M. Jones - 1:1.17.1-1 +- New upstream version 1.17.1. + +* Mon Jan 23 2012 Richard W.M. Jones - 1:1.16.0-1 +- New upstream version 1.16.0. +- Remove patches which are now upstream. +- GObject: Move *.typelib file to base gobject package. + +* Sun Jan 22 2012 Richard W.M. Jones - 1:1.15.19-1 +- New upstream version 1.15.19. +- +BR psmisc for the appliance. +- Includes GObject bindings in libguestfs-gobject and + libguestfs-gobject-devel subpackages. +- Include upstream patches for PHP 5.4. + +* Thu Jan 19 2012 Richard W.M. Jones - 1:1.15.18-1 +- New upstream version 1.15.18. + +* Wed Jan 18 2012 Richard W.M. Jones - 1:1.15.17-1 +- New upstream version 1.15.17. +- New tool: virt-format. + +* Tue Jan 10 2012 Richard W.M. Jones - 1:1.15.16-1 +- New upstream version 1.15.16. + +* Sun Jan 8 2012 Richard W.M. Jones - 1:1.15.15-2 +- New upstream version 1.15.15. +- Updated gnulib fixes builds with gcc 4.7. +- Rebuild for OCaml 3.12.1. +- Add explicit BR perl-hivex, required for various Perl virt tools. + +* Fri Dec 23 2011 Richard W.M. Jones - 1:1.15.14-1 +- New upstream version 1.15.14. +- Remove three patches, now upstream. + +* Thu Dec 22 2011 Richard W.M. Jones - 1:1.15.13-4 +- New upstream version 1.15.13. +- Fixes Security: Mitigate possible privilege escalation via SG_IO ioctl + (CVE-2011-4127, RHBZ#757071). +- Add three upstream patches to fix 'make check'. + +* Thu Dec 22 2011 Richard W.M. Jones - 1:1.15.12-1 +- New upstream version 1.15.12. + +* Fri Dec 9 2011 Richard W.M. Jones - 1:1.15.11-1 +- New upstream version 1.15.11. + +* Tue Dec 6 2011 Richard W.M. Jones - 1:1.15.10-1 +- New upstream version 1.15.10. +- Remove patch, now upstream. + +* Sat Dec 3 2011 Richard W.M. Jones - 1:1.15.9-2 +- New upstream version 1.15.9. +- Add upstream patch to fix Augeas library detection. +- Appliance explicitly requires libxml2 (because Augeas >= 0.10 requires it), + although it was implicitly included already. + +* Tue Nov 29 2011 Richard W.M. Jones - 1:1.15.8-1 +- New upstream version 1.15.8. + +* Tue Nov 29 2011 Richard W.M. Jones - 1:1.15.7-1 +- New upstream version 1.15.7. + +* Thu Nov 24 2011 Richard W.M. Jones - 1:1.15.6-1 +- New upstream version 1.15.6. + +* Mon Nov 21 2011 Richard W.M. Jones - 1:1.15.5-1 +- New upstream version 1.15.5. +- Add guestfs-testing(1) man page. + +* Thu Nov 17 2011 Richard W.M. Jones - 1:1.15.4-2 +- New upstream version 1.15.4. +- Remove patch which is now upstream. +- libguestfs_jni.a is no longer built. + +* Fri Nov 11 2011 Richard W.M. Jones - 1:1.15.3-3 +- Add upstream patch to disable part of virt-df test. + +* Thu Nov 10 2011 Richard W.M. Jones - 1:1.15.3-1 +- New upstream version 1.15.3. +- Fix list of BuildRequires so they precisely match the appliance. + +* Thu Nov 3 2011 Richard W.M. Jones - 1:1.15.2-1 +- New upstream version 1.15.2. +- ocaml-pcre is no longer required for virt-resize. +- xmlstarlet is no longer required for virt-sysprep. + +* Tue Nov 1 2011 Richard W.M. Jones - 1:1.15.1-1 +- New upstream version 1.15.1. + +* Fri Oct 28 2011 Richard W.M. Jones - 1:1.15.0-1 +- Stable branch 1.14.0 was released. This is the new development + branch version 1.15.0. + +* Wed Oct 26 2011 Richard W.M. Jones - 1:1.13.26-1 +- New upstream version 1.13.26. + +* Wed Oct 26 2011 Richard W.M. Jones - 1:1.13.25-1 +- New upstream version 1.13.25. + +* Mon Oct 24 2011 Richard W.M. Jones - 1:1.13.24-1 +- New upstream version 1.13.24. +- This version includes upstream workarounds for broken qemu, so both + non-upstream patches have now been removed from Fedora. + +* Fri Oct 21 2011 Marcela Mašláňová - 1:1.13.23-1.1 +- rebuild with new gmp without compat lib + +* Thu Oct 20 2011 Richard W.M. Jones - 1:1.13.23-1 +- New upstream version 1.13.23. + +* Wed Oct 19 2011 Richard W.M. Jones - 1:1.13.22-2 +- New upstream version 1.13.22. +- Remove 3x upstream patches. +- Renumber the two remaining non-upstream patches as patch0, patch1. +- Rebase patch1. + +* Mon Oct 17 2011 Richard W.M. Jones - 1:1.13.21-4 +- Add upstream patch to skip FUSE tests if there is no /dev/fuse. + This allows us also to remove the Fedora-specific patch which + disabled these tests before. + +* Sat Oct 15 2011 Richard W.M. Jones - 1:1.13.21-3 +- Add upstream patch to fix virt-sysprep test. + +* Fri Oct 14 2011 Richard W.M. Jones - 1:1.13.21-2 +- New upstream version 1.13.21. +- Move virt-sysprep to libguestfs-tools, to avoid pulling in extra + dependencies for RHEV-H. This tool is not likely to be useful + for RHEV-H in its current form anyway. +- Change BR cryptsetup-luks -> cryptsetup since that package changed. + +* Wed Oct 12 2011 Peter Schiffer - 1:1.13.20-1.1 +- rebuild with new gmp + +* Tue Oct 11 2011 Richard W.M. Jones - 1:1.13.20-1 +- New upstream version 1.13.20. + +* Sat Oct 8 2011 Richard W.M. Jones - 1:1.13.19-1 +- New upstream version 1.13.19. +- New tool: virt-sysprep. +- Remove the old guestfish and libguestfs-mount packages, and put these + tools into libguestfs-tools. This change is long overdue, but is also + necessitated by the new virt-sysprep tool. This new tool would pull + in guestfish anyway, so having separate packages makes no sense. +- Remove old obsoletes for virt-cat, virt-df, virt-df2 and virt-inspector, + since those packages existed only in much older Fedora. + +* Wed Oct 5 2011 Richard W.M. Jones - 1:1.13.18-1 +- New upstream version 1.13.18. +- New tool: virt-alignment-scan. + +* Tue Oct 4 2011 Richard W.M. Jones - 1:1.13.17-1 +- New upstream version 1.13.17. +- New tool: virt-sparsify. + +* Sat Oct 1 2011 Richard W.M. Jones - 1:1.13.16-1 +- New upstream version 1.13.16. + +* Thu Sep 29 2011 Richard W.M. Jones - 1:1.13.15-2 +- Rearrange description to make it clearer. +- virt-resize was written in OCaml. Move it to libguestfs-tools-c + subpackage since it doesn't require Perl. + +* Wed Sep 28 2011 Richard W.M. Jones - 1:1.13.15-1 +- New upstream version 1.13.15. +- Add lzop program to the appliance (for compress-out API). +- Remove upstream patch. + +* Mon Sep 26 2011 Richard W.M. Jones - 1:1.13.14-2 +- Upstream patch to fix timer check failures during boot (RHBZ#502058). + +* Sat Sep 24 2011 Richard W.M. Jones - 1:1.13.14-1 +- New upstream version 1.13.14. + +* Wed Sep 21 2011 Richard W.M. Jones - 1:1.13.13-1 +- Add Erlang bindings in erlang-libguestfs subpackage. +- Remove upstream patch. + +* Fri Sep 16 2011 Richard W.M. Jones - 1:1.13.12-4 +- Don't require grub. See RHBZ#737261. +- Note this (hopefully temporarily) breaks guestfs_grub_install API. +- Include upstream patch to add guestfs_grub_install into an optional group. + +* Wed Sep 14 2011 Richard W.M. Jones - 1:1.13.12-1 +- New upstream version 1.13.12. + +* Thu Sep 1 2011 Richard W.M. Jones - 1:1.13.11-1 +- New upstream version 1.13.11. + +* Tue Aug 30 2011 Richard W.M. Jones - 1:1.13.10-2 +- Remove MAKEDEV dependency (RHBZ#727247). + +* Sun Aug 28 2011 Richard W.M. Jones - 1:1.13.10-1 +- New upstream version 1.13.10. + +* Fri Aug 26 2011 Richard W.M. Jones - 1:1.13.9-1 +- New upstream version 1.13.9. + +* Fri Aug 26 2011 Richard W.M. Jones - 1:1.13.8-1 +- New upstream version 1.13.8. +- Static python library is no longer built, so don't rm it. + +* Tue Aug 23 2011 Richard W.M. Jones - 1:1.13.7-1 +- New upstream version 1.13.7. +- configure --with-extra version string contains Fedora release. +- Build with make V=1 to display full compile commands. +- Remove /usr/sbin PATH setting, not used for a very long time. + +* Fri Aug 19 2011 Richard W.M. Jones - 1:1.13.6-2 +- New upstream version 1.13.6. +- Rebase non-upstream patch to fix qemu -machine option. + +* Wed Aug 17 2011 Richard W.M. Jones - 1:1.13.5-1 +- New upstream version 1.13.5. + +* Thu Aug 11 2011 Richard W.M. Jones - 1:1.13.4-1 +- New upstream version 1.13.4. + +* Mon Aug 8 2011 Richard W.M. Jones - 1:1.13.3-4 +- New upstream version 1.13.3. +- 'test-getlogin_r.c:55: assertion failed' test must now be fixed in + gnulib/tests directory instead of daemon/tests (the latter directory + no longer exists). +- Only run testsuite on x86_64 because of qemu bug. + +* Tue Aug 2 2011 Richard W.M. Jones - 1:1.13.2-3 +- Switch Rawhide to use the new development branch (1.13). +- New upstream version 1.13.2. +- Remove upstream patch. +- Ensure config.log is printed, even in the error case. + +* Tue Jul 26 2011 Richard W.M. Jones - 1:1.12.1-4 +- New upstream stable branch version 1.12.1. +- Remove 5 x upstream patches. +- Add non-upstream patch to deal with broken qemu -machine option. +- Add upstream patch to fix segfault in OCaml bindings. + +* Tue Jul 26 2011 Richard W.M. Jones - 1:1.12.0-11 +- Bump and rebuild. + +* Fri Jul 22 2011 Richard W.M. Jones - 1:1.12.0-10 +- Rebuild against fixed hivex 1.2.7-7 in dist-f16-perl. + +* Thu Jul 21 2011 Richard W.M. Jones - 1:1.12.0-9 +- Attempt rebuild in dist-f16-perl. + +* Thu Jul 21 2011 Petr Sabata - 1:1.12.0-8 +- Perl mass rebuild + +* Thu Jul 21 2011 Richard W.M. Jones - 1:1.12.0-4 +- Disable tests, use quickcheck, because of RHBZ#723555, RHBZ#723822. + +* Wed Jul 20 2011 Richard W.M. Jones - 1:1.12.0-2 +- Readd patch to fix virtio-serial test for qemu 0.15. + +* Wed Jul 20 2011 Richard W.M. Jones - 1:1.12.0-1 +- New stable version 1.12.0 for Fedora 16. +- Remove upstream patch. +- Disable tests on i686 (because of RHBZ#723555). + +* Wed Jul 20 2011 Petr Sabata - 1:1.11.20-3 +- Perl mass rebuild + +* Tue Jul 19 2011 Richard W.M. Jones - 1:1.11.20-2 +- Add upstream patch to fix virtio-serial test for qemu 0.15. + +* Tue Jul 19 2011 Richard W.M. Jones - 1:1.11.20-1 +- New upstream version 1.11.20. +- Replace standard README file with one suited for Fedora. +- Add guestfs-java(3) manpage to libguestfs-java-devel package. + +* Mon Jul 18 2011 Richard W.M. Jones - 1:1.11.19-1 +- New upstream version 1.11.19. +- Remove upstream patch. +- Add Ukrainian (uk) man pages subpackage. + +* Fri Jul 15 2011 Richard W.M. Jones - 1:1.11.18-2 +- Add upstream patch to fix regression test. + +* Fri Jul 15 2011 Richard W.M. Jones - 1:1.11.18-1 +- New upstream version 1.11.18. +- Force febootstrap >= 3.7 which contains a fix for latest Rawhide. +- Use --enable-install-daemon to install guestfsd. + +* Thu Jul 14 2011 Richard W.M. Jones - 1:1.11.17-1 +- New upstream version 1.11.17. + +* Wed Jul 13 2011 Richard W.M. Jones - 1:1.11.16-1 +- New upstream version 1.11.16. + +* Tue Jul 12 2011 Richard W.M. Jones - 1:1.11.15-1 +- New upstream version 1.11.15. + +* Wed Jul 6 2011 Richard W.M. Jones - 1:1.11.14-1 +- New upstream version 1.11.14. + +* Wed Jul 6 2011 Richard W.M. Jones - 1:1.11.13-3 +- Further updates to libguestfs-live-service after feedback from + Dan Berrange and Lennart Poettering. + +* Tue Jul 5 2011 Richard W.M. Jones - 1:1.11.13-2 +- Add libguestfs-live-service subpackage. This can be installed in + virtual machines in order to enable safe editing of files in running + guests (eg. guestfish --live). + +* Thu Jun 30 2011 Richard W.M. Jones - 1:1.11.13-1 +- New upstream version 1.11.13. + +* Wed Jun 29 2011 Richard W.M. Jones - 1:1.11.12-3 +- Bump and rebuild for parted 3.0. +- Depend on fixed parted >= 3.0-2. + +* Tue Jun 28 2011 Richard W.M. Jones - 1:1.11.12-1 +- New upstream version 1.11.12. + +* Tue Jun 21 2011 Richard W.M. Jones - 1:1.11.11-1 +- New upstream version 1.11.11. + +* Mon Jun 20 2011 Richard W.M. Jones - 1:1.11.10-3 +- Temporarily stop setting CCFLAGS in perl subdirectory. + See: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628522 + +* Fri Jun 17 2011 Marcela Mašláňová - 1:1.11.10-2 +- Perl mass rebuild + +* Fri Jun 10 2011 Richard W.M. Jones - 1:1.11.10-1 +- New upstream version 1.11.10. +- Enable tests since fix for RHBZ#710921 is in Rawhide kernel package. + +* Fri Jun 10 2011 Marcela Mašláňová - 1:1.11.9-8 +- Perl 5.14 mass rebuild + +* Sun Jun 5 2011 Richard W.M. Jones - 1:1.11.9-7 +- Build against new parted. +- Disable tests on i686 because of RHBZ#710921. +- Remove recipes/ doc directory. This is no longer present because it + was replaced by a guestfs-recipes(1) man page. + +* Sat Jun 4 2011 Richard W.M. Jones - 1:1.11.9-1 +- New upstream version 1.11.9. + +* Wed May 18 2011 Richard W.M. Jones - 1:1.11.8-1 +- New upstream version 1.11.8. +- "zero" command test is fixed now, so we don't need to skip it. + +* Tue May 17 2011 Richard W.M. Jones - 1:1.11.7-3 +- New upstream version 1.11.7. +- Depends on hivex >= 1.2.7. +- Remove upstream patch. +- Skip test of "zero" command (RHBZ#705499). + +* Mon May 9 2011 Richard W.M. Jones - 1:1.11.5-2 +- configure: Use Python platform-dependent site-packages. + +* Mon May 9 2011 Richard W.M. Jones - 1:1.11.5-1 +- New upstream version 1.11.5. +- virt-edit has been rewritten in C, therefore this tool has been moved + into the libguestfs-tools-c package. + +* Sun May 8 2011 Richard W.M. Jones - 1:1.11.4-1 +- New upstream version 1.11.4. + +* Fri Apr 22 2011 Richard W.M. Jones - 1:1.11.3-1 +- New upstream version 1.11.3. + +* Mon Apr 18 2011 Richard W.M. Jones - 1:1.11.2-1 +- New upstream version 1.11.2. +- Fixes Python bindings when used in Python threads. +- Remove upstream patch. + +* Sat Apr 16 2011 Richard W.M. Jones - 1:1.11.1-2 +- New upstream version 1.11.1. +- Add upstream patch so we don't depend on libtool. + +* Fri Apr 15 2011 Richard W.M. Jones - 1:1.11.0-2 +- Bump and rebuild. + +* Tue Apr 12 2011 Richard W.M. Jones - 1:1.11.0-1 +- New upstream development branch 1.11.0. +- New Source URL. +- Remove patches which are now upstream. + +* Sun Apr 10 2011 Richard W.M. Jones - 1:1.9.18-4 +- Include further fixes to virt-resize from upstream. + +* Sat Apr 9 2011 Richard W.M. Jones - 1:1.9.18-2 +- New upstream version 1.9.18. +- Requires ocaml-pcre for new virt-resize. +- Remove libguestfs-test-tool-helper program which is no longer used. +- Include upstream fix for virt-resize build. + +* Wed Apr 6 2011 Richard W.M. Jones - 1:1.9.17-2 +- Remove partially translated Ukrainian manpages. + +* Tue Apr 5 2011 Richard W.M. Jones - 1:1.9.17-1 +- New upstream version 1.9.17. + +* Fri Apr 1 2011 Richard W.M. Jones - 1:1.9.16-1 +- New upstream version 1.9.16. + +* Fri Apr 1 2011 Richard W.M. Jones - 1:1.9.15-1 +- New upstream version 1.9.15. +- Add BR libconfig-devel. +- Add /etc/libguestfs-tools.conf (config file for guestfish, guestmount, + virt-rescue; in future for other tools as well). + +* Mon Mar 28 2011 Richard W.M. Jones - 1:1.9.14-1 +- New upstream version 1.9.14. +- Include 'acl' as BR so virt-rescue gets getfacl and setfacl programs. + +* Mon Mar 28 2011 Richard W.M. Jones - 1:1.9.13-2 +- Include 'attr' as BR (required for getfattr, setfattr programs in + virt-rescue). + +* Thu Mar 24 2011 Richard W.M. Jones - 1:1.9.13-1 +- New upstream version 1.9.13. + +* Fri Mar 18 2011 Richard W.M. Jones - 1:1.9.12-1 +- New upstream version 1.9.12. + +* Wed Mar 16 2011 Richard W.M. Jones - 1:1.9.11-2 +- Add runtime requires on minimum glibc because of newly readable binaries. + +* Tue Mar 15 2011 Richard W.M. Jones - 1:1.9.11-1 +- New upstream version 1.9.11. +- Add generated Ruby documentation (rdoc). + +* Tue Mar 8 2011 Richard W.M. Jones - 1:1.9.10-1 +- New upstream version 1.9.10. +- Remove patches (now upstream). + +* Fri Mar 4 2011 Richard W.M. Jones - 1:1.9.9-2 +- Include upstream patches to fix virt-make-fs with qemu-img 0.14. + +* Fri Mar 4 2011 Richard W.M. Jones - 1:1.9.9-1 +- New upstream version 1.9.9. + +* Tue Feb 08 2011 Fedora Release Engineering - 1:1.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Feb 6 2011 Richard W.M. Jones - 1:1.9.8-1 +- New upstream version 1.9.8. + +* Sun Feb 6 2011 Richard W.M. Jones - 1:1.9.7-7 +- Rebuild against rpm-4.9.0-0.beta1.6.fc15 to fix OCaml deps. See discussion: + http://lists.fedoraproject.org/pipermail/devel/2011-February/148398.html + +* Wed Feb 2 2011 Richard W.M. Jones - 1:1.9.7-6 +- Add temporary non-upstream patch to fix /etc/mtab. + See: https://www.redhat.com/archives/libguestfs/2011-February/msg00006.html +- Add fix for regressions/rhbz557655.sh so it works when tracing is enabled. +- Add guestfs-perl(3) man page. + +* Tue Feb 1 2011 Richard W.M. Jones - 1:1.9.7-3 +- Enable trace in 'make check' section. + +* Sun Jan 30 2011 Richard W.M. Jones - 1:1.9.7-1 +- New upstream version 1.9.7. + +* Wed Jan 26 2011 Richard W.M. Jones - 1:1.9.6-2 +- Bump and rebuild. + +* Sat Jan 22 2011 Richard W.M. Jones - 1:1.9.6-1 +- New upstream version 1.9.6. + +* Tue Jan 18 2011 Richard W.M. Jones - 1:1.9.5-1 +- New upstream version 1.9.5. + +* Sat Jan 15 2011 Richard W.M. Jones - 1:1.9.4-1 +- New upstream version 1.9.4. + +* Fri Jan 14 2011 Richard W.M. Jones - 1:1.9.3-2 +- Only runtime require febootstrap-supermin-helper (not whole of + febootstrap). + +* Tue Jan 11 2011 Richard W.M. Jones - 1:1.9.3-1 +- New upstream version 1.9.3. + +* Wed Jan 05 2011 Richard W.M. Jones - 1:1.9.2-2 +- Bump and rebuild. + +* Mon Jan 3 2011 Richard W.M. Jones - 1:1.9.2-1 +- New upstream version 1.9.2. +- New tools: virt-copy-in, virt-copy-out, virt-tar-in, virt-tar-out. + These are just shell script wrappers around guestfish so they are + included in the guestfish package. + +* Fri Dec 31 2010 Richard W.M. Jones - 1:1.9.1-1 +- New upstream version 1.9.1. + +* Tue Dec 21 2010 Richard W.M. Jones - 1:1.9.0-2 +- Bump and rebuild. + +* Sun Dec 19 2010 Richard W.M. Jones - 1:1.9.0-1 +- New upstream development branch 1.9.0. +- Include ROADMAP in devel package. + +* Thu Dec 16 2010 Richard Jones - 1:1.7.24-1 +- New upstream version 1.7.24. +- Adds getxattr/lgetxattr APIs to support guestfs-browser. + +* Sat Dec 11 2010 Richard Jones - 1:1.7.23-1 +- New upstream version 1.7.23. + +* Sat Dec 11 2010 Richard Jones - 1:1.7.22-1 +- New upstream version 1.7.22. +- Depend on febootstrap 3.3 which fixes the checksum stability problem. + +* Fri Dec 10 2010 Richard Jones - 1:1.7.21-1 +- New upstream version 1.7.21. + +* Tue Dec 7 2010 Richard Jones - 1:1.7.20-1 +- New upstream version 1.7.20. +- Remove patches which are upstream. + +* Tue Dec 7 2010 Richard Jones - 1:1.7.19-15 +- Rebuild appliance with febootstrap 3.1-5 because we accidentally + reopened RHBZ#654638. + +* Mon Dec 6 2010 Richard Jones - 1:1.7.19-14 +- Rebuild appliance properly using febootstrap 3.1 and alternate yum repo. + +* Sun Dec 5 2010 Richard Jones - 1:1.7.19-1 +- New upstream development version 1.7.19. +- Appliance building in this version has been substantially rewritten + and this requires febootstrap >= 3.0 to build. +- createrepo no longer required. +- Supermin appliance is the default. + +* Wed Dec 1 2010 Richard Jones - 1:1.7.18-1 +- New upstream development version 1.7.18. + +* Tue Nov 30 2010 Richard Jones - 1:1.7.17-1 +- New upstream development version 1.7.17. + +* Fri Nov 26 2010 Richard Jones - 1:1.7.16-1 +- New upstream development version 1.7.16. +- guestfish no longer requires pod2text, hence no longer requires perl. +- Require febootstrap >= 2.11. + +* Fri Nov 26 2010 Richard Jones - 1:1.7.15-2 +- New upstream development version 1.7.15. +- Split out new libguestfs-tools-c package from libguestfs-tools. + . This is so that the -tools-c package can be pulled in by people + wanting to avoid a dependency on Perl, while -tools pulls in everything + as before. + . The C tools currently are: cat, df, filesystems, fish, inspector, ls, + mount, rescue. + . guestfish still requires pod2text which requires perl. This will be + rectified in the next release. + . libguestfs-tools no longer pulls in guestfish. +- guestfish also depends on: less, man, vi +- Add BR db4-utils (although since RPM needs it, it not really necessary). +- Runtime requires on db4-utils should be on core lib, not tools package. +- Change all "Requires: perl-Foo" to "Requires: perl(Foo)". + +* Thu Nov 25 2010 Richard Jones - 1:1.7.14-1 +- New upstream development version 1.7.14. + +* Wed Nov 24 2010 Richard Jones - 1:1.7.13-3 +- New upstream development version 1.7.13. +- New manual pages containing example code. +- Ship examples for C, OCaml, Ruby, Python. +- Don't ship HTML versions of man pages. +- Rebase no-fuse-test patch to latest version. + +* Tue Nov 23 2010 Richard Jones - 1:1.7.12-1 +- New upstream development version 1.7.12. +- New tool: virt-filesystems. virt-list-filesystems and virt-list-partitions + are deprecated, but still included in the package. + +* Wed Nov 17 2010 Richard Jones - 1:1.7.11-1 +- New upstream development version 1.7.11. +- Fix Source0 URL which had pointed to the 1.5 directory. +- virt-inspector is not a dependency of guestmount. + +* Wed Nov 17 2010 Richard Jones - 1:1.7.10-1 +- New upstream development version 1.7.10. + +* Tue Nov 16 2010 Richard Jones - 1:1.7.9-1 +- New upstream development version 1.7.9. + +* Mon Nov 15 2010 Richard Jones - 1:1.7.8-1 +- New upstream development version 1.7.8. +- Add Obsoletes so perl-Sys-Guestfs overrides perl-libguestfs (RHBZ#652587). + +* Mon Nov 15 2010 Richard Jones - 1:1.7.7-1 +- New upstream development version 1.7.7. +- Rename perl-libguestfs as perl-Sys-Guestfs (RHBZ#652587). + +* Sat Nov 13 2010 Richard Jones - 1:1.7.6-1 +- New upstream development version 1.7.6. + +* Sat Nov 13 2010 Richard Jones - 1:1.7.5-2 +- New upstream development version 1.7.5. +- Remove hand-installation of Ruby bindings. +- Remove upstream patch. + +* Thu Nov 11 2010 Richard Jones - 1:1.7.4-2 +- New upstream development version 1.7.4. +- ocaml-xml-light is no longer required. +- Remove guestfs-actions.h and guestfs-structs.h. Libguestfs now + only exports a single header file. +- Add patch to fix broken Perl test. +- Remove workaround for RHBZ#563103. + +* Mon Nov 8 2010 Richard Jones - 1:1.7.3-1 +- New upstream development version 1.7.3. +- Add AUTHORS file from tarball. + +* Fri Nov 5 2010 Richard Jones - 1:1.7.2-1 +- New upstream development version 1.7.2. +- Add requires ruby to ruby-libguestfs package. + +* Wed Nov 3 2010 Richard Jones - 1:1.7.1-1 +- New upstream development version 1.7.1. +- Add BR gperf. + +* Tue Nov 2 2010 Richard Jones - 1:1.7.0-1 +- New upstream development branch and version 1.7.0. + +* Fri Oct 29 2010 Richard Jones - 1:1.5.26-1 +- New upstream development version 1.5.26. + +* Thu Oct 28 2010 Richard Jones - 1:1.5.25-1 +- New upstream development version 1.5.25. +- Rewritten virt-inspector. +- Requires febootstrap >= 2.10. +- New virt-inspector requires db_dump program. + +* Wed Oct 27 2010 Richard Jones - 1:1.5.24-2 +- Attempt to run tests. + +* Wed Oct 27 2010 Richard Jones - 1:1.5.24-1 +- New upstream development version 1.5.24. + +* Sat Oct 23 2010 Richard Jones - 1:1.5.23-1 +- Fix for libguestfs: missing disk format specifier when adding a disk + (RHBZ#642934, CVE-2010-3851). + +* Tue Oct 19 2010 Richard Jones - 1:1.5.22-1 +- New upstream development version 1.5.22. + +* Sat Oct 9 2010 Richard Jones - 1:1.5.21-2 +- guestfish no longer requires virt-inspector. + +* Fri Oct 1 2010 Richard Jones - 1:1.5.21-1 +- New upstream development version 1.5.21. + +* Sun Sep 26 2010 Richard Jones - 1:1.5.20-1 +- New upstream development version 1.5.20. + +* Wed Sep 22 2010 Richard Jones - 1:1.5.18-1 +- New upstream development version 1.5.18. +- Note that guestfish '-a' and '-d' options were broken in 1.5.17, so + upgrading to this version is highly recommended. + +* Tue Sep 21 2010 Richard Jones - 1:1.5.17-1 +- New upstream development version 1.5.17. + +* Wed Sep 15 2010 Richard Jones - 1:1.5.16-1 +- New upstream development version 1.5.16. + +* Wed Sep 15 2010 Richard Jones - 1:1.5.15-1 +- New upstream development version 1.5.15. + +* Tue Sep 14 2010 Richard Jones - 1:1.5.14-1 +- New upstream development version 1.5.14. + +* Mon Sep 13 2010 Richard Jones - 1:1.5.13-1 +- New upstream version 1.5.13. +- Removed the patch workaround for RHBZ#630583. The same workaround + is now upstream (the bug is not fixed). + +* Sat Sep 11 2010 Richard Jones - 1:1.5.12-1 +- New upstream version 1.5.12. + +* Fri Sep 10 2010 Richard Jones - 1:1.5.11-1 +- New upstream version 1.5.11. +- Note: fixes a serious bug in guestfish 'copy-out' command. + +* Thu Sep 9 2010 Richard Jones - 1:1.5.10-1 +- New upstream version 1.5.10. + +* Wed Sep 8 2010 Richard Jones - 1:1.5.9-2 +- Disable tests, still failing because of RHBZ#630777. + +* Wed Sep 8 2010 Richard Jones - 1:1.5.9-1 +- New upstream version 1.5.9. + +* Mon Sep 6 2010 Richard Jones - 1:1.5.8-2 +- Add patch to work around RHBZ#630583 and reenable tests. + +* Sat Sep 4 2010 Richard Jones - 1:1.5.8-1 +- New upstream version 1.5.8. +- Add BR po4a for translations of man pages. +- Add PHP bindings. +- Remove partially-translated Japanese webpages. + +* Wed Sep 1 2010 Richard Jones - 1:1.5.7-1 +- New upstream version 1.5.7. +- 'debug' command is enabled by default now. + +* Fri Aug 27 2010 Richard Jones - 1:1.5.6-1 +- New upstream version 1.5.6. + +* Fri Aug 27 2010 Richard Jones - 1:1.5.5-2 +- Use bug-fixed febootstrap 2.9. + +* Thu Aug 26 2010 Richard Jones - 1:1.5.5-1 +- New upstream version 1.5.5. + +* Tue Aug 24 2010 Richard Jones - 1:1.5.4-2 +- Disable tests again, because the Rawhide kernel still won't boot. + +* Tue Aug 24 2010 Richard Jones - 1:1.5.4-1 +- New upstream development version 1.5.4. +- Now requires febootstrap >= 2.8 and qemu >= 0.12. +- Re-enable tests because RHBZ#624854 is supposed to be fixed. +- Upstream Source URL has changed. + +* Wed Aug 18 2010 Richard Jones - 1:1.5.3-2 +- Disable tests because of RHBZ#624854. + +* Tue Aug 17 2010 Richard Jones - 1:1.5.3-1 +- New upstream development version 1.5.3. + +* Wed Aug 11 2010 Richard Jones - 1:1.5.2-6 +- Bump and rebuild. + +* Thu Aug 05 2010 Richard Jones - 1:1.5.2-5 +- Bump and rebuild. + +* Fri Jul 23 2010 David Malcolm - 1:1.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Fri Jul 23 2010 David Malcolm - 1:1.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Thu Jul 22 2010 Richard W.M. Jones - 1:1.5.2-2 +- New upstream development version 1.5.2. +- +BuildRequires: cryptsetup-luks. + +* Wed Jul 21 2010 Richard W.M. Jones - 1:1.5.1-1 +- New upstream development version 1.5.1. + +* Tue Jul 20 2010 Richard W.M. Jones - 1:1.5.0-7 +- Requires binutils (RHBZ#616437). + +* Mon Jul 19 2010 Richard W.M. Jones - 1:1.5.0-6 +- Fix libguestfs-find-requires.sh for new location of hostfiles (RHBZ#615946). + +* Thu Jul 8 2010 Richard W.M. Jones - 1:1.5.0-5 +- Include RELEASE-NOTES in devel package. + +* Thu Jul 8 2010 Richard W.M. Jones - 1:1.5.0-4 +- New development branch 1.5.0. +- Remove two upstream patches. +- Work around permanently broken test-getlogin_r Gnulib test. + +* Mon Jun 28 2010 Richard W.M. Jones - 1:1.3.21-4 +- Explicitly depend on e2fsprogs. +- Add patch to add e2fsprogs to the appliance. +- Add patch to fix GFS kernel module problem. + +* Fri Jun 25 2010 Mamoru Tasaka - 1:1.3.21-2 +- Rebuild + +* Wed Jun 16 2010 Richard W.M. Jones - 1:1.3.21-1 +- New upstream version 1.3.21. + +* Tue Jun 8 2010 Richard W.M. Jones - 1:1.3.20-1 +- New upstream version 1.3.20. +- Since upstream commit a043b6854a0c4 we don't need to run make install + twice. + +* Fri Jun 4 2010 Richard W.M. Jones - 1:1.3.19-1 +- New upstream version 1.3.19. + +* Wed Jun 2 2010 Richard W.M. Jones - 1:1.3.18-1 +- New upstream version 1.3.18. + +* Thu May 27 2010 Richard W.M. Jones - 1:1.3.17-1 +- New upstream version 1.3.17. +- Change repo name to 'fedora-14'. + +* Wed May 26 2010 Richard W.M. Jones - 1:1.3.16-6 +- Co-own bash_completion.d directory. + +* Tue May 25 2010 Richard W.M. Jones - 1:1.3.16-4 +- New upstream version 1.3.16. +- Add guestfish bash tab completion script. + +* Mon May 24 2010 Richard W.M. Jones - 1:1.3.14-1 +- New upstream version 1.3.14. + +* Sun May 16 2010 Richard W.M. Jones - 1:1.3.13-1 +- New upstream version 1.3.13. +- Add BUGS to documentation. +- Force update of hivex dependency to 1.2.2 since it contains + important registry import fixes. +- Remove patch1, now upstream. + +* Fri May 14 2010 Richard W.M. Jones - 1:1.3.12-3 +- Backport supermin build fix from upstream. +- Further changes required for new layout of supermin appliance. + +* Fri May 14 2010 Richard W.M. Jones - 1:1.3.12-1 +- New upstream version 1.3.12. +- febootstrap >= 2.7 is required at compile time and at runtime (at runtime + because of the new febootstrap-supermin-helper). +- Bugs fixed: 591155 591250 576879 591142 588651 507810 521674 559963 516096. + +* Sat May 8 2010 Richard W.M. Jones - 1:1.3.11-1 +- New upstream version 1.3.11. + +* Fri May 7 2010 Richard W.M. Jones - 1:1.3.10-2 +- New upstream version 1.3.10. + +* Thu May 06 2010 Richard W.M. Jones - 1:1.3.9-2 +- Bump and rebuild against updated libconfig + +* Fri Apr 30 2010 Richard W.M. Jones - 1:1.3.9-1 +- New upstream version 1.3.9. + +* Thu Apr 29 2010 Marcela Maslanova - 1:1.3.8-2 +- Mass rebuild with perl-5.12.0 + +* Tue Apr 27 2010 Richard W.M. Jones - 1:1.3.8-1 +- New upstream version 1.3.8. + +* Fri Apr 23 2010 Richard W.M. Jones - 1:1.3.7-1 +- New upstream version 1.3.7. +- NOTE: fixes a segfault in guestfish 1.3.6 when using the -a option. + +* Thu Apr 22 2010 Richard W.M. Jones - 1:1.3.6-1 +- New upstream version 1.3.6. + +* Mon Apr 19 2010 Richard W.M. Jones - 1:1.3.5-1 +- New upstream version 1.3.5. + +* Sat Apr 17 2010 Richard W.M. Jones - 1:1.3.4-1 +- New upstream version 1.3.4. + +* Sun Apr 11 2010 Richard W.M. Jones - 1:1.3.3-1 +- New upstream version 1.3.3. +- New virt-resize option --LV-expand. +- New API: lvresize-free. +- Fixes RHBZ#581501. + +* Sun Apr 11 2010 Richard W.M. Jones - 1:1.3.2-3 +- Disable checksum-device test. + +* Sat Apr 10 2010 Richard W.M. Jones - 1:1.3.2-2 +- Bump and rebuild. + +* Sat Apr 10 2010 Richard W.M. Jones - 1:1.3.2-1 +- New upstream version 1.3.2. +- New APIs: checksum-device, part-del, part-get-bootable, part-get-mbr-id, + part-set-mbr-id, vgscan, ntfsresize, txz-in, txz-out. +- Enhanced/fixed virt-resize tool. +- Enhanced virt-list-partitions tool. +- Fixes: 580016, 580650, 579155, 580556. + +* Sat Apr 10 2010 Richard W.M. Jones - 1:1.3.1-4 +- Bump and rebuild. + +* Thu Apr 8 2010 Richard W.M. Jones - 1:1.3.1-3 +- Runtime requires should only be on libguestfs-tools subpackage. + +* Thu Apr 8 2010 Richard W.M. Jones - 1:1.3.1-2 +- Missing BR on qemu-img package. + +* Thu Apr 8 2010 Richard W.M. Jones - 1:1.3.1-1 +- New upstream version 1.3.1. +- For explanation of apparently large version jump, see: + https://www.redhat.com/archives/libguestfs/2010-April/msg00057.html +- New tool: virt-make-fs. +- New API: guestfs_zero_device. +- Fixes RHBZ#580246 (tar-in command hangs if uploading more than + available space) +- Fixes RHBZ#579664 (guestfish doesn't report error when there is not + enough space for image allocation) +- +BR perl-String-ShellQuote (for virt-make-fs). + +* Tue Mar 30 2010 Richard W.M. Jones - 1:1.0.89-1 +- New upstream version 1.0.89. +- Improved version of virt-win-reg. +- Many smaller bugfixes. +- Requires hivex >= 1.2.1. +- Remove TERM=dumb patch which is now upstream. + +* Tue Mar 30 2010 Richard W.M. Jones - 1:1.0.88-7 +- Backport of TERM=dumb patch from upstream. +- Workaround failure caused by RHBZ#575734. +- Workaround unknown failure of test_swapon_label_0. + +* Tue Mar 30 2010 Richard W.M. Jones - 1:1.0.88-5 +- Attempted workaround for RHBZ#563103, so we can reenable tests. + +* Fri Mar 26 2010 Richard W.M. Jones - 1:1.0.88-2 +- Remember to check in the new sources. + +* Fri Mar 26 2010 Richard W.M. Jones - 1:1.0.88-1 +- New upstream version 1.0.88. +- Mainly small bugfixes. +- Update Spanish translation of libguestfs (RHBZ#576876). +- Use ext4 dev tools on RHEL 5 (RHBZ#576688). +- Add support for minix filesystem (RHBZ#576689). + +* Fri Mar 26 2010 Richard W.M. Jones - 1:1.0.87-2 +- Add vim-minimal to BR, it is now required by the appliance. + +* Tue Mar 23 2010 Richard W.M. Jones - 1:1.0.87-1 +- New upstream version 1.0.87. +- New tools: virt-resize and virt-list-partitions. +- New APIs: guestfs_copy_size; APIs for querying the relationship between + LVM objects. +- Add vim to the virt-rescue appliance. + +* Fri Mar 12 2010 Richard W.M. Jones - 1:1.0.86-1 +- New upstream version 1.0.86. +- libguestfs-supermin-helper rewritten in C (from shell), reduces + appliance boot time by 2-3 seconds. +- Fix parsing of integers in guestfish on 32 bit platforms (RHBZ#569757 + and RHBZ#567567). +- Enhance virt-inspector output for Windows guests. +- Add product_name field to virt-inspector output for all guests. +- Weaken dependencies on libntfs-3g.so, don't include SONAME in dep. +- Remove false dependency on libply (plymouth libraries). +- Spanish translation (RHBZ#570181). +- Fix bash regexp quoting bug. + +* Fri Mar 12 2010 Richard W.M. Jones - 1:1.0.85-4 +- Bump and rebuild. + +* Thu Mar 11 2010 Richard W.M. Jones - 1:1.0.85-3 +- Bump and rebuild. + +* Sat Mar 06 2010 Richard W.M. Jones - 1:1.0.85-2 +- Bump and rebuild. + +* Mon Mar 1 2010 Richard W.M. Jones - 1:1.0.85-1 +- New upstream version 1.0.85. +- Remove hivex, now a separate upstream project and package. +- Remove supermin quoting patch, now upstream. + +* Mon Mar 1 2010 Richard W.M. Jones - 1:1.0.84-6 +- Fix quoting in supermin-split script (RHBZ#566511). +- Don't include bogus './builddir' entries in supermin hostfiles + (RHBZ#566512). + +* Mon Feb 22 2010 Richard W.M. Jones - 1:1.0.84-4 +- Don't include generator.ml in rpm. It's 400K and almost no one will need it. +- Add comments to spec file about how repo building works. +- Whitespace changes in the spec file. + +* Mon Feb 22 2010 Richard W.M. Jones - 1:1.0.84-3 +- Bump and rebuild. + +* Tue Feb 16 2010 Richard W.M. Jones - 1:1.0.84-2 +- Bump and rebuild. + +* Fri Feb 12 2010 Richard W.M. Jones - 1:1.0.84-1 +- New upstream version 1.0.84. + +* Fri Feb 12 2010 Richard W.M. Jones - 1:1.0.83-8 +- Bump and rebuild. + +* Thu Feb 11 2010 Richard W.M. Jones - 1.0.83-7 +- Disable tests. These fail in Koji (on RHEL 5 kernel) because of a + bug in preadv/pwritev emulation in glibc (RHBZ#563103). + +* Tue Feb 9 2010 Matthew Booth - 1.0.83-6 +- Change buildnonet to buildnet +- Allow buildnet, mirror, updates, virtio and runtests to be configured by user + macros. + +* Mon Feb 8 2010 Richard W.M. Jones - 1.0.83-5 +- libguestfs-tools should require perl-XML-Writer (RHBZ#562858). + +* Mon Feb 8 2010 Richard W.M. Jones - 1.0.83-4 +- Use virtio for block device access (RHBZ#509383 is fixed). + +* Fri Feb 5 2010 Richard W.M. Jones - 1.0.83-3 +- Rebuild: possible timing-related build problem in Koji. + +* Fri Feb 5 2010 Richard W.M. Jones - 1.0.83-2 +- New upstream release 1.0.83. +- This release fixes: + Add Marathi translations (RHBZ#561671). + Polish translations (RHBZ#502533). + Add Gujarti translations (Sweta Kothari) (RHBZ#560918). + Update Oriya translations (thanks Manoj Kumar Giri) (RHBZ#559498). + Set locale in C programs so l10n works (RHBZ#559962). + Add Tamil translation (RHBZ#559877) (thanks to I.Felix) + Update Punjabi translation (RHBZ#559480) (thanks Jaswinder Singh) +- There are significant fixes to hive file handling. +- Add hivexsh and manual page. +- Remove two patches, now upstream. + +* Sun Jan 31 2010 Richard W.M. Jones - 1:1.0.82-7 +- Bump and rebuild. + +* Fri Jan 29 2010 Richard W.M. Jones - 1.0.82-6 +- Backport a better fix for RHBZ557655 test from upstream. +- Backport fix for unreadable yum.log from upstream. + +* Thu Jan 28 2010 Richard W.M. Jones - 1.0.82-3 +- Backport RHBZ557655 test fix from upstream. + +* Thu Jan 28 2010 Richard W.M. Jones - 1.0.82-1 +- New upstream version 1.0.82. This includes the two patches + we were carrying, so those are now removed. +- This release fixes: + RHBZ#559498 (Oriya translation). + RHBZ#559480 (Punjabi translation). + RHBZ#558593 (Should prevent corruption by multilib). + RHBZ#559237 (Telugu translation). + RHBZ#557655 (Use xstrtol/xstrtoll to parse integers in guestfish). + RHBZ#557195 (Missing crc kernel modules for recent Linux). +- In addition this contains numerous fixes to the hivex library + for parsing Windows Registry files, making hivex* and virt-win-reg + more robust. +- New API call 'filesize'. + +* Thu Jan 28 2010 Richard W.M. Jones - 1.0.81-8 +- Backport special handling of libgcc_s.so. +- Backport unreadable files patch from RHEL 6 / upstream. + +* Fri Jan 22 2010 Richard W.M. Jones - 1.0.81-5 +- Require febootstrap >= 2.6 (RHBZ#557262). + +* Thu Jan 21 2010 Richard W.M. Jones - 1.0.81-4 +- Rebuild for unannounced soname bump (libntfs-3g.so). + +* Fri Jan 15 2010 Richard W.M. Jones - 1.0.81-3 +- Rebuild for unannounced soname bump (libplybootsplash.so). + +* Thu Jan 14 2010 Richard W.M. Jones - 1.0.81-2 +- Rebuild for broken dependency (iptables soname bump). + +* Wed Jan 13 2010 Richard W.M. Jones - 1.0.81-1 +- New upstream version 1.0.81. +- Remove two upstream patches. +- virt-inspector: Make RPM application data more specific (RHBZ#552718). + +* Tue Jan 12 2010 Richard W.M. Jones - 1.0.80-14 +- Reenable tests because RHBZ#553689 is fixed. + +* Tue Jan 12 2010 Richard W.M. Jones - 1.0.80-13 +- Rebuild because of libparted soname bump (1.9 -> 2.1). + +* Fri Jan 8 2010 Richard W.M. Jones - 1.0.80-12 +- qemu in Rawhide is totally broken (RHBZ#553689). Disable tests. + +* Thu Jan 7 2010 Richard W.M. Jones - 1.0.80-11 +- Remove gfs-utils (deprecated and removed from Fedora 13 by the + upstream Cluster Suite developers). +- Include patch to fix regression in qemu -serial stdio option. + +* Tue Dec 29 2009 Richard W.M. Jones - 1.0.80-10 +- Remove some debugging statements which were left in the requires + script by accident. + +* Mon Dec 21 2009 Richard W.M. Jones - 1.0.80-9 +- Generate additional requires for supermin (RHBZ#547496). + +* Fri Dec 18 2009 Richard W.M. Jones - 1.0.80-3 +- Work around udevsettle command problem (RHBZ#548121). +- Enable tests. + +* Wed Dec 16 2009 Richard W.M. Jones - 1.0.80-2 +- Disable tests because of RHBZ#548121. + +* Wed Dec 16 2009 Richard W.M. Jones - 1.0.80-1 +- New upstream release 1.0.80. +- New Polish translations (RHBZ#502533). +- Give a meaningful error if no usable kernels are found (RHBZ#539746). +- New tool: virt-list-filesystems + +* Fri Dec 4 2009 Stepan Kasal - 1:1.0.79-3 +- rebuild against perl 5.10.1 + +* Wed Nov 18 2009 Richard W.M. Jones - 1.0.79-2 +- New upstream release 1.0.79. +- Adds FUSE test script and multiple fixes for FUSE (RHBZ#538069). +- Fix virt-df in Xen (RHBZ#538041). +- Improve speed of supermin appliance. +- Disable FUSE-related tests because Koji doesn't currently allow them. + fuse: device not found, try 'modprobe fuse' first + +* Tue Nov 10 2009 Richard W.M. Jones - 1.0.78-2 +- New upstream release 1.0.78. +- Many more filesystem types supported by this release - add them + as dependencies. + +* Tue Nov 3 2009 Richard W.M. Jones - 1.0.77-1 +- New upstream release 1.0.77. +- Support for mounting guest in host using FUSE (guestmount command). +- hivex*(1) man pages should be in main package, not -devel, since + they are user commands. +- libguestfs-tools: Fix "self-obsoletion" issue raised by rpmlint. +- perl: Remove bogus script Sys/bindtests.pl. + +* Thu Oct 29 2009 Richard W.M. Jones - 1.0.75-2 +- New upstream release 1.0.75. +- New library: libhivex. +- New tools: virt-win-reg, hivexml, hivexget. +- Don't require chntpw. +- Add BR libxml2-devel, accidentally omitted before. + +* Tue Oct 20 2009 Richard W.M. Jones - 1.0.74-1 +- New upstream release 1.0.74. +- New API call: guestfs_find0. +- New tools: virt-ls, virt-tar. + +* Wed Oct 14 2009 Richard W.M. Jones - 1.0.73-1 +- New upstream release 1.0.73. +- OCaml library now depends on xml-light. +- Deal with installed documentation. + +* Tue Sep 29 2009 Richard W.M. Jones - 1.0.72-2 +- Force rebuild. + +* Wed Sep 23 2009 Richard W.M. Jones - 1.0.72-1 +- New upstream release 1.0.72. +- New tools: virt-edit, virt-rescue. +- Combine virt-cat, virt-df, virt-edit, virt-inspector and virt-rescue + into a single package called libguestfs-tools. + +* Tue Sep 22 2009 Richard W.M. Jones - 1.0.71-2 +- New upstream release 1.0.71. + +* Fri Sep 18 2009 Richard W.M. Jones - 1.0.70-2 +- Perl bindings require perl-XML-XPath (fixed RHBZ#523547). + +* Tue Sep 15 2009 Richard W.M. Jones - 1.0.70-1 +- New upstream release 1.0.70. +- Fixes build problem related to old version of GNU gettext. + +* Tue Sep 15 2009 Richard W.M. Jones - 1.0.69-1 +- New upstream release 1.0.69. +- Reenable the tests (because RHBZ#516543 is supposed to be fixed). +- New main loop code should fix RHBZ#501888, RHBZ#504418. +- Add waitpid along guestfs_close path (fixes RHBZ#518747). + +* Wed Aug 19 2009 Richard W.M. Jones - 1.0.68-2 +- New upstream release 1.0.68. +- BR genisoimage. + +* Thu Aug 13 2009 Richard W.M. Jones - 1.0.67-2 +- New upstream release 1.0.67. + +* Fri Aug 7 2009 Richard W.M. Jones - 1.0.66-5 +- Set network interface to ne2k_pci (workaround for RHBZ#516022). +- Rerun autoconf because patch touches configure script. + +* Thu Aug 6 2009 Richard W.M. Jones - 1.0.66-1 +- New upstream release 1.0.66. + +* Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 +- New upstream release 1.0.65. +- Add Obsoletes for virt-df2 (RHBZ#514309). +- Disable tests because of ongoing TCG problems with newest qemu in Rawhide. + +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-3 +- RHBZ#513249 bug in qemu is now fixed, so try to rebuild and run tests. +- However RHBZ#503236 still prevents us from testing on i386. + +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 +- New upstream release 1.0.64. +- New tool 'libguestfs-test-tool'. + +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 +- New upstream release 1.0.61. +- New tool / subpackage 'virt-cat'. +- New BR perl-libintl. + +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 +- Fix runtime Requires so they use epoch correctly. + +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 +- New upstream release 1.0.60. + +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 +- New upstream release 1.0.58. + +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 +- New upstream release 1.0.57. +- New tool virt-df (obsoletes existing package with this name). +- RHBZ#507066 may be fixed, so reenable tests. + +* Tue Jul 7 2009 Richard W.M. Jones - 1.0.56-2 +- New upstream release 1.0.56. +- Don't rerun generator. + +* Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 +- New upstream release 1.0.55. +- New manual page libguestfs(3). + +* Mon Jun 29 2009 Richard W.M. Jones - 1.0.54-2 +- New upstream release 1.0.54. +- +BR perl-XML-Writer. + +* Wed Jun 24 2009 Richard W.M. Jones - 1.0.53-1 +- New upstream release 1.0.53. +- Disable all tests (because of RHBZ#507066). + +* Wed Jun 24 2009 Richard W.M. Jones - 1.0.52-1 +- New upstream release 1.0.52. + +* Mon Jun 22 2009 Richard W.M. Jones - 1.0.51-1 +- New upstream release 1.0.51. +- Removed patches which are now upstream. + +* Sat Jun 20 2009 Richard W.M. Jones - 1.0.49-5 +- Remove workaround for RHBZ#507007, since bug is now fixed. +- Pull in upstream patch to fix pclose checking + (testing as possible fix for RHBZ#507066). +- Pull in upstream patch to check waitpid return values + (testing as possible fix for RHBZ#507066). + +* Fri Jun 19 2009 Richard W.M. Jones - 1.0.49-2 +- New upstream release 1.0.49. +- Add workaround for RHBZ#507007. + +* Tue Jun 16 2009 Richard W.M. Jones - 1.0.48-2 +- Accidentally omitted the supermin image from previous version. + +* Tue Jun 16 2009 Richard W.M. Jones - 1.0.48-1 +- New upstream release 1.0.48. +- Should fix all the brokenness from 1.0.47. +- Requires febootstrap >= 2.3. + +* Mon Jun 15 2009 Richard W.M. Jones - 1.0.47-2 +- New upstream release 1.0.47. +- Enable experimental supermin appliance build. +- Fix path to appliance. + +* Fri Jun 12 2009 Richard W.M. Jones - 1.0.45-2 +- New upstream release 1.0.45. + +* Wed Jun 10 2009 Richard W.M. Jones - 1.0.44-2 +- Disable ppc/ppc64 tests again because of RHBZ#505109. + +* Wed Jun 10 2009 Richard W.M. Jones - 1.0.44-1 +- New upstream version 1.0.44. +- Try enabling tests on ppc & ppc64 since it looks like the bug(s?) + in qemu which might have caused them to fail have been fixed. + +* Tue Jun 9 2009 Richard W.M. Jones - 1.0.43-1 +- New upstream version 1.0.43. +- New upstream URL. +- Requires chntpw program. + +* Sat Jun 6 2009 Richard W.M. Jones - 1.0.42-1 +- New upstream version 1.0.42. + +* Thu Jun 4 2009 Richard W.M. Jones - 1.0.41-1 +- New upstream version 1.0.41. +- Fixes a number of regressions in RHBZ#503169. + +* Thu Jun 4 2009 Richard W.M. Jones - 1.0.40-1 +- New upstream version 1.0.40. + +* Thu Jun 4 2009 Richard W.M. Jones - 1.0.39-1 +- New upstream version 1.0.39. +- Fixes: + . libguestfs /dev is too sparse for kernel installation/upgrade (RHBZ#503169) + . OCaml bindings build failure (RHBZ#502309) + +* Tue Jun 2 2009 Richard W.M. Jones - 1.0.38-2 +- Disable tests on ix86 because of RHBZ#503236. + +* Tue Jun 2 2009 Richard W.M. Jones - 1.0.38-1 +- New upstream version 1.0.38. + +* Fri May 29 2009 Richard W.M. Jones - 1.0.37-1 +- New upstream version 1.0.37. +- Fixes: + . "mkdir-p" should not throw errors on preexisting directories (RHBZ#503133) + . cramfs and squashfs modules should be available in libguestfs appliances + (RHBZ#503135) + +* Thu May 28 2009 Richard W.M. Jones - 1.0.36-2 +- New upstream version 1.0.36. +- Rerun the generator in prep section. + +* Thu May 28 2009 Richard W.M. Jones - 1.0.35-1 +- New upstream version 1.0.35. +- Fixes multiple bugs in bindings parameters (RHBZ#501892). + +* Wed May 27 2009 Richard W.M. Jones - 1.0.34-1 +- New upstream version 1.0.34. + +* Wed May 27 2009 Richard W.M. Jones - 1.0.33-1 +- New upstream version 1.0.33. +- --with-java-home option is no longer required. +- Upstream contains potential fixes for: + 501878 built-in commands like 'alloc' and 'help' don't autocomplete + 501883 javadoc messed up in libguestfs java documentation + 501885 Doesn't detect missing Java, --with-java-home=no should not be needed + 502533 Polish translation of libguestfs + n/a Allow more ext filesystem kmods (Charles Duffy) + +* Tue May 26 2009 Richard W.M. Jones - 1.0.32-2 +- New upstream version 1.0.32. +- Use %%find_lang macro. + +* Sat May 23 2009 Richard W.M. Jones - 1.0.31-1 +- Rebuild for OCaml 3.11.1. +- New upstream version 1.0.31. + +* Thu May 21 2009 Richard Jones - 1.0.30-1 +- New upstream version 1.0.30. Now includes test-bootbootboot.sh script. + +* Thu May 21 2009 Richard Jones - 1.0.29-3 +- New upstream version 1.0.29 (fixes RHBZ#502007 RHBZ#502018). +- This should allow us to enable tests for i386 and x86-64. +- Added test-bootbootboot.sh script which was missed from 1.0.29 tarball. +- Pass kernel noapic flag to workaround RHBZ#502058. + +* Thu May 21 2009 Richard Jones - 1.0.28-1 +- New upstream version 1.0.28. Nothing has visibly changed, but + the source has been gettextized and we want to check that doesn't + break anything. + +* Thu May 21 2009 Richard Jones - 1.0.27-3 +- Change requirement from qemu -> qemu-kvm (RHBZ#501761). + +* Tue May 19 2009 Richard Jones - 1.0.27-2 +- New upstream version 1.0.27. + +* Mon May 18 2009 Richard Jones - 1.0.26-6 +- Experimentally try to reenable ppc and ppc64 builds. +- Note BZ numbers which are causing tests to fail. + +* Mon May 18 2009 Richard Jones - 1.0.26-1 +- New upstream version 1.0.26. + +* Tue May 12 2009 Richard Jones - 1.0.25-4 +- New upstream version 1.0.25. +- Enable debugging when running the tests. +- Disable tests - don't work correctly in Koji. + +* Tue May 12 2009 Richard Jones - 1.0.24-1 +- New upstream version 1.0.24. +- BRs glibc-static for the new command tests. +- Enable tests. + +* Mon May 11 2009 Richard Jones - 1.0.23-2 +- New upstream version 1.0.23. +- Don't try to use updates during build. + +* Fri May 8 2009 Richard Jones - 1.0.21-3 +- New upstream version 1.0.21. + +* Thu May 7 2009 Richard Jones - 1.0.20-2 +- New upstream version 1.0.20. + +* Thu May 7 2009 Richard Jones - 1.0.19-1 +- New upstream version 1.0.19. + +* Tue Apr 28 2009 Richard Jones - 1.0.15-1 +- New upstream version 1.0.15. + +* Fri Apr 24 2009 Richard Jones - 1.0.12-1 +- New upstream version 1.0.12. + +* Wed Apr 22 2009 Richard Jones - 1.0.6-1 +- New upstream version 1.0.6. + +* Mon Apr 20 2009 Richard Jones - 1.0.2-1 +- New upstream version 1.0.2. + +* Thu Apr 16 2009 Richard Jones - 0.9.9-12 +- Multiple fixes to get it to scratch build in Koji. + +* Sat Apr 4 2009 Richard Jones - 0.9.9-1 +- Initial build.