diff options
author | Francois Pons <fpons@mandriva.com> | 2002-02-27 11:04:30 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-02-27 11:04:30 +0000 |
commit | f1a0fe2b76e7356afdb53697efa3e3228a09630f (patch) | |
tree | 62a35d10fdc5387103288de269b89286a223fa76 | |
parent | 29b5225326a921680be86f22be46d3b753efe567 (diff) | |
download | urpmi-f1a0fe2b76e7356afdb53697efa3e3228a09630f.tar urpmi-f1a0fe2b76e7356afdb53697efa3e3228a09630f.tar.gz urpmi-f1a0fe2b76e7356afdb53697efa3e3228a09630f.tar.bz2 urpmi-f1a0fe2b76e7356afdb53697efa3e3228a09630f.tar.xz urpmi-f1a0fe2b76e7356afdb53697efa3e3228a09630f.zip |
3.3-16mdk
-rw-r--r-- | urpm.pm | 4 | ||||
-rw-r--r-- | urpmi.spec | 5 |
2 files changed, 6 insertions, 3 deletions
@@ -1008,7 +1008,7 @@ sub update_media { foreach my $file (keys %{$urpm->{params}{provides}}) { $file =~ /^\// or next; foreach (keys %{$urpm->{params}{provides}{$file} || {}}) { - eval { push @{$urpm->{params}{info}{$_}{provides}}, $file }; + eval { push @{$urpm->{params}{info}{$_}{provides}}, $file }; #- HACK } } @@ -1451,7 +1451,7 @@ sub parse_synthesis { #- an already existing entries has been found, so #- add additional information (except name or info). foreach my $tag (keys %info) { - $tag ne 'name' && $tag ne 'info' and $found->{$tag} ||= $info{$tag}; + eval { $tag ne 'name' && $tag ne 'info' and $found->{$tag} ||= $info{$tag}; }; #- HACK } $serial and $found->{serial} ||= $serial; $size and $found->{size} ||= $size; @@ -2,7 +2,7 @@ Name: urpmi Version: 3.3 -Release: 15mdk +Release: 16mdk License: GPL Source0: %{name}.tar.bz2 Source1: %{name}.logrotate @@ -144,6 +144,9 @@ fi %changelog +* Wed Feb 27 2002 François Pons <fpons@mandrakesoft.com> 3.3-16mdk +- fixed possible problem on urpmi update db (perl die workarounded). + * Mon Feb 25 2002 François Pons <fpons@mandrakesoft.com> 3.3-15mdk - fixed not to require Fcntl module (in perl package). - fixed bad behaviour on src package as user (no message). |