Hello community,

here is the log from the commit of package libguestfs for openSUSE:Factory 
checked in at 2015-09-24 06:15:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libguestfs (Old)
 and      /work/SRC/openSUSE:Factory/.libguestfs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libguestfs"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes    2015-09-09 
20:21:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes       
2015-09-24 06:16:02.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Sep 14 11:27:19 UTC 2015 - [email protected]
+
+- Create the .cache folder if it doesn't exist already.
+  bsc#939097.
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ 0000-hotfix.patch ++++++
--- /var/tmp/diff_new_pack.Qn80bE/_old  2015-09-24 06:16:03.000000000 +0200
+++ /var/tmp/diff_new_pack.Qn80bE/_new  2015-09-24 06:16:03.000000000 +0200
@@ -154,3 +154,46 @@
    | _, _ ->
      warning ~prog (f_"password: using insecure md5 password encryption for
  guest of type %s version %d.\nIf this is incorrect, use --password-crypto 
option and file a bug.") distro major;
+Index: libguestfs-1.26.10/builder/builder.ml
+===================================================================
+--- libguestfs-1.26.10.orig/builder/builder.ml
++++ libguestfs-1.26.10/builder/builder.ml
+@@ -159,7 +159,7 @@ let main () =
+         (* Try to make the directory.  If that fails, warn and continue
+          * without any cache.
+          *)
+-        try mkdir dir 0o755; Some dir
++        try mkdir_p dir 0o755; Some dir
+         with exn ->
+           warning ~prog (f_"cache %s: %s") dir (Printexc.to_string exn);
+           warning ~prog (f_"disabling the cache");
+Index: libguestfs-1.26.10/mllib/common_utils.ml
+===================================================================
+--- libguestfs-1.26.10.orig/mllib/common_utils.ml
++++ libguestfs-1.26.10/mllib/common_utils.ml
+@@ -508,3 +508,14 @@ let is_char_device file =
+ let is_directory path =
+   try Sys.is_directory path
+   with Sys_error _ -> false
++
++let rec mkdir_p path permissions =
++  try Unix.mkdir path permissions
++  with
++  | Unix.Unix_error (Unix.EEXIST, _, _) -> ()
++  | Unix.Unix_error (Unix.ENOENT, _, _) ->
++    (* A component in the path does not exist, so first try
++     * creating the parent directory, and then again the requested
++     * directory. *)
++    mkdir_p (Filename.dirname path) permissions;
++    Unix.mkdir path permissions
+Index: libguestfs-1.26.10/mllib/common_utils.mli
+===================================================================
+--- libguestfs-1.26.10.orig/mllib/common_utils.mli
++++ libguestfs-1.26.10/mllib/common_utils.mli
+@@ -117,3 +117,6 @@ val is_block_device : string -> bool
+ val is_char_device : string -> bool
+ val is_directory : string -> bool
+ (** These don't throw exceptions, unlike the [Sys] functions. *)
++
++val mkdir_p : string -> int -> unit
++(** Creates a directory, and its parents if missing. *)


Reply via email to