diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-27 17:15:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-27 17:15:23 +0000 |
commit | 6aaf7d1e438b9820164b94d3b548a858bb6abf68 (patch) | |
tree | 3634d28f369060cb1f2e452b8a6c32a077e14cda | |
parent | 6b1205316bc4f4f521ed6ba6649dbfd2167a2f63 (diff) | |
download | urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar.gz urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar.bz2 urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar.xz urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.zip |
perl_checker cleanups
-rw-r--r-- | rpm-find-leaves | 2 | ||||
-rw-r--r-- | urpm/media.pm | 2 | ||||
-rwxr-xr-x | urpme | 4 | ||||
-rwxr-xr-x | urpmf | 8 | ||||
-rwxr-xr-x | urpmq | 8 |
5 files changed, 12 insertions, 12 deletions
diff --git a/rpm-find-leaves b/rpm-find-leaves index 1a419cbf..87aabdbb 100644 --- a/rpm-find-leaves +++ b/rpm-find-leaves @@ -23,7 +23,7 @@ where [options] are from my $urpm = urpm->new; -while ($_ = shift) { +while (my $_ = shift) { $_ eq '--root' and do { my $root = shift; $root and urpm::set_files($urpm, $root); diff --git a/urpm/media.pm b/urpm/media.pm index dfb3d4e8..6caf3b8a 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -646,7 +646,7 @@ sub configure { } } if ($options{update}) { - foreach (grep { !$_->{ignore} && ($_->{update}) } @{$urpm->{media} || []}) { + foreach (grep { !$_->{ignore} && $_->{update} } @{$urpm->{media} || []}) { #- Ensure update media are selected $_->{modified} = 1; _tempignore($_, 0); @@ -163,10 +163,10 @@ if ($urpm->{options}{auto} || $env) { $force || message_input_(P("Remove %d package?", "Remove %d packages?", scalar(@toremove), scalar(@toremove)) . N(" (y/N) "), boolean => 1) =~ /[$yesexpr]/ or exit 0; } -print $test ? +print($test ? #- Warning : the following message is parsed in urpm::parallel_* N("testing removal of %s", join(' ', sort @toremove)) : - N("removing %s", join(' ', sort @toremove)), "\n"; + N("removing %s", join(' ', sort @toremove)), "\n"); exit 0 if $env; @@ -286,21 +286,21 @@ urpm::media::configure($urpm, # nb: we don't "my" $medium since it is used for $callback if ($needed_media_info{hdlist}) { - foreach $medium (urpm::media::non_ignored_media($urpm)) { + foreach my $medium (urpm::media::non_ignored_media($urpm)) { my $hdlist = urpm::media::any_hdlist($urpm, $medium, $options{verbose} < 0) or $urpm->{error}(N("no hdlist available for medium \"%s\"", $medium->{name})), next; $urpm->{log}("getting information from $hdlist"); $urpm->parse_hdlist($hdlist, callback => $callback); } } elsif (!@needed_xml_info) { - foreach $medium (urpm::media::non_ignored_media($urpm)) { + foreach my $medium (urpm::media::non_ignored_media($urpm)) { my $synthesis = urpm::media::any_synthesis($urpm, $medium) or $urpm->{error}(N("no synthesis available for medium \"%s\"", $medium->{name})), next; $urpm->{log}("getting information from $synthesis"); $urpm->parse_synthesis($synthesis, callback => $callback); } } elsif (my ($xml_info) = @needed_xml_info) { - foreach $medium (urpm::media::non_ignored_media($urpm)) { + foreach my $medium (urpm::media::non_ignored_media($urpm)) { my $xml_info_file = urpm::media::any_xml_info($urpm, $medium, $xml_info, $options{verbose} < 0); if (!$xml_info_file) { my $hdlist = urpm::media::any_hdlist($urpm, $medium, $options{verbose} < 0) or @@ -340,7 +340,7 @@ if ($needed_media_info{hdlist}) { EOF $urpm->{debug} and $urpm->{debug}($code); eval $code; - $@ and $urpm->{fatal}(1, "$@"); + $@ and $urpm->{fatal}(1, $@); } else { urpm::xml_info::do_something_with_nodes( $xml_info, @@ -416,12 +416,12 @@ if ($options{list_aliases}) { } else { my $pkgs_text = join(' ', map { $_->name } @pkgs); if ($xml_info eq 'info') { - $urpm->{info}((int(@pkgs) == 1) ? + $urpm->{info}(int(@pkgs) == 1 ? N("no xml info for medium \"%s\", only partial result for package %s", $medium->{name}, $pkgs_text) : N("no xml info for medium \"%s\", only partial result for packages %s", $medium->{name}, $pkgs_text)); } else { - $urpm->{error}((int(@pkgs) == 1) ? - N("no xml info for medium \"%s\", unable to return any result for package %s",$medium->{name}, $pkgs_text) + $urpm->{error}(int(@pkgs == 1) ? + N("no xml info for medium \"%s\", unable to return any result for package %s", $medium->{name}, $pkgs_text) : N("no xml info for medium \"%s\", unable to return any result for packages %s", $medium->{name}, $pkgs_text)); } } @@ -463,7 +463,7 @@ if ($options{list_aliases}) { my $media = URPM::pkg2media($urpm->{media}, $pkg); $media && $updates_descr->{$media->{name}}{$pkg->name}; }; - if (my $description = ($updesc && $updesc->{description}) || $pkg->description) { + if (my $description = $updesc && $updesc->{description} || $pkg->description) { printf "%-12s:\n%s\n", "Description", $description; } if ($updesc) { |