Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory
checked in at Tue Jul 12 16:16:56 CEST 2011.



--------
--- yast2-installation/yast2-installation.changes       2011-06-30 
14:14:39.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-installation/yast2-installation.changes  
2011-07-12 15:36:18.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Jul 12 15:34:38 CEST 2011 - [email protected]
+
+- Show Xen Virtualization Host Server Installation scenario
+  only for x86_64 architecture (bnc#702103)
+- 2.21.7
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  yast2-installation-2.21.6.tar.bz2

New:
----
  yast2-installation-2.21.7.tar.bz2

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

Other differences:
------------------
++++++ yast2-installation.spec ++++++
--- /var/tmp/diff_new_pack.TIO57i/_old  2011-07-12 16:16:37.000000000 +0200
+++ /var/tmp/diff_new_pack.TIO57i/_new  2011-07-12 16:16:37.000000000 +0200
@@ -19,11 +19,11 @@
 
 
 Name:           yast2-installation
-Version:        2.21.6
+Version:        2.21.7
 Release:        1
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-installation-2.21.6.tar.bz2
+Source0:        yast2-installation-2.21.7.tar.bz2
 
 Prefix:         /usr
 
@@ -136,7 +136,7 @@
 System installation code as present on installation media.
 
 %prep
-%setup -n yast2-installation-2.21.6
+%setup -n yast2-installation-2.21.7
 
 %build
 %{prefix}/bin/y2tool y2autoconf

++++++ yast2-installation-2.21.6.tar.bz2 -> yast2-installation-2.21.7.tar.bz2 
++++++
++++ 6214 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-installation-2.21.6/VERSION new/yast2-installation-2.21.7/VERSION
--- old/yast2-installation-2.21.6/VERSION       2011-06-30 14:09:44.000000000 
+0200
+++ new/yast2-installation-2.21.7/VERSION       2011-07-12 15:35:07.000000000 
+0200
@@ -1 +1 @@
-2.21.6
+2.21.7
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-installation-2.21.6/src/clients/inst_automatic_configuration.ycp 
new/yast2-installation-2.21.7/src/clients/inst_automatic_configuration.ycp
--- old/yast2-installation-2.21.6/src/clients/inst_automatic_configuration.ycp  
2011-06-30 14:07:29.000000000 +0200
+++ new/yast2-installation-2.21.7/src/clients/inst_automatic_configuration.ycp  
2011-06-30 14:13:52.000000000 +0200
@@ -4,7 +4,7 @@
  * Summary:    Automatic configuration instead of the second stage
  * Authors:    Lukas Ocilka <[email protected]>
  *
- * $Id: inst_automatic_configuration.ycp 58525 2009-09-04 12:20:57Z 
kmachalkova $
+ * $Id: inst_automatic_configuration.ycp 64653 2011-06-30 12:13:47Z jsuchome $
  *
  * @see http://visnov.blogspot.com/2008/02/getting-rid-of-2nd-stage-of.html
  */
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-installation-2.21.6/src/clients/inst_scenarios.ycp 
new/yast2-installation-2.21.7/src/clients/inst_scenarios.ycp
--- old/yast2-installation-2.21.6/src/clients/inst_scenarios.ycp        
2009-12-18 14:52:04.000000000 +0100
+++ new/yast2-installation-2.21.7/src/clients/inst_scenarios.ycp        
2011-07-12 15:35:25.000000000 +0200
@@ -4,7 +4,7 @@
  * Summary:    Server/Desktop Scenarios
  * Authors:    Lukas Ocilka <[email protected]>
  *
- * $Id: inst_scenarios.ycp 57028 2009-04-29 10:58:09Z lslezak $
+ * $Id: inst_scenarios.ycp 64778 2011-07-12 13:35:23Z jsuchome $
  */
 
 {
@@ -12,6 +12,7 @@
 
     textdomain "installation";
 
+    import "Arch";
     import "ProductControl";
     import "ProductFeatures";
     import "Wizard";
@@ -41,6 +42,16 @@
 
     list <map <string, string> > system_scenarios = (list <map <string, 
string> >) any_scenarios;
 
+    // Remove Xen Virtualization Host Server Installation for non-x86_64 
(bnc#702103)
+    system_scenarios   = filter (map <string, string> one_scenario, 
system_scenarios, {
+       if (one_scenario["id"]:"---" == "scenario_virtualization_host" && 
!Arch::x86_64 ())
+       {
+           y2milestone ("removing Xen Virtualization Host Server option");
+           return false;
+       }
+       return true;
+    });
+
     /**
      * Adjusts UI - selected radio button
      */
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-installation-2.21.6/src/inst_finish/save_config_finish.ycp 
new/yast2-installation-2.21.7/src/inst_finish/save_config_finish.ycp
--- old/yast2-installation-2.21.6/src/inst_finish/save_config_finish.ycp        
2011-06-30 14:08:35.000000000 +0200
+++ new/yast2-installation-2.21.7/src/inst_finish/save_config_finish.ycp        
2011-06-30 14:13:52.000000000 +0200
@@ -8,7 +8,7 @@
  * Authors:
  *  Jiri Srain <[email protected]>
  *
- * $Id: save_config_finish.ycp 63227 2011-01-19 14:09:58Z jsrain $
+ * $Id: save_config_finish.ycp 64653 2011-06-30 12:13:47Z jsuchome $
  *
  */
 


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



Remember to have fun...

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

Reply via email to