summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-08-17 04:49:49 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-08-17 04:49:49 +0000
commit3be30f9e5d21c2b373397cf3bd1b232afaddca54 (patch)
tree648a772e0529287603fb63c28baf6e8979c78bea /perl-install/pkgs.pm
parent10491b0d5d0c2580804672b9bbf0ef77ba7e0325 (diff)
downloaddrakx-3be30f9e5d21c2b373397cf3bd1b232afaddca54.tar
drakx-3be30f9e5d21c2b373397cf3bd1b232afaddca54.tar.gz
drakx-3be30f9e5d21c2b373397cf3bd1b232afaddca54.tar.bz2
drakx-3be30f9e5d21c2b373397cf3bd1b232afaddca54.tar.xz
drakx-3be30f9e5d21c2b373397cf3bd1b232afaddca54.zip
cleanup
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index ebdf1be7f..567525a09 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -1030,8 +1030,8 @@ sub installTransactionClosure {
}
sub installCallback {
-# my $msg = shift;
-# log::l($msg .": ". join(',', @_));
+# my (undef, $msg, @para) = @_;
+# log::l("$msg: " . join(',', @para));
}
sub install {
@@ -1066,7 +1066,7 @@ sub install {
#- do not modify/translate the message used with installCallback since
#- these are keys during progressing installation, or change in other
#- place (install_steps_gtk.pm,...).
- installCallback($packages, 'user', undef, 'install', $nb, $total);
+ installCallback($packages, user => undef, install => $nb, $total);
do {
my @transToInstall = installTransactionClosure($packages, \%packages);
@@ -1152,8 +1152,8 @@ sub install {
log::l("rpm transactions start");
my $fd; #- since we return the "fileno", perl does not know we're still using it, and so closes it, and :-(
my @probs = $trans->run($packages, force => 1, nosize => 1, callback_open => sub {
- my ($data, $_type, $id) = @_;
- my $pkg = defined $id && $data->{depslist}[$id];
+ my ($packages, $_type, $id) = @_;
+ my $pkg = defined $id && $packages->{depslist}[$id];
my $medium = packageMedium($packages, $pkg);
my $f = $pkg && $pkg->filename;
print $LOG "$f\n";
@@ -1164,8 +1164,8 @@ sub install {
}
$fd ? fileno $fd : -1;
}, callback_close => sub {
- my ($data, $_type, $id) = @_;
- my $pkg = defined $id && $data->{depslist}[$id] or return;
+ my ($packages, $_type, $id) = @_;
+ my $pkg = defined $id && $packages->{depslist}[$id] or return;
my $check_installed;
$db->traverse_tag('name', [ $pkg->name ], sub {
my ($p) = @_;
@@ -1284,7 +1284,7 @@ sub remove {
#- do not modify/translate the message used with installCallback since
#- these are keys during progressing installation, or change in other
#- place (install_steps_gtk.pm,...).
- installCallback($db, 'user', undef, 'remove', scalar @$toRemove);
+ installCallback($db, user => undef, remove => scalar @$toRemove);
if (my @probs = $trans->run(undef, force => 1)) {
die "removing of old rpms failed:\n ", join("\n ", @probs);