summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-01-06 14:33:24 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-01-06 14:33:24 +0000
commitc0adee6e375471ccaeadf1b61c8d7707b185eba8 (patch)
treeb73e013f891759bbf395f4084c8b79fdff7b58dc /urpm.pm
parentcb24f4213f5020ff7819005e3c40d54f9c51b0b9 (diff)
downloadurpmi-c0adee6e375471ccaeadf1b61c8d7707b185eba8.tar
urpmi-c0adee6e375471ccaeadf1b61c8d7707b185eba8.tar.gz
urpmi-c0adee6e375471ccaeadf1b61c8d7707b185eba8.tar.bz2
urpmi-c0adee6e375471ccaeadf1b61c8d7707b185eba8.tar.xz
urpmi-c0adee6e375471ccaeadf1b61c8d7707b185eba8.zip
perl_checker fixes
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm30
1 files changed, 15 insertions, 15 deletions
diff --git a/urpm.pm b/urpm.pm
index 8ca8b55f..0e46655d 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -1017,7 +1017,7 @@ sub update_media {
if (($prefix, $dir) = $medium->{url} =~ m!^(?:(removable[^:]*|file):/)?(/.*)!) {
$prefix ||= 'file';
#- check for a reconfig.urpmi file (if not already reconfigured)
- if (!$media_redone{$medium->{name}} and !$medium->{noreconfigure}) {
+ if (!$media_redone{$medium->{name}} && !$medium->{noreconfigure}) {
my $reconfig_urpmi = reduce_pathname("$dir/reconfig.urpmi");
if (-s $reconfig_urpmi && $urpm->reconfig_urpmi($reconfig_urpmi, $medium->{name})) {
$media_redone{$medium->{name}} = 1;
@@ -1169,13 +1169,13 @@ this could happen if you mounted manually the directory when creating the medium
if ($options{force} < 2 && -e $with_hdlist_dir) {
unlink "$urpm->{cachedir}/partial/$medium->{hdlist}";
$urpm->{log}(N("copying source hdlist (or synthesis) of \"%s\"...", $medium->{name}));
- $options{callback} && $options{callback}('copy', $medium->{name});
+ $options{callback} and $options{callback}('copy', $medium->{name});
if (urpm::util::copy($with_hdlist_dir, "$urpm->{cachedir}/partial/$medium->{hdlist}")) {
- $options{callback} && $options{callback}('done', $medium->{name});
+ $options{callback} and $options{callback}('done', $medium->{name});
$urpm->{log}(N("...copying done"));
chown 0, 0, "$urpm->{cachedir}/partial/$medium->{hdlist}";
} else {
- $options{callback} && $options{callback}('failed', $medium->{name});
+ $options{callback} and $options{callback}('failed', $medium->{name});
#- force error, reported afterwards
unlink "$urpm->{cachedir}/partial/$medium->{hdlist}";
}
@@ -1312,7 +1312,7 @@ this could happen if you mounted manually the directory when creating the medium
}
} else {
#- check for a reconfig.urpmi file (if not already reconfigured)
- if (!$media_redone{$medium->{name}} and !$medium->{noreconfigure}) {
+ if (!$media_redone{$medium->{name}} && !$medium->{noreconfigure}) {
my $reconfig_urpmi_url = "$medium->{url}/reconfig.urpmi";
unlink(my $reconfig_urpmi = "$urpm->{cachedir}/partial/reconfig.urpmi");
eval {
@@ -1441,7 +1441,7 @@ this could happen if you mounted manually the directory when creating the medium
#- try to probe for possible with_hdlist parameter, unless
#- it is already defined (and valid).
$urpm->{log}(N("retrieving source hdlist (or synthesis) of \"%s\"...", $medium->{name}));
- $options{callback} && $options{callback}('retrieve', $medium->{name});
+ $options{callback} and $options{callback}('retrieve', $medium->{name});
if ($options{probe_with}) {
my @probe_list = (
$medium->{with_hdlist}
@@ -1524,7 +1524,7 @@ this could happen if you mounted manually the directory when creating the medium
}
if (-e "$urpm->{cachedir}/partial/$basename" && -s _ > 32) {
- $options{callback} && $options{callback}('done', $medium->{name});
+ $options{callback} and $options{callback}('done', $medium->{name});
$urpm->{log}(N("...retrieving done"));
unless ($options{force}) {
@@ -1613,7 +1613,7 @@ this could happen if you mounted manually the directory when creating the medium
}
} else {
$error = 1;
- $options{callback} && $options{callback}('failed', $medium->{name});
+ $options{callback} and $options{callback}('failed', $medium->{name});
$urpm->{error}(N("retrieval of source hdlist (or synthesis) failed"));
}
}
@@ -1639,7 +1639,7 @@ this could happen if you mounted manually the directory when creating the medium
#- read first pass hdlist or synthesis, try to open as synthesis, if file
#- is larger than 1MB, this is probably an hdlist else a synthesis.
#- anyway, if one tries fails, try another mode.
- $options{callback} && $options{callback}('parse', $medium->{name});
+ $options{callback} and $options{callback}('parse', $medium->{name});
my @unresolved_before = grep { ! defined $urpm->{provides}{$_} } keys %{$urpm->{provides} || {}};
if (!$medium->{synthesis}
|| -e "$urpm->{cachedir}/partial/$medium->{hdlist}" && -s _ > 262144)
@@ -1803,7 +1803,7 @@ this could happen if you mounted manually the directory when creating the medium
#- take care of modified medium only, or all if all have to be recomputed.
$medium->{ignore} and next;
- $options{callback} && $options{callback}('parse', $medium->{name});
+ $options{callback} and $options{callback}('parse', $medium->{name});
#- a modified medium is an invalid medium, we have to read back the previous hdlist
#- or synthesis which has not been modified by first pass above.
if ($medium->{headers} && !$medium->{modified}) {
@@ -2037,13 +2037,13 @@ sub search_packages {
$_
&& ($options{src} ? $_->arch eq 'src' : $_->is_arch_compat)
&& ($options{use_provides} || $_->name eq $v)
- && defined $_->id
+ && defined($_->id)
&& (!defined $urpm->{searchmedia} || (
$urpm->{searchmedia}{start} <= $_->id
&& $urpm->{searchmedia}{end} >= $_->id))
- ? $_ : @{[]}
+ ? $_ : @{[]};
} map {
- $urpm->{depslist}[$_]
+ $urpm->{depslist}[$_];
} keys %{$urpm->{provides}{$v} || {}})
{
#- we assume that if there is at least one package providing
@@ -2865,7 +2865,7 @@ sub install {
my $fullname = $pkg->fullname;
my $trtype = (grep { /$fullname/ } values %$install) ? 'install' : '(upgrade|update)';
push @readmes, map { [ $_, $fullname ] } grep {
- /\bREADME(\.$trtype)?\.urpmi$/
+ /\bREADME(\.$trtype)?\.urpmi$/;
} $pkg->files;
close $fh;
};
@@ -3071,7 +3071,7 @@ sub translate_why_unselected {
sub removed_packages {
my (undef, $state) = @_;
grep {
- $state->{rejected}{$_}{removed} && !$state->{rejected}{$_}{obsoleted}
+ $state->{rejected}{$_}{removed} && !$state->{rejected}{$_}{obsoleted};
} keys %{$state->{rejected} || {}};
}