Mailinglist Archive: opensuse-commit (1426 mails)

< Previous Next >
commit yast2-repair
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 29 Mar 2007 00:17:14 +0200
  • Message-id: <20070328221715.30F4567817D@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2-repair
checked in at Thu Mar 29 00:17:14 CEST 2007.

--------
--- yast2-repair/yast2-repair.changes   2007-03-01 15:40:21.000000000 +0100
+++ /mounts/work_src_done/NOARCH/yast2-repair/yast2-repair.changes      2007-03-28 14:57:23.808314000 +0200
@@ -1,0 +2,6 @@
+Wed Mar 28 14:03:43 CEST 2007 - jsuchome@xxxxxxx
+
+- replaced usage of obsolete guessfstype with blkid tool
+- 2.15.4
+
+-------------------------------------------------------------------

Old:
----
  yast2-repair-2.15.3.tar.bz2

New:
----
  yast2-repair-2.15.4.tar.bz2

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

Other differences:
------------------
++++++ yast2-repair.spec ++++++
--- /var/tmp/diff_new_pack.z20433/_old  2007-03-29 00:17:06.000000000 +0200
+++ /var/tmp/diff_new_pack.z20433/_new  2007-03-29 00:17:06.000000000 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package yast2-repair (Version 2.15.3)
+# spec file for package yast2-repair (Version 2.15.4)
 #
 # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
 # norootforbuild
 
 Name:           yast2-repair
-Version:        2.15.3
+Version:        2.15.4
 Release:        1
 License:        GNU General Public License (GPL)
 Group:          System/YaST
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-repair-2.15.3.tar.bz2
+Source0:        yast2-repair-2.15.4.tar.bz2
 prefix:                /usr
 BuildRequires:  perl-XML-Writer update-desktop-files yast2 yast2-bootloader yast2-devtools yast2-packager yast2-testsuite
 Requires:       yast2 gpart reiserfs e2fsprogs yast2-bootloader yast2-storage
@@ -34,7 +34,7 @@
     Jiri Suchomel <jsuchome@xxxxxxx>
 
 %prep
-%setup -n yast2-repair-2.15.3
+%setup -n yast2-repair-2.15.4
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -69,6 +69,9 @@
 %doc %{prefix}/share/doc/packages/yast2-repair
 
 %changelog
+* Wed Mar 28 2007 - jsuchome@xxxxxxx
+- replaced usage of obsolete guessfstype with blkid tool
+- 2.15.4
 * Thu Mar 01 2007 - jsuchome@xxxxxxx
 - check the products (installed vs repairing) for name and version,
   give possibility to continue even when they differ (#195265)

++++++ yast2-repair-2.15.3.tar.bz2 -> yast2-repair-2.15.4.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-repair-2.15.3/src/OSRFsck.ycp new/yast2-repair-2.15.4/src/OSRFsck.ycp
--- old/yast2-repair-2.15.3/src/OSRFsck.ycp     2006-12-20 14:16:59.000000000 +0100
+++ new/yast2-repair-2.15.4/src/OSRFsck.ycp     2007-03-28 14:03:24.000000000 +0200
@@ -318,7 +318,7 @@
    */
   define boolean is_fat()``{
 
-    string command     = sformat("/bin/guessfstype %1", check_partition );
+    string command     = sformat("blkid -o value -s TYPE %1", check_partition);
     boolean isfat      = OSRExecute::CommandOutput (.local.bash, command );
 
     if ( issubstring( OSRExecute::stdout, "fat" ))
@@ -338,7 +338,7 @@
    */
   define boolean is_ntfs()  ``{
 
-    string command     = sformat("/bin/guessfstype %1", check_partition );
+    string command     = sformat("blkid -o value -s TYPE %1", check_partition);
     boolean isntfs     = false;
     OSRExecute::CommandOutput (.local.bash, command );
 
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-repair-2.15.3/src/osr_module_packages.ycp new/yast2-repair-2.15.4/src/osr_module_packages.ycp
--- old/yast2-repair-2.15.3/src/osr_module_packages.ycp 2007-03-01 15:17:13.000000000 +0100
+++ new/yast2-repair-2.15.4/src/osr_module_packages.ycp 2007-03-01 15:40:42.000000000 +0100
@@ -11,7 +11,7 @@
  * Author:
  *   Johannes Buchhold <jbuch@xxxxxxx>
  *
- * $Id: osr_module_packages.ycp 34989 2006-12-20 13:16:54Z jsuchome $
+ * $Id: osr_module_packages.ycp 36615 2007-03-01 14:40:40Z jsuchome $
  */
 
 {
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-repair-2.15.3/src/OSRPkg.ycp new/yast2-repair-2.15.4/src/OSRPkg.ycp
--- old/yast2-repair-2.15.3/src/OSRPkg.ycp      2007-03-01 15:21:07.000000000 +0100
+++ new/yast2-repair-2.15.4/src/OSRPkg.ycp      2007-03-01 15:40:42.000000000 +0100
@@ -4,7 +4,7 @@
  * Summary:    Packages check
  * Authors:    Johannes Buchhold <jbuch@xxxxxxx>
  *
- * $Id: OSRPkg.ycp 34989 2006-12-20 13:16:54Z jsuchome $
+ * $Id: OSRPkg.ycp 36615 2007-03-01 14:40:40Z jsuchome $
  *
  * Provide osr mode information.
  */
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-repair-2.15.3/VERSION new/yast2-repair-2.15.4/VERSION
--- old/yast2-repair-2.15.3/VERSION     2007-03-01 15:27:04.000000000 +0100
+++ new/yast2-repair-2.15.4/VERSION     2007-03-28 14:08:51.000000000 +0200
@@ -1 +1 @@
-2.15.3
+2.15.4


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



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread