diff options
author | Francois Pons <fpons@mandriva.com> | 2002-12-10 16:30:57 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-12-10 16:30:57 +0000 |
commit | 933d4974697b7561b1ea880c4b7d9b75d92087bd (patch) | |
tree | feafc352a3fa72a1590577aa7db2938634fe84b3 /urpm.pm | |
parent | f7ed619b0b08764dc83b0bc8c314c59b8fecac48 (diff) | |
download | urpmi-933d4974697b7561b1ea880c4b7d9b75d92087bd.tar urpmi-933d4974697b7561b1ea880c4b7d9b75d92087bd.tar.gz urpmi-933d4974697b7561b1ea880c4b7d9b75d92087bd.tar.bz2 urpmi-933d4974697b7561b1ea880c4b7d9b75d92087bd.tar.xz urpmi-933d4974697b7561b1ea880c4b7d9b75d92087bd.zip |
4.1-11mdk
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1623,6 +1623,9 @@ sub register_rpms { $error and $urpm->{fatal}(1, _("error registering local packages")); $start <= $id and @requested{($start .. $id)} = (1) x ($id-$start+1); + #- distribute local packages to distant nodes directly in cache of each machine. + $urpm->{parallel_handler} and $urpm->{parallel_handler}->parallel_register_rpms(@_); + %requested; } @@ -1738,8 +1741,15 @@ sub search_packages { sub resolve_dependencies { my ($urpm, $state, $requested, %options) = @_; - require URPM::Resolve; - + if ($options{install_src}) { + #- only src will be installed, so only update $state->{selected} according + #- to src status of files. + foreach (%$requested) { + my $pkg = $urpm->{depslist}[$_] or next; + $pkg->arch eq 'src' or next; + $state->{selected}{$_} = undef; + } + } if ($urpm->{parallel_handler}) { #- build the global synthesis file first. my $file = "$urpm->{cachedir}/partial/parallel.cz"; @@ -1753,6 +1763,8 @@ sub resolve_dependencies { } else { my $db; + require URPM::Resolve; + if ($options{rpmdb}) { $db = new URPM; $db->parse_synthesis($options{rpmdb}); |