aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-28 18:42:15 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-28 18:42:15 +0000
commit31d8bbdc3d44ec41a8ad359d62ebfb2d0f35662d (patch)
tree9fb1a0624c756cfcf54116bd8d909bc410f2dedd /Rpmdrake
parent780dbbaddf2ce82291ef4b616d9fc8335860a88d (diff)
downloadrpmdrake-31d8bbdc3d44ec41a8ad359d62ebfb2d0f35662d.tar
rpmdrake-31d8bbdc3d44ec41a8ad359d62ebfb2d0f35662d.tar.gz
rpmdrake-31d8bbdc3d44ec41a8ad359d62ebfb2d0f35662d.tar.bz2
rpmdrake-31d8bbdc3d44ec41a8ad359d62ebfb2d0f35662d.tar.xz
rpmdrake-31d8bbdc3d44ec41a8ad359d62ebfb2d0f35662d.zip
perl_checker cleanups
Diffstat (limited to 'Rpmdrake')
-rw-r--r--Rpmdrake/init.pm2
-rw-r--r--Rpmdrake/open_db.pm6
-rw-r--r--Rpmdrake/pkg.pm9
3 files changed, 10 insertions, 7 deletions
diff --git a/Rpmdrake/init.pm b/Rpmdrake/init.pm
index c9a4262b..5b636eab 100644
--- a/Rpmdrake/init.pm
+++ b/Rpmdrake/init.pm
@@ -121,7 +121,7 @@ foreach (@ARGV) {
foreach my $option (qw(media mode parallel rpm-root search)) {
if (defined $rpmdrake_options{$option} && !ref($rpmdrake_options{$option})) {
- warn "wrong usage of \"$option\" option!\n";
+ warn qq(wrong usage of "$option" option!\n);
exit(-1); # too early for my_exit()
}
}
diff --git a/Rpmdrake/open_db.pm b/Rpmdrake/open_db.pm
index 86b95be1..ee75badd 100644
--- a/Rpmdrake/open_db.pm
+++ b/Rpmdrake/open_db.pm
@@ -81,7 +81,7 @@ sub fast_open_urpmi_db() {
urpm::set_files($urpm, $::rpmdrake_options{'urpmi-root'}[0]) if $::rpmdrake_options{'urpmi-root'}[0];
$::rpmdrake_options{'rpm-root'}[0] ||= $::rpmdrake_options{'urpmi-root'}[0];
urpm::args::set_root($urpm, $::rpmdrake_options{'rpm-root'}[0]) if $::rpmdrake_options{'rpm-root'}[0];
- urpm::args::set_debug($urpm) if $::rpmdrake_options{'debug'};
+ urpm::args::set_debug($urpm) if $::rpmdrake_options{debug};
$urpm->get_global_options;
my $error_happened;
$urpm->{options}{wait_lock} = $::rpmdrake_options{'wait-lock'};
@@ -103,7 +103,7 @@ sub fast_open_urpmi_db() {
N("A fatal error occurred: %s.", $_[1]));
};
- urpm::media::read_config($urpm);
+ urpm::media::read_config($urpm, 0);
foreach (@{$urpm->{media}}) {
next if $_->{ignore};
urpm::media::_tempignore($_, 1) if $ignore_debug_media->[0] && $_->{name} =~ /debug/i;
@@ -116,7 +116,7 @@ sub fast_open_urpmi_db() {
$urpm;
}
-sub is_it_a_devel_distro {
+sub is_it_a_devel_distro() {
state $res;
return $res if defined $res;
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm
index f44ed9fb..4182dfa1 100644
--- a/Rpmdrake/pkg.pm
+++ b/Rpmdrake/pkg.pm
@@ -663,8 +663,11 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
return perform_parallel_install($urpm, $group, $w, \$statusbar_msg_id);
}
- my $lock = urpm::lock::urpmi_db($urpm, undef, wait => $urpm->{options}{wait_lock}) if !$::env;
- my $rpm_lock = urpm::lock::rpm_db($urpm, 'exclusive') if !$::env;
+ my ($lock, $rpm_lock);
+ if (!$::env) {
+ $lock = urpm::lock::urpmi_db($urpm, undef, wait => $urpm->{options}{wait_lock});
+ $rpm_lock = urpm::lock::rpm_db($urpm, 'exclusive');
+ }
my $state = $priority_state || $probe_only_for_updates ? { } : $urpm->{rpmdrake_state};
my $bar_id = statusbar_msg(N("Checking validity of requested packages..."), 0);
@@ -743,7 +746,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
}
}
- urpm::orphans::mark_as_requested($urpm, $state);
+ urpm::orphans::mark_as_requested($urpm, $state, 0);
my ($progress, $total, @rpms_upgrade);
my $transaction;