Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2012-08-24 13:55:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-storage (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-storage.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-storage", Maintainer is "aschn...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes      
2012-08-16 21:58:37.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2012-08-24 13:56:00.000000000 +0200
@@ -1,0 +2,7 @@
+Wed Aug 15 16:14:12 CEST 2012 - f...@suse.de
+
+- 2.22.10
+- re-evaluate default fstab options after changed mount point 
+  (bnc#774499)
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ yast2-storage.spec ++++++
--- /var/tmp/diff_new_pack.KCvLXP/_old  2012-08-24 13:56:02.000000000 +0200
+++ /var/tmp/diff_new_pack.KCvLXP/_new  2012-08-24 13:56:02.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-storage
-Version:        2.22.9
+Version:        2.22.10
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-storage-2.22.9.tar.bz2 -> yast2-storage-2.22.10.tar.bz2 ++++++
++++ 5486 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-storage-2.22.9/VERSION new/yast2-storage-2.22.10/VERSION
--- old/yast2-storage-2.22.9/VERSION    2012-08-13 16:02:37.000000000 +0200
+++ new/yast2-storage-2.22.10/VERSION   2012-08-23 17:36:48.000000000 +0200
@@ -1 +1 @@
-2.22.9
+2.22.10
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-storage-2.22.9/configure.in new/yast2-storage-2.22.10/configure.in
--- old/yast2-storage-2.22.9/configure.in       2012-07-24 19:02:20.000000000 
+0200
+++ new/yast2-storage-2.22.10/configure.in      2012-08-23 17:37:38.000000000 
+0200
@@ -3,7 +3,7 @@
 dnl -- This file is generated by y2autoconf 2.21.6 - DO NOT EDIT! --
 dnl    (edit configure.in.in instead)
 
-AC_INIT(yast2-storage, 2.22.6, http://bugs.opensuse.org/, yast2-storage)
+AC_INIT(yast2-storage, 2.22.10, 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="2.22.6"
+VERSION="2.22.10"
 RPMNAME="yast2-storage"
 MAINTAINER="Arvin Schnell <aschn...@suse.de>"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-storage-2.22.9/storage/src/include/custom_part_lib.ycp 
new/yast2-storage-2.22.10/storage/src/include/custom_part_lib.ycp
--- old/yast2-storage-2.22.9/storage/src/include/custom_part_lib.ycp    
2012-07-24 19:01:55.000000000 +0200
+++ new/yast2-storage-2.22.10/storage/src/include/custom_part_lib.ycp   
2012-08-23 17:36:48.000000000 +0200
@@ -612,7 +612,14 @@
        string mp = (string)UI::QueryWidget(`id(`mount_point), `Value);
        if( new["mount"]:""!=mp )
            {
+            string oldfst = FileSystems::DefaultFstabOptions(new);
            new["mount"] = mp;
+            string newfst = FileSystems::DefaultFstabOptions(new);
+            if( oldfst!=newfst )
+                {
+                /* Default fstab options have changed, set new default, 
bnc#774499 */
+                new["fstopt"] = newfst;
+                }
            new = HandleSubvol( new );
            }
        if( UI::WidgetExists( `id(`fstab_options) ))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-storage-2.22.9/storage/src/modules/DualMultiSelectionBox.ycp 
new/yast2-storage-2.22.10/storage/src/modules/DualMultiSelectionBox.ycp
--- old/yast2-storage-2.22.9/storage/src/modules/DualMultiSelectionBox.ycp      
2012-07-24 19:01:55.000000000 +0200
+++ new/yast2-storage-2.22.10/storage/src/modules/DualMultiSelectionBox.ycp     
2012-08-23 17:36:48.000000000 +0200
@@ -266,13 +266,13 @@
         txt = txt + " ";
         // dialog help text
         txt = txt + _("<b>Interleaved</b> uses first device of class A, then 
first device of 
-class B until all classes with assigned devices. The comes second device of 
class A,
-econd device of class B and so on.");
+class B, then all the following classes with assigned devices. Then the 
+second device of class A, the second device of class B, and so on will 
follow.");
         txt = txt + " ";
         // dialog help text
-        txt = txt + _("All devices withou a class are sorted to the end of 
devices list.
-When you leave the popup the current order is used as order of devices in the 
RAID to
-be created.</p>");
+        txt = txt + _("All devices without a class are sorted to the end of 
devices list.
+When you leave the pop-up the current order of the devices is used as the 
+order in the RAID to be created.</p>");
         // dialog help text
         txt = txt + sformat(_("By pressing button \"<b>%1</b>\" you can select 
a file that contains
 lines with a regular expression and a class name (e.g. \"sda.*  A\"). All 
devices that match 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to