Hello community,

here is the log from the commit of package yast2-storage for openSUSE:13.1 
checked in at 2013-10-29 10:17:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.1/yast2-storage (Old)
 and      /work/SRC/openSUSE:13.1/.yast2-storage.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-storage"

Changes:
--------
--- /work/SRC/openSUSE:13.1/yast2-storage/yast2-storage.changes 2013-10-09 
08:51:23.000000000 +0200
+++ /work/SRC/openSUSE:13.1/.yast2-storage.new/yast2-storage.changes    
2013-10-29 10:17:44.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Oct 11 14:26:18 CEST 2013 - [email protected]
+
+- adapted to device-mapper device name changes (bnc#810840)
+- version 3.0.7
+
+-------------------------------------------------------------------

Old:
----
  yast2-storage-3.0.6.tar.bz2

New:
----
  yast2-storage-3.0.7.tar.bz2

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

Other differences:
------------------
++++++ yast2-storage.spec ++++++
--- /var/tmp/diff_new_pack.H4g4KN/_old  2013-10-29 10:17:44.000000000 +0100
+++ /var/tmp/diff_new_pack.H4g4KN/_new  2013-10-29 10:17:44.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-storage
-Version:        3.0.6
+Version:        3.0.7
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-storage-3.0.6.tar.bz2 -> yast2-storage-3.0.7.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/Makefile.am 
new/yast2-storage-3.0.7/Makefile.am
--- old/yast2-storage-3.0.6/Makefile.am 2013-10-08 14:10:26.000000000 +0200
+++ new/yast2-storage-3.0.7/Makefile.am 2013-10-25 13:54:50.000000000 +0200
@@ -150,10 +150,8 @@
        fi
        here=`pwd`; \
        cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \
-           if [ -f "$$i" ]; then \
-               newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
-               $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
-           fi \
+           newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
+           $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
        done
 
 package: check-up-to-date check-tagversion check-textdomain package-local
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/Makefile.am.common 
new/yast2-storage-3.0.7/Makefile.am.common
--- old/yast2-storage-3.0.6/Makefile.am.common  2013-10-08 14:10:26.000000000 
+0200
+++ new/yast2-storage-3.0.7/Makefile.am.common  2013-10-25 13:54:50.000000000 
+0200
@@ -1,5 +1,63 @@
 # Makefile.am.common                                   -*- Makefile -*-
 # Generated file, do not edit!
 
-# Empty do to drop ycp compilation. When all includes of this file will 
removed,
-# then we can remove also this file (otherwise build will fail)
+modulebin_DATA = $(patsubst %.ycp,%.ybc,$(module_DATA))
+modulebindir = $(moduledir)
+
+ybcfiles = $(filter %.ybc,$(modulebin_DATA))
+
+# suffix mapping: info '(make)Static Usage'
+# apply only to our modules, not external ones
+${ybcfiles}: %.ybc: %.ycp $(ycpchook)
+       Y2DIR=$(YCPC_Y2DIR) LD_LIBRARY_PATH=$(YCPC_LD_LIBRARY_PATH) ${YCPC} -c 
-M. -I. -q $(YCPCFLAGS) $<
+
+# files to clean
+CLEANFILES = ${ybcfiles}
+DISTCLEANFILES = .dep
+
+if HAS_YCP_MODULES
+# Needs to be outside "." because of cases
+# where ycpchook contains a symlink to "."
+# Otherwise "." keeps being newer than .dep and we loop.
+NEWDEP=${top_builddir}/.dep.new
+# generate dependencies
+# two steps not to lose the file if the command fails
+# hook: create the links before we look for files
+.dep: $(wildcard *.ycp) ${ycpchook}
+       ${YCPMAKEDEP} --prefix=${prefix} ${YCPCFLAGS} > ${NEWDEP}
+       cat ${NEWDEP} > .dep
+       rm ${NEWDEP}
+-include .dep
+endif
+
+dist-hook: check-syntax
+
+CHECK_SYNTAX = true
+check-syntax: $(client_DATA) $(module_DATA) $(ynclude_DATA) $(ydata_DATA) 
$(ycpchook) $(ybcfiles)
+       @if test "$(filter %.ycp, $(client_DATA) $(ydata_DATA))"; then \
+         if $(CHECK_SYNTAX); then \
+           TO_CHECK="$(filter %.ycp, $(client_DATA) $(ydata_DATA))"; \
+           echo "Checking syntax of $${TO_CHECK}"; \
+           if ! $(YCPC) -qE -M. -I. $(YCPCFLAGS) $${TO_CHECK}; then \
+             echo "Failed. Disable by 'make ... CHECK_SYNTAX=false' at your 
own risk"; \
+             exit 1; \
+           fi; \
+         else \
+           echo "Syntax check disabled"; \
+         fi; \
+       fi
+       @if test "$(filter %.rb, $^)"; then \
+         if $(CHECK_SYNTAX); then \
+           TO_CHECK="$(filter %.rb, $^)"; \
+           echo "Checking syntax of $${TO_CHECK}"; \
+           for f in $${TO_CHECK}; do \
+             if ! ruby -c $$f > /dev/null; then \
+               echo "Failed. Disable by 'make ... CHECK_SYNTAX=false' at your 
own risk"; \
+               exit 1; \
+             fi; \
+           done; \
+         else \
+           echo "Syntax check disabled"; \
+         fi; \
+       fi
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/Makefile.in 
new/yast2-storage-3.0.7/Makefile.in
--- old/yast2-storage-3.0.6/Makefile.in 2013-10-08 14:10:32.000000000 +0200
+++ new/yast2-storage-3.0.7/Makefile.in 2013-10-25 13:54:57.000000000 +0200
@@ -264,6 +264,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
@@ -1058,10 +1061,8 @@
        fi
        here=`pwd`; \
        cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \
-           if [ -f "$$i" ]; then \
-               newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
-               $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
-           fi \
+           newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
+           $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
        done
 
 package: check-up-to-date check-tagversion check-textdomain package-local
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/VERSION 
new/yast2-storage-3.0.7/VERSION
--- old/yast2-storage-3.0.6/VERSION     2013-10-08 14:08:37.000000000 +0200
+++ new/yast2-storage-3.0.7/VERSION     2013-10-23 14:16:37.000000000 +0200
@@ -1 +1 @@
-3.0.6
+3.0.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/bindings/Makefile.in 
new/yast2-storage-3.0.7/bindings/Makefile.in
--- old/yast2-storage-3.0.6/bindings/Makefile.in        2013-10-08 
14:10:32.000000000 +0200
+++ new/yast2-storage-3.0.7/bindings/Makefile.in        2013-10-25 
13:54:57.000000000 +0200
@@ -206,6 +206,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/bindings/ruby/Makefile.in 
new/yast2-storage-3.0.7/bindings/ruby/Makefile.in
--- old/yast2-storage-3.0.6/bindings/ruby/Makefile.in   2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/bindings/ruby/Makefile.in   2013-10-25 
13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/bindings/src/Makefile.in 
new/yast2-storage-3.0.7/bindings/src/Makefile.in
--- old/yast2-storage-3.0.6/bindings/src/Makefile.in    2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/bindings/src/Makefile.in    2013-10-25 
13:54:57.000000000 +0200
@@ -247,6 +247,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/configure 
new/yast2-storage-3.0.7/configure
--- old/yast2-storage-3.0.6/configure   2013-10-08 14:10:32.000000000 +0200
+++ new/yast2-storage-3.0.7/configure   2013-10-25 13:54:56.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-storage 3.0.6.
+# Generated by GNU Autoconf 2.69 for yast2-storage 3.0.7.
 #
 # Report bugs to <http://bugs.opensuse.org/>.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-storage'
 PACKAGE_TARNAME='yast2-storage'
-PACKAGE_VERSION='3.0.6'
-PACKAGE_STRING='yast2-storage 3.0.6'
+PACKAGE_VERSION='3.0.7'
+PACKAGE_STRING='yast2-storage 3.0.7'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -694,6 +694,9 @@
 YDOXYGEN
 HAS_YCP_MODULES_FALSE
 HAS_YCP_MODULES_TRUE
+YCPC
+YCPMAKEDEP
+YCPDOC
 STYLESHEET_YCPDOC
 STYLESHEET_YDOC
 STYLESHEET_CSS
@@ -1377,7 +1380,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures yast2-storage 3.0.6 to adapt to many kinds of systems.
+\`configure' configures yast2-storage 3.0.7 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1448,7 +1451,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of yast2-storage 3.0.6:";;
+     short | recursive ) echo "Configuration of yast2-storage 3.0.7:";;
    esac
   cat <<\_ACEOF
 
@@ -1566,7 +1569,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yast2-storage configure 3.0.6
+yast2-storage configure 3.0.7
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2019,7 +2022,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-storage $as_me 3.0.6, which was
+It was created by yast2-storage $as_me 3.0.7, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2958,7 +2961,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-storage'
- VERSION='3.0.6'
+ VERSION='3.0.7'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3081,7 +3084,7 @@
 
 
 
-VERSION="3.0.6"
+VERSION="3.0.7"
 RPMNAME="yast2-storage"
 MAINTAINER="Arvin Schnell <[email protected]>"
 
@@ -3322,6 +3325,141 @@
 
 
 
+# Extract the first word of "ycpdoc", so it can be a program name with args.
+set dummy ycpdoc; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_YCPDOC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $YCPDOC in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_YCPDOC="$YCPDOC" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_dummy="$PATH:$devtools_ybindir"
+for as_dir in $as_dummy
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_YCPDOC="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" 
>&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  test -z "$ac_cv_path_YCPDOC" && ac_cv_path_YCPDOC="false"
+  ;;
+esac
+fi
+YCPDOC=$ac_cv_path_YCPDOC
+if test -n "$YCPDOC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YCPDOC" >&5
+$as_echo "$YCPDOC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+if test "$YCPDOC" = "false"; then
+    as_fn_error $? "ycpdoc is not installed" "$LINENO" 5
+fi
+# Extract the first word of "ycpmakedep", so it can be a program name with 
args.
+set dummy ycpmakedep; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_YCPMAKEDEP+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $YCPMAKEDEP in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_YCPMAKEDEP="$YCPMAKEDEP" # Let the user override the test with a 
path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_dummy="$PATH:$devtools_ybindir"
+for as_dir in $as_dummy
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_YCPMAKEDEP="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" 
>&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  test -z "$ac_cv_path_YCPMAKEDEP" && ac_cv_path_YCPMAKEDEP="false"
+  ;;
+esac
+fi
+YCPMAKEDEP=$ac_cv_path_YCPMAKEDEP
+if test -n "$YCPMAKEDEP"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YCPMAKEDEP" >&5
+$as_echo "$YCPMAKEDEP" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+if test "$YCPMAKEDEP" = "false"; then
+    as_fn_error $? "ycpmakedep is not installed" "$LINENO" 5
+fi
+# Extract the first word of "ycpc", so it can be a program name with args.
+set dummy ycpc; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_YCPC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $YCPC in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_YCPC="$YCPC" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_dummy="$PATH:$bindir"
+for as_dir in $as_dummy
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_YCPC="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" 
>&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  test -z "$ac_cv_path_YCPC" && ac_cv_path_YCPC="false"
+  ;;
+esac
+fi
+YCPC=$ac_cv_path_YCPC
+if test -n "$YCPC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YCPC" >&5
+$as_echo "$YCPC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+if test "$YCPC" = "false"; then
+    as_fn_error $? "ycpc is not installed" "$LINENO" 5
+fi
 as_ac_File=`$as_echo 
"ac_cv_file_$devtools_yast2dir/data/testsuite/Makefile.testsuite" | $as_tr_sh`
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 
$devtools_yast2dir/data/testsuite/Makefile.testsuite" >&5
 $as_echo_n "checking for 
$devtools_yast2dir/data/testsuite/Makefile.testsuite... " >&6; }
@@ -16626,7 +16764,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by yast2-storage $as_me 3.0.6, which was
+This file was extended by yast2-storage $as_me 3.0.7, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -16692,7 +16830,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-yast2-storage config.status 3.0.6
+yast2-storage config.status 3.0.7
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/configure.ac 
new/yast2-storage-3.0.7/configure.ac
--- old/yast2-storage-3.0.6/configure.ac        2013-10-08 14:10:26.000000000 
+0200
+++ new/yast2-storage-3.0.7/configure.ac        2013-10-25 13:54:50.000000000 
+0200
@@ -1,9 +1,9 @@
 dnl configure.ac for yast2-storage
 dnl
-dnl -- This file is generated by y2autoconf 3.1.4 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 3.0.5 - DO NOT EDIT! --
 dnl    (edit configure.ac.in or configure.in.in instead)
 
-AC_INIT(yast2-storage, 3.0.6, http://bugs.opensuse.org/, yast2-storage)
+AC_INIT(yast2-storage, 3.0.7, http://bugs.opensuse.org/, yast2-storage)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,7 +18,7 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 variables
-VERSION="3.0.6"
+VERSION="3.0.7"
 RPMNAME="yast2-storage"
 MAINTAINER="Arvin Schnell <[email protected]>"
 
@@ -136,6 +136,18 @@
 AC_SUBST(STYLESHEET_YCPDOC)
 
 
+AC_PATH_PROG(YCPDOC, ycpdoc, false, $PATH:$devtools_ybindir)
+if test "$YCPDOC" = "false"; then
+    AC_MSG_ERROR([ycpdoc is not installed])
+fi
+AC_PATH_PROG(YCPMAKEDEP, ycpmakedep, false, $PATH:$devtools_ybindir)
+if test "$YCPMAKEDEP" = "false"; then
+    AC_MSG_ERROR([ycpmakedep is not installed])
+fi
+AC_PATH_PROG(YCPC, ycpc, false, $PATH:$bindir)
+if test "$YCPC" = "false"; then
+    AC_MSG_ERROR([ycpc is not installed])
+fi
 AC_CHECK_FILE($devtools_yast2dir/data/testsuite/Makefile.testsuite, [], [
     AC_MSG_WARN([yast2-testsuite.rpm is not installed])
 ])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/doc/Makefile.in 
new/yast2-storage-3.0.7/doc/Makefile.in
--- old/yast2-storage-3.0.6/doc/Makefile.in     2013-10-08 14:10:33.000000000 
+0200
+++ new/yast2-storage-3.0.7/doc/Makefile.in     2013-10-25 13:54:57.000000000 
+0200
@@ -236,6 +236,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/doc/autodocs/Makefile.in 
new/yast2-storage-3.0.7/doc/autodocs/Makefile.in
--- old/yast2-storage-3.0.6/doc/autodocs/Makefile.in    2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/doc/autodocs/Makefile.in    2013-10-25 
13:54:57.000000000 +0200
@@ -214,6 +214,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/src/Makefile.in 
new/yast2-storage-3.0.7/src/Makefile.in
--- old/yast2-storage-3.0.6/src/Makefile.in     2013-10-08 14:10:33.000000000 
+0200
+++ new/yast2-storage-3.0.7/src/Makefile.in     2013-10-25 13:54:57.000000000 
+0200
@@ -100,8 +100,9 @@
   }
 am__installdirs = "$(DESTDIR)$(ybindir)" "$(DESTDIR)$(clientdir)" \
        "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(fillupdir)" \
-       "$(DESTDIR)$(moduledir)" "$(DESTDIR)$(scrconfdir)" \
-       "$(DESTDIR)$(ydatadir)" "$(DESTDIR)$(yncludedir)"
+       "$(DESTDIR)$(moduledir)" "$(DESTDIR)$(modulebindir)" \
+       "$(DESTDIR)$(scrconfdir)" "$(DESTDIR)$(ydatadir)" \
+       "$(DESTDIR)$(yncludedir)"
 SCRIPTS = $(ybin_SCRIPTS)
 AM_V_GEN = $(am__v_GEN_@AM_V@)
 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
@@ -117,7 +118,8 @@
     *) (install-info --version) >/dev/null 2>&1;; \
   esac
 DATA = $(client_DATA) $(desktop_DATA) $(fillup_DATA) $(module_DATA) \
-       $(scrconf_DATA) $(ydata_DATA) $(ynclude_DATA)
+       $(modulebin_DATA) $(scrconf_DATA) $(ydata_DATA) \
+       $(ynclude_DATA)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AGENT_LIBADD = @AGENT_LIBADD@
@@ -204,6 +206,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
@@ -388,6 +393,19 @@
   fillup/sysconfig.storage-yast2-storage
 
 EXTRA_DIST = $(module_DATA) $(client_DATA) $(ynclude_DATA) $(scrconf_DATA) 
$(ybin_SCRIPTS) $(ydata_DATA) $(desktop_DATA) $(fillup_DATA)
+modulebin_DATA = $(patsubst %.ycp,%.ybc,$(module_DATA))
+modulebindir = $(moduledir)
+ybcfiles = $(filter %.ybc,$(modulebin_DATA))
+
+# files to clean
+CLEANFILES = ${ybcfiles}
+DISTCLEANFILES = .dep
+
+# Needs to be outside "." because of cases
+# where ycpchook contains a symlink to "."
+# Otherwise "." keeps being newer than .dep and we loop.
+@HAS_YCP_MODULES_TRUE@NEWDEP = ${top_builddir}/.dep.new
+CHECK_SYNTAX = true
 all: all-am
 
 .SUFFIXES:
@@ -547,6 +565,27 @@
        @list='$(module_DATA)'; test -n "$(moduledir)" || list=; \
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
        dir='$(DESTDIR)$(moduledir)'; $(am__uninstall_files_from_dir)
+install-modulebinDATA: $(modulebin_DATA)
+       @$(NORMAL_INSTALL)
+       @list='$(modulebin_DATA)'; test -n "$(modulebindir)" || list=; \
+       if test -n "$$list"; then \
+         echo " $(MKDIR_P) '$(DESTDIR)$(modulebindir)'"; \
+         $(MKDIR_P) "$(DESTDIR)$(modulebindir)" || exit 1; \
+       fi; \
+       for p in $$list; do \
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+         echo "$$d$$p"; \
+       done | $(am__base_list) | \
+       while read files; do \
+         echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(modulebindir)'"; \
+         $(INSTALL_DATA) $$files "$(DESTDIR)$(modulebindir)" || exit $$?; \
+       done
+
+uninstall-modulebinDATA:
+       @$(NORMAL_UNINSTALL)
+       @list='$(modulebin_DATA)'; test -n "$(modulebindir)" || list=; \
+       files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+       dir='$(DESTDIR)$(modulebindir)'; $(am__uninstall_files_from_dir)
 install-scrconfDATA: $(scrconf_DATA)
        @$(NORMAL_INSTALL)
        @list='$(scrconf_DATA)'; test -n "$(scrconfdir)" || list=; \
@@ -649,11 +688,14 @@
            || exit 1; \
          fi; \
        done
+       $(MAKE) $(AM_MAKEFLAGS) \
+         top_distdir="$(top_distdir)" distdir="$(distdir)" \
+         dist-hook
 check-am: all-am
 check: check-am
 all-am: Makefile $(SCRIPTS) $(DATA)
 installdirs:
-       for dir in "$(DESTDIR)$(ybindir)" "$(DESTDIR)$(clientdir)" 
"$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(fillupdir)" "$(DESTDIR)$(moduledir)" 
"$(DESTDIR)$(scrconfdir)" "$(DESTDIR)$(ydatadir)" "$(DESTDIR)$(yncludedir)"; do 
\
+       for dir in "$(DESTDIR)$(ybindir)" "$(DESTDIR)$(clientdir)" 
"$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(fillupdir)" "$(DESTDIR)$(moduledir)" 
"$(DESTDIR)$(modulebindir)" "$(DESTDIR)$(scrconfdir)" "$(DESTDIR)$(ydatadir)" 
"$(DESTDIR)$(yncludedir)"; do \
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
        done
 install: install-am
@@ -678,10 +720,12 @@
 mostlyclean-generic:
 
 clean-generic:
+       -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 
 distclean-generic:
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f 
$(CONFIG_CLEAN_VPATH_FILES)
+       -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
 
 maintainer-clean-generic:
        @echo "This command is intended for maintainers to use"
@@ -707,8 +751,9 @@
 info-am:
 
 install-data-am: install-clientDATA install-desktopDATA \
-       install-fillupDATA install-moduleDATA install-scrconfDATA \
-       install-ybinSCRIPTS install-ydataDATA install-yncludeDATA
+       install-fillupDATA install-moduleDATA install-modulebinDATA \
+       install-scrconfDATA install-ybinSCRIPTS install-ydataDATA \
+       install-yncludeDATA
 
 install-dvi: install-dvi-am
 
@@ -754,32 +799,73 @@
 
 uninstall-am: uninstall-clientDATA uninstall-desktopDATA \
        uninstall-fillupDATA uninstall-moduleDATA \
-       uninstall-scrconfDATA uninstall-ybinSCRIPTS \
-       uninstall-ydataDATA uninstall-yncludeDATA
+       uninstall-modulebinDATA uninstall-scrconfDATA \
+       uninstall-ybinSCRIPTS uninstall-ydataDATA \
+       uninstall-yncludeDATA
 
 .MAKE: install-am install-strip
 
 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
-       distclean distclean-generic distclean-libtool distdir dvi \
-       dvi-am html html-am info info-am install install-am \
-       install-clientDATA install-data install-data-am \
+       dist-hook distclean distclean-generic distclean-libtool \
+       distdir dvi dvi-am html html-am info info-am install \
+       install-am install-clientDATA install-data install-data-am \
        install-desktopDATA install-dvi install-dvi-am install-exec \
        install-exec-am install-fillupDATA install-html \
        install-html-am install-info install-info-am install-man \
-       install-moduleDATA install-pdf install-pdf-am install-ps \
-       install-ps-am install-scrconfDATA install-strip \
-       install-ybinSCRIPTS install-ydataDATA install-yncludeDATA \
-       installcheck installcheck-am installdirs maintainer-clean \
-       maintainer-clean-generic mostlyclean mostlyclean-generic \
-       mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
-       uninstall-clientDATA uninstall-desktopDATA \
-       uninstall-fillupDATA uninstall-moduleDATA \
+       install-moduleDATA install-modulebinDATA install-pdf \
+       install-pdf-am install-ps install-ps-am install-scrconfDATA \
+       install-strip install-ybinSCRIPTS install-ydataDATA \
+       install-yncludeDATA installcheck installcheck-am installdirs \
+       maintainer-clean maintainer-clean-generic mostlyclean \
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+       uninstall uninstall-am uninstall-clientDATA \
+       uninstall-desktopDATA uninstall-fillupDATA \
+       uninstall-moduleDATA uninstall-modulebinDATA \
        uninstall-scrconfDATA uninstall-ybinSCRIPTS \
        uninstall-ydataDATA uninstall-yncludeDATA
 
 
-# Empty do to drop ycp compilation. When all includes of this file will 
removed,
-# then we can remove also this file (otherwise build will fail)
+# suffix mapping: info '(make)Static Usage'
+# apply only to our modules, not external ones
+${ybcfiles}: %.ybc: %.ycp $(ycpchook)
+       Y2DIR=$(YCPC_Y2DIR) LD_LIBRARY_PATH=$(YCPC_LD_LIBRARY_PATH) ${YCPC} -c 
-M. -I. -q $(YCPCFLAGS) $<
+# generate dependencies
+# two steps not to lose the file if the command fails
+# hook: create the links before we look for files
+@[email protected]: $(wildcard *.ycp) ${ycpchook}
+@HAS_YCP_MODULES_TRUE@ ${YCPMAKEDEP} --prefix=${prefix} ${YCPCFLAGS} > 
${NEWDEP}
+@HAS_YCP_MODULES_TRUE@ cat ${NEWDEP} > .dep
+@HAS_YCP_MODULES_TRUE@ rm ${NEWDEP}
+@HAS_YCP_MODULES_TRUE@-include .dep
+
+dist-hook: check-syntax
+check-syntax: $(client_DATA) $(module_DATA) $(ynclude_DATA) $(ydata_DATA) 
$(ycpchook) $(ybcfiles)
+       @if test "$(filter %.ycp, $(client_DATA) $(ydata_DATA))"; then \
+         if $(CHECK_SYNTAX); then \
+           TO_CHECK="$(filter %.ycp, $(client_DATA) $(ydata_DATA))"; \
+           echo "Checking syntax of $${TO_CHECK}"; \
+           if ! $(YCPC) -qE -M. -I. $(YCPCFLAGS) $${TO_CHECK}; then \
+             echo "Failed. Disable by 'make ... CHECK_SYNTAX=false' at your 
own risk"; \
+             exit 1; \
+           fi; \
+         else \
+           echo "Syntax check disabled"; \
+         fi; \
+       fi
+       @if test "$(filter %.rb, $^)"; then \
+         if $(CHECK_SYNTAX); then \
+           TO_CHECK="$(filter %.rb, $^)"; \
+           echo "Checking syntax of $${TO_CHECK}"; \
+           for f in $${TO_CHECK}; do \
+             if ! ruby -c $$f > /dev/null; then \
+               echo "Failed. Disable by 'make ... CHECK_SYNTAX=false' at your 
own risk"; \
+               exit 1; \
+             fi; \
+           done; \
+         else \
+           echo "Syntax check disabled"; \
+         fi; \
+       fi
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/src/modules/Storage.rb 
new/yast2-storage-3.0.7/src/modules/Storage.rb
--- old/yast2-storage-3.0.6/src/modules/Storage.rb      2013-10-01 
14:39:30.000000000 +0200
+++ new/yast2-storage-3.0.7/src/modules/Storage.rb      2013-10-10 
17:55:28.000000000 +0200
@@ -695,7 +695,7 @@
         tmp = {}
         Ops.set(tmp, "disk", Builtins.substring(device, 0, dlen))
         device = Builtins.substring(device, dlen)
-        if Builtins.search(device, "_part") == 0
+        if Builtins.search(device, "-part") == 0
           device = Builtins.substring(device, 5)
         end
         if Ops.greater_than(Builtins.size(device), 0) &&
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/src/modules/StorageProposal.rb 
new/yast2-storage-3.0.7/src/modules/StorageProposal.rb
--- old/yast2-storage-3.0.6/src/modules/StorageProposal.rb      2013-09-30 
17:03:29.000000000 +0200
+++ new/yast2-storage-3.0.7/src/modules/StorageProposal.rb      2013-10-25 
13:53:36.000000000 +0200
@@ -5043,7 +5043,7 @@
 
     def sizek_to_pe(pek, pebyte, pvcreate)
       ret = Ops.divide(
-        Ops.subtract(pek, pvcreate ? 500 : 0),
+        Ops.subtract(pek, pvcreate ? 4000 : 0),
         Ops.divide(pebyte, 1024)
       )
       Builtins.y2milestone(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/Makefile.in 
new/yast2-storage-3.0.7/testsuite/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/Makefile.in       2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/Makefile.in       2013-10-25 
13:54:57.000000000 +0200
@@ -212,6 +212,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/data/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/Makefile.in  2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/Makefile.in  2013-10-25 
13:54:57.000000000 +0200
@@ -206,6 +206,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/data/empty/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/empty/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/empty/Makefile.in    2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/empty/Makefile.in    2013-10-25 
13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.0.6/testsuite/data/empty-efi/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/empty-efi/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/empty-efi/Makefile.in        
2013-10-08 14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/empty-efi/Makefile.in        
2013-10-25 13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.0.6/testsuite/data/half-empty/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/half-empty/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/half-empty/Makefile.in       
2013-10-08 14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/half-empty/Makefile.in       
2013-10-25 13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.0.6/testsuite/data/reuse-home/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/reuse-home/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/reuse-home/Makefile.in       
2013-10-08 14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/reuse-home/Makefile.in       
2013-10-25 13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.0.6/testsuite/data/windows/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/windows/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/windows/Makefile.in  2013-10-08 
14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/windows/Makefile.in  2013-10-25 
13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.0.6/testsuite/data/windows-only/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/windows-only/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/windows-only/Makefile.in     
2013-10-08 14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/windows-only/Makefile.in     
2013-10-25 13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-3.0.6/testsuite/data/windows-only-efi/Makefile.in 
new/yast2-storage-3.0.7/testsuite/data/windows-only-efi/Makefile.in
--- old/yast2-storage-3.0.6/testsuite/data/windows-only-efi/Makefile.in 
2013-10-08 14:10:33.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/data/windows-only-efi/Makefile.in 
2013-10-25 13:54:57.000000000 +0200
@@ -166,6 +166,9 @@
 Y2CORE_CFLAGS = @Y2CORE_CFLAGS@
 Y2CORE_LIBS = @Y2CORE_LIBS@
 Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@
+YCPC = @YCPC@
+YCPDOC = @YCPDOC@
+YCPMAKEDEP = @YCPMAKEDEP@
 YDOXYGEN = @YDOXYGEN@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/tests/empty3.out 
new/yast2-storage-3.0.7/testsuite/tests/empty3.out
--- old/yast2-storage-3.0.6/testsuite/tests/empty3.out  2013-09-30 
17:03:29.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/tests/empty3.out  2013-10-25 
13:53:36.000000000 +0200
@@ -1,6 +1,6 @@
 Dump   Proposal:
 Dump   Create boot volume /dev/sda1 (400.06 MB) with ext4
 Dump   Create volume /dev/sda2 (29.96 GB)
-Dump   Create volume group system (29.96 GB) from /dev/sda2 [destructive]
+Dump   Create volume group system (29.95 GB) from /dev/sda2 [destructive]
 Dump   Create logical volume /dev/system/root (10.00 GB) for / with ext4
 Dump   Create swap logical volume /dev/system/swap (512.00 MB)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/tests/empty4.out 
new/yast2-storage-3.0.7/testsuite/tests/empty4.out
--- old/yast2-storage-3.0.6/testsuite/tests/empty4.out  2013-09-30 
17:03:29.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/tests/empty4.out  2013-10-25 
13:53:36.000000000 +0200
@@ -1,7 +1,7 @@
 Dump   Proposal:
 Dump   Create boot volume /dev/sda1 (400.06 MB) with ext4
 Dump   Create volume /dev/sda2 (29.96 GB)
-Dump   Create volume group system (29.96 GB) from /dev/sda2 [destructive]
-Dump   Create logical volume /dev/system/home (19.46 GB) for /home with ext4
+Dump   Create volume group system (29.95 GB) from /dev/sda2 [destructive]
+Dump   Create logical volume /dev/system/home (19.45 GB) for /home with ext4
 Dump   Create logical volume /dev/system/root (10.00 GB) for / with ext4
 Dump   Create swap logical volume /dev/system/swap (512.00 MB)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/tests/empty5.out 
new/yast2-storage-3.0.7/testsuite/tests/empty5.out
--- old/yast2-storage-3.0.6/testsuite/tests/empty5.out  2013-09-30 
17:03:29.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/tests/empty5.out  2013-10-25 
13:53:36.000000000 +0200
@@ -1,6 +1,6 @@
 Dump   Proposal:
 Dump   Create boot volume /dev/sda1 (400.06 MB) with ext4
 Dump   Create volume /dev/sda2 (297.70 GB)
-Dump   Create volume group system (297.70 GB) from /dev/sda2 [destructive]
+Dump   Create volume group system (297.69 GB) from /dev/sda2 [destructive]
 Dump   Create logical volume /dev/system/root (10.00 GB) for / with ext4
 Dump   Create swap logical volume /dev/system/swap (768.00 MB)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.0.6/testsuite/tests/empty6.out 
new/yast2-storage-3.0.7/testsuite/tests/empty6.out
--- old/yast2-storage-3.0.6/testsuite/tests/empty6.out  2013-09-30 
17:03:29.000000000 +0200
+++ new/yast2-storage-3.0.7/testsuite/tests/empty6.out  2013-10-25 
13:53:36.000000000 +0200
@@ -1,7 +1,7 @@
 Dump   Proposal:
 Dump   Create boot volume /dev/sda1 (400.06 MB) with ext4
 Dump   Create volume /dev/sda2 (297.70 GB)
-Dump   Create volume group system (297.70 GB) from /dev/sda2 [destructive]
+Dump   Create volume group system (297.69 GB) from /dev/sda2 [destructive]
 Dump   Create logical volume /dev/system/home (25.00 GB) for /home with ext4
 Dump   Create logical volume /dev/system/root (10.00 GB) for / with ext4
 Dump   Create swap logical volume /dev/system/swap (768.00 MB)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to