summaryrefslogtreecommitdiffstats
path: root/gurpm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-03-21 22:52:48 +0000
committerThierry Vignaud <tv@mageia.org>2013-03-21 22:52:48 +0000
commit8389c228158f2ee6bf6843c240e75e832bd1a411 (patch)
treef069690016ede45779a29ac052691aa8e95b85e4 /gurpm
parentdcdf28f560bda2f96936b8ed387b65dc364e12ef (diff)
downloadurpmi-8389c228158f2ee6bf6843c240e75e832bd1a411.tar
urpmi-8389c228158f2ee6bf6843c240e75e832bd1a411.tar.gz
urpmi-8389c228158f2ee6bf6843c240e75e832bd1a411.tar.bz2
urpmi-8389c228158f2ee6bf6843c240e75e832bd1a411.tar.xz
urpmi-8389c228158f2ee6bf6843c240e75e832bd1a411.zip
account for packages to erase in gurpm progress bar
Diffstat (limited to 'gurpm')
-rw-r--r--gurpm/RPMProgressDialog.pm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gurpm/RPMProgressDialog.pm b/gurpm/RPMProgressDialog.pm
index 642f3a33..a2c1c0c0 100644
--- a/gurpm/RPMProgressDialog.pm
+++ b/gurpm/RPMProgressDialog.pm
@@ -34,7 +34,6 @@ How to use:
=cut
use strict;
-use feature 'state';
use Gtk2;
use urpm::download;
use urpm::msg 'N';
@@ -51,7 +50,7 @@ sub title {
my ($mainw, $urpm, $old_main_window);
my $progressbar_size = 450;
-my ($progress_nb, $download_nb);
+my ($progress_nb, $download_nb, $uninst_count);
=head2 Creators
@@ -161,7 +160,7 @@ sub init_progressbar {
$progressbar->set_size_request($progressbar_size, -1);
$vbox->pack_start($progressbar, 0, 0, 0);
$w->{progressbar} = $progressbar;
- $progress_nb = $download_nb = 0;
+ $progress_nb = $download_nb = $uninst_count = 0;
$w->change_widget($vbox);
}
@@ -185,8 +184,8 @@ Update the progress bar
sub set_progressbar {
my ($w, $local_ratio) = @_;
- if ($progress_nb || $download_nb) { # this happens when computing transaction
- $w->{global_progressbar}->set_fraction(($download_nb + $progress_nb - 1 + $local_ratio) / 2 / $urpm->{nb_install});
+ if ($progress_nb || $download_nb || $uninst_count) { # this happens when computing transaction
+ $w->{global_progressbar}->set_fraction(($download_nb + $progress_nb + $uninst_count - 1 + $local_ratio) / 2 / $urpm->{nb_install});
}
$w->{progressbar}->set_fraction($local_ratio);
}
@@ -287,7 +286,6 @@ Its purpose is to display installation progress in the dialog.
sub callback_inst {
my ($urpm, $type, $id, $subtype, $amount, $total) = @_;
my $pkg = defined $id ? $urpm->{depslist}[$id] : undef;
- state $uninst_count;
if ($subtype eq 'start') {
if ($type eq 'trans') {
$uninst_count = 0;