index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2015-12-14 13:39:58 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-12-15 15:12:32 +1000 |
commit | 8d3bd4ec13940da70f946e6e63d59a05c89cbb50 (patch) | |
tree | fe1d4e60c27d4f2797b1517aae8f88c722339d33 /src | |
parent | 132ec4c3b9f761fb76ff9cf567f3723db62d72df (diff) |
-rw-r--r-- | src/pacman/callback.c | 4 |
diff --git a/src/pacman/callback.c b/src/pacman/callback.c index b8ded3d0..a71d94ba 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -188,6 +188,9 @@ void cb_event(alpm_event_t *event) case ALPM_EVENT_INTERCONFLICTS_START: printf(_("looking for conflicting packages...\n")); break; + case ALPM_EVENT_TRANSACTION_START: + colon_printf(_("Processing package changes...\n")); + break; case ALPM_EVENT_PACKAGE_OPERATION_START: if(config->noprogressbar) { alpm_event_package_operation_t *e = &event->package_operation; @@ -327,6 +330,7 @@ void cb_event(alpm_event_t *event) case ALPM_EVENT_CHECKDEPS_DONE: case ALPM_EVENT_RESOLVEDEPS_DONE: case ALPM_EVENT_INTERCONFLICTS_DONE: + case ALPM_EVENT_TRANSACTION_DONE: case ALPM_EVENT_INTEGRITY_DONE: case ALPM_EVENT_KEYRING_DONE: case ALPM_EVENT_KEY_DOWNLOAD_DONE: |