[pacman-dev] [PATCH] Fix missing [removal] output

Allan McRae allan at archlinux.org
Wed Jan 18 20:33:42 EST 2012


Currently, a transaction is considered to be purely package removal
until the first package install is found.  This resulted in the
removed packages at the start of a combined upgrade/removal transaction
not getting the "[removal]" output.

Fixes FS#27981.

Signed-off-by: Allan McRae <allan at archlinux.org>
---
 src/pacman/util.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/pacman/util.c b/src/pacman/util.c
index 40690e8..2eac429 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -898,8 +898,12 @@ static void _display_targets(alpm_list_t *targets, int verbose)
 			/* add up size of all removed packages */
 			rsize += alpm_pkg_get_isize(target->remove);
 		}
+	}
+
+	/* form data for both verbose and non-verbose display */
+	for(i = targets; i; i = alpm_list_next(i)) {
+		pm_target_t *target = i->data;
 
-		/* form data for both verbose and non-verbose display */
 		rows = alpm_list_add(rows, create_verbose_row(target, show_dl_size));
 		if(target->install) {
 			pm_asprintf(&str, "%s-%s", alpm_pkg_get_name(target->install),
-- 
1.7.8.3



More information about the pacman-dev mailing list