From 1a89f0bda9a72fce1076000c8ad5c1d8680f7faa Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 15 Mar 2007 13:11:49 +0000 Subject: fix typo in regexp --- urpm/parallel_ka_run.pm | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm index fd8a7ced..e8b81074 100644 --- a/urpm/parallel_ka_run.pm +++ b/urpm/parallel_ka_run.pm @@ -62,7 +62,7 @@ sub parallel_find_remove { open my $fh, "$rshp_command -v $parallel->{options} -- urpme --no-locales --auto $test" . join(' ', map { "'$_'" } @$l) . " 2>&1 |"; while (<$fh>) { chomp; - s/<([^>]*)>.*:->:(.*)/$2/ and $node = $1; + ($_, $node) = _parse_rshp_output($_) or next; /^\s*$/ and next; /Checking to remove the following packages/ and next; /To satisfy dependencies, the following packages are going to be removed/ @@ -177,7 +177,7 @@ sub parallel_resolve_dependencies { open my $fh, "$rshp_command -v $parallel->{options} -- urpmq --synthesis $synthesis -fduc $line " . join(' ', keys %chosen) . " |"; while (<$fh>) { chomp; - s/<([^>]*)>.*:->:(.*)/$2/ and $node = $1; + ($_, $node) = _parse_rshp_output($_) or next; if (my ($action, $what) = /^\@([^\@]*)\@(.*)/) { if ($action eq 'removing') { $state->{rejected}{$what}{removed} = 1; @@ -227,7 +227,7 @@ sub parallel_install { open my $fh, "$rshp_command -v $parallel->{options} -- urpmi --pre-clean --no-locales --test --no-verify-rpm --auto --synthesis $parallel->{synthesis} $parallel->{line} |"; while (<$fh>) { chomp; - s/<([^>]*)>.*:->:(.*)/$2/ and $node = $1; + ($_, $node) = _parse_rshp_output($_) or next; /^\s*$/ and next; $bad_nodes{$node} .= $_; /Installation failed/ and $bad_nodes{$node} = ''; @@ -252,6 +252,18 @@ sub parallel_install { } } +sub _parse_rshp_output { + my ($s) = @_; + #- eg of output of rshp2: [rank:2]:@removing@mpich-1.2.5.2-10mlcs4.x86_64 + + if ($s =~ /<([^>]*)>.*:->:(.*)/ || $s =~ /<([^>]*)>\s*\[[^]]*\]:(.*)/) { + ($1, $2); + } else { + warn "bad rshp output $s\n"; + (); + } +} + #- allow to bootstrap from urpmi code directly (namespace is urpm). package urpm; -- cgit v1.2.1