[yast-commit] r62748 - in /branches/SuSE-SLE-10-SP4-Branch/packager: VERSION package/yast2-packager.changes src/clients/software_proposal.ycp
Author: lslezak Date: Wed Nov 3 21:45:32 2010 New Revision: 62748 URL: http://svn.opensuse.org/viewcvs/yast?rev=62748&view=rev Log: - don't reset package selection in the installation proposal when partitioning is changed (bnc#450786, bnc#371875) - 2.13.187 Modified: branches/SuSE-SLE-10-SP4-Branch/packager/VERSION branches/SuSE-SLE-10-SP4-Branch/packager/package/yast2-packager.changes branches/SuSE-SLE-10-SP4-Branch/packager/src/clients/software_proposal.ycp Modified: branches/SuSE-SLE-10-SP4-Branch/packager/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/packager/VERSION?rev=62748&r1=62747&r2=62748&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/packager/VERSION (original) +++ branches/SuSE-SLE-10-SP4-Branch/packager/VERSION Wed Nov 3 21:45:32 2010 @@ -1 +1 @@ -2.13.186 +2.13.187 Modified: branches/SuSE-SLE-10-SP4-Branch/packager/package/yast2-packager.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/packager/package/yast2-packager.changes?rev=62748&r1=62747&r2=62748&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/packager/package/yast2-packager.changes (original) +++ branches/SuSE-SLE-10-SP4-Branch/packager/package/yast2-packager.changes Wed Nov 3 21:45:32 2010 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Nov 3 20:22:47 UTC 2010 - lslezak@suse.cz + +- don't reset package selection in the installation proposal when + partitioning is changed (bnc#450786, bnc#371875) +- 2.13.187 + +------------------------------------------------------------------- Wed Oct 6 17:48:40 UTC 2010 - lslezak@suse.cz - put the Linuxrc CD/DVD device to the beginning of the CD/DVD Modified: branches/SuSE-SLE-10-SP4-Branch/packager/src/clients/software_proposal.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/packager/src/clients/software_proposal.ycp?rev=62748&r1=62747&r2=62748&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/packager/src/clients/software_proposal.ycp (original) +++ branches/SuSE-SLE-10-SP4-Branch/packager/src/clients/software_proposal.ycp Wed Nov 3 21:45:32 2010 @@ -50,7 +50,14 @@ add (Pkg::GetAdditionalLocales (), Language::language)); } - if ( language_changed || partition_changed ) + // if only partitioning has been changed just return the current state, + // don't reset to default (bnc#450786, bnc#371875) + if (partition_changed && !language_changed && !force_reset) + { + return Packages::Summary ([ `product, `pattern, `selection, `size, `desktop ], false); + } + + if ( language_changed ) { reinit = true; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn2.opensuse.org