Hello community, here is the log from the commit of package yast2-packager for openSUSE:Factory checked in at 2013-06-11 06:41:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old) and /work/SRC/openSUSE:Factory/.yast2-packager.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-packager" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes 2013-04-26 12:37:31.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-packager.new/yast2-packager.changes 2013-06-11 09:39:00.000000000 +0200 @@ -1,0 +2,10 @@ +Mon Jun 3 13:52:20 UTC 2013 - [email protected] + +- PackageSlideShow.ycp - avoid possible division by zero + +------------------------------------------------------------------- +Fri May 31 11:28:08 UTC 2013 - [email protected] + +- removed writing a debug file (bnc#822615) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-packager-2.24.0.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-2.24.0/src/modules/PackageSlideShow.ycp new/yast2-packager-2.24.0/src/modules/PackageSlideShow.ycp --- old/yast2-packager-2.24.0/src/modules/PackageSlideShow.ycp 2013-01-22 11:40:37.000000000 +0100 +++ new/yast2-packager-2.24.0/src/modules/PackageSlideShow.ycp 2013-06-03 16:16:36.000000000 +0200 @@ -511,7 +511,8 @@ total_count_to_download = packages_to_download(total_pkg_count_per_cd_per_src); total_count_downloaded = 0; integer total_count_to_install = packages_to_install(total_pkg_count_per_cd_per_src); - downloading_pct = 100 * total_count_to_download / (total_count_to_install + total_count_to_download); + integer total = total_count_to_install + total_count_to_download; + downloading_pct = (total == 0) ? 0 : 100 * total_count_to_download / total; init_pkg_data_complete = true; // reset the history log @@ -1042,7 +1043,7 @@ total_downloaded = total_downloaded + current_provide_size; total_count_downloaded = total_count_downloaded + 1; - y2milestone("Downloaded %1/%2 packages (%3%%)", total_count_downloaded, total_count_to_download, total_count_downloaded * 100 / total_count_to_download); + y2milestone("Downloaded %1/%2 packages", total_count_downloaded, total_count_to_download); // move the progress also for downloaded files UpdateTotalProgressValue(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-2.24.0/src/modules/ProductLicense.ycp new/yast2-packager-2.24.0/src/modules/ProductLicense.ycp --- old/yast2-packager-2.24.0/src/modules/ProductLicense.ycp 2013-01-22 11:40:37.000000000 +0100 +++ new/yast2-packager-2.24.0/src/modules/ProductLicense.ycp 2013-05-31 14:51:36.000000000 +0200 @@ -1165,7 +1165,6 @@ default_next_button_state = false; }); - SCR::Write (.target.ycp, "/tmp/a", contents); Wizard::SetContents(caption, contents, GetLicenseDialogHelp(), enable_back, default_next_button_state); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
