diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-07 14:08:58 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-07 14:08:58 +0000 |
commit | 078e57da51845413408d1a0a69fc68777bad8232 (patch) | |
tree | 3cbb026e295311fb70005b40ede59ea39e7764d5 /URPM.pm | |
parent | faba26647a5cbc07e8d303967ebf73742c480c9a (diff) | |
download | perl-URPM-078e57da51845413408d1a0a69fc68777bad8232.tar perl-URPM-078e57da51845413408d1a0a69fc68777bad8232.tar.gz perl-URPM-078e57da51845413408d1a0a69fc68777bad8232.tar.bz2 perl-URPM-078e57da51845413408d1a0a69fc68777bad8232.tar.xz perl-URPM-078e57da51845413408d1a0a69fc68777bad8232.zip |
- revert change introduced in 3.16 (it breaks too much, eg
superuser--priority-upgrade.t test case), and introduce
$state->{rejected_already_installed} instead
Diffstat (limited to 'URPM.pm')
-rw-r--r-- | URPM.pm | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -829,7 +829,7 @@ B<selected>: { id => { } } B<rejected>: { fullname => { - size => int, removed => bool, obsoleted => bool, installed => bool, + size => int, removed => bool, obsoleted => bool, backtrack => { # those info are only used to display why package is unselected promote => [ name ], keep => [ fullname ], unsatisfied => [ id|property ], @@ -840,6 +840,8 @@ B<rejected>: { fullname => { }, } } +B<rejected_already_installed>: { id => pkg } + B<orphans_to_remove>: [ pkg ] B<whatrequires>: { name => { id => undef } } |