summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-07-22 08:40:00 +0000
committerFrancois Pons <fpons@mandriva.com>2002-07-22 08:40:00 +0000
commitd11c39e4ab87021174b797ba52eeddbf66a9aed6 (patch)
tree5ab440b898061e7373046cb764a6723c3188b9a7 /urpm.pm
parent15ecc29bad415e81586a42a6f04fb5753722aa13 (diff)
downloadurpmi-d11c39e4ab87021174b797ba52eeddbf66a9aed6.tar
urpmi-d11c39e4ab87021174b797ba52eeddbf66a9aed6.tar.gz
urpmi-d11c39e4ab87021174b797ba52eeddbf66a9aed6.tar.bz2
urpmi-d11c39e4ab87021174b797ba52eeddbf66a9aed6.tar.xz
urpmi-d11c39e4ab87021174b797ba52eeddbf66a9aed6.zip
3.8-3mdk
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm38
1 files changed, 26 insertions, 12 deletions
diff --git a/urpm.pm b/urpm.pm
index 0569ebb5..68f4cbe7 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -1417,8 +1417,8 @@ sub search_packages {
if ($options{use_provides}) {
unless ($options{fuzzy}) {
#- try to search through provides.
- if (my @l = grep { defined $_ } map { $_ && ($options{src} ? $_->arch eq 'src' : $_->is_arch_compat) &&
- $_->id || undef } map { $urpm->{depslist}[$_] }
+ if (my @l = grep { defined $_ } map { $_ && ($options{src} ? $_->arch eq 'src' : $_->is_arch_compat) ?
+ $_->id : undef } map { $urpm->{depslist}[$_] }
keys %{$urpm->{provides}{$v} || {}}) {
#- we assume that if the there is at least one package providing the resource exactly,
#- this should be the best ones that is described.
@@ -1840,17 +1840,31 @@ sub install {
$pkg->update_header($upgrade->{$_});
$trans->add($pkg, 1) or $urpm->{error}(_("unable to install package %s", $upgrade->{$_}));
}
- !$options{nodeps} and @l = $trans->check and return @l;
+ if (!$options{nodeps} and @l = $trans->check) {
+ if ($options{translate_message}) {
+ foreach (@l) {
+ my ($type, $needs, $conflicts) = split '@', $_;
+ $_ = ($type eq 'requires' ?
+ _("%s is needed by %s", $needs, $conflicts) :
+ _("%s conflicts with %s", $needs, $conflicts));
+ }
+ }
+ return @l;
+ }
!$options{noorder} and @l = $trans->order and return @l;
- @l = $trans->run($urpm, force => $options{force}, nosize => $options{nosize}, delta => 1000, callback_open => sub {
- my ($data, $type, $id) = @_;
- open F, $install->{$id} || $upgrade->{$id} or
- $urpm->{error}(_("unable to access rpm file [%s]", $install->{$id} || $upgrade->{$id}));
- return fileno F;
- }, callback_close => sub {
- my ($data, $type, $id) = @_;
- close F;
- }, callback_inst => \&install_logger, callback_trans => \&install_logger);
+
+ #- assume default value for some parameter.
+ $options{delta} ||= 1000;
+ $options{callback_open} ||= sub {
+ my ($data, $type, $id) = @_;
+ open F, $install->{$id} || $upgrade->{$id} or
+ $urpm->{error}(_("unable to access rpm file [%s]", $install->{$id} || $upgrade->{$id}));
+ return fileno F;
+ };
+ $options{callback_close} ||= sub { close F };
+ $options{callback_inst} ||= \&install_logger;
+ $options{callback_trans} ||= \&install_logger;
+ @l = $trans->run($urpm, %options);
}
1;