diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/install.pm | 2 | ||||
-rw-r--r-- | urpm/main_loop.pm | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -13,6 +13,8 @@ - urpmi: o do not say "files are missing" when the downloaded rpm is corrupted o --test: only display "Installation is possible" when it is the case (#29837) + o fix "using one big transaction" that occurs when using --keep + (#30198) (part of the fix is in perl-URPM 3.09) - bash-completion: o restore available-pkgs completion using "urpmq --list" (guillomovitch) (but only if COMP_URPMI_HDLISTS is set since it's slow) diff --git a/urpm/install.pm b/urpm/install.pm index bbfa8183..545cdbb0 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -51,7 +51,7 @@ sub build_transaction_set_ { local $SIG{QUIT} = $sig_handler; #- build transaction set... - $urpm->build_transaction_set($db, $state, split_length => $options{split_length}); + $urpm->build_transaction_set($db, $state, split_length => $options{split_length}, keep => $options{keep}); } } diff --git a/urpm/main_loop.pm b/urpm/main_loop.pm index 9cdc5872..506b2d94 100644 --- a/urpm/main_loop.pm +++ b/urpm/main_loop.pm @@ -62,6 +62,7 @@ $callbacks->{post_removable} and $callbacks->{post_removable}->(); urpm::install::build_transaction_set_($urpm, $state, rpmdb => $env && "$env/rpmdb.cz", nodeps => $urpm->{options}{'allow-nodeps'} || $urpm->{options}{'allow-force'}, + keep => $urpm->{options}{keep}, split_level => $urpm->{options}{'split-level'}, split_length => !$test && $urpm->{options}{'split-length'}); |