aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-01-09 13:02:31 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-01-09 13:02:31 +0000
commit68b8641664cb2b1a06fc697578f95bb2a42032a2 (patch)
tree3cd33306c584ddffc5f49dfbaa2d403da1e1d158
parentc40838c088c98ecf2472062edd2d73a134caf690 (diff)
downloadrpmdrake-68b8641664cb2b1a06fc697578f95bb2a42032a2.tar
rpmdrake-68b8641664cb2b1a06fc697578f95bb2a42032a2.tar.gz
rpmdrake-68b8641664cb2b1a06fc697578f95bb2a42032a2.tar.bz2
rpmdrake-68b8641664cb2b1a06fc697578f95bb2a42032a2.tar.xz
rpmdrake-68b8641664cb2b1a06fc697578f95bb2a42032a2.zip
don't reset selection list when no package was installed/removed
-rwxr-xr-xrpmdrake35
-rw-r--r--rpmdrake.spec2
2 files changed, 27 insertions, 10 deletions
diff --git a/rpmdrake b/rpmdrake
index e07cd7e6..e0134a96 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -671,11 +671,12 @@ N("The following packages have to be removed for others to be upgraded:
Is it ok to continue?", $formatlistpkg->(sort { $a cmp $b } keys %{$urpm->{state}{ask_remove}})), yesno => 1)
or return;
}
- $callback_action->($urpm, $pkgs);
- ($urpm, $pkgs, $descriptions) = $pkgs_provider->({ skip_updating_mu => 1 });
- $size_selected = 0;
- (undef, $size_free) = MDK::Common::System::df('/usr');
- $options->{rebuild_tree}->();
+ if (!$callback_action->($urpm, $pkgs)) {
+ ($urpm, $pkgs, $descriptions) = $pkgs_provider->({ skip_updating_mu => 1 });
+ $size_selected = 0;
+ (undef, $size_free) = MDK::Common::System::df('/usr');
+ $options->{rebuild_tree}->();
+ }
};
my $table = Gtk2::Table->new(0, 0, 0);
@@ -969,14 +970,23 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
%pkg2rpmnew)
&& !$exitstatus and interactive_msg_(N("Everything installed successfully"),
N("All requested packages were installed successfully."));
+ die "return $exitstatus\n";
} else {
interactive_msg_(N("Everything already installed."),
N("Everything already installed (is this supposed to happen at all?)."));
}
};
- $@ and interactive_msg_(N("Problem during installation"),
- N("There was a problem during the installation:\n\n%s", $fatal_msg));
-
+ if ($@) {
+ if ($@ =~ /^return (\S+)\n$/) {
+ return $1;
+ } else {
+ interactive_msg_(N("Problem during installation"),
+ N("There was a problem during the installation:\n\n%s", $fatal_msg));
+ return 1;
+ }
+ } else {
+ return 0;
+ }
}
@@ -1028,8 +1038,13 @@ sub perform_removal {
my @results;
slow_func(N("Please wait, removing packages..."),
sub { @results = $urpm->install(\@toremove, {}, {}, translate_message => 1) });
- @results and interactive_msg_(N("Problem during removal"),
- N("There was a problem during the removal of packages:\n\n%s", join("\n", @results)));
+ if (@results) {
+ interactive_msg_(N("Problem during removal"),
+ N("There was a problem during the removal of packages:\n\n%s", join("\n", @results)));
+ return 1;
+ } else {
+ return 0;
+ }
}
diff --git a/rpmdrake.spec b/rpmdrake.spec
index 9c9deac9..4046380b 100644
--- a/rpmdrake.spec
+++ b/rpmdrake.spec
@@ -120,6 +120,8 @@ rm -rf $RPM_BUILD_ROOT
- verify all signatures at the end of all downloads
- allow to say "yes to all" to the signatures questions
- allow to retry downloads
+- rpmdrake:
+ - don't reset selection list when no package was installed/removed
* Wed Jan 8 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 2.1-1mdk
- gtk2 (possibly contains important breakages, use with care)