mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-16 14:25:21 -05:00
Fixed some logging issues (patch from VMiklos <vmiklos@frugalware.org>)
This commit is contained in:
parent
b062a21d2e
commit
cc1c5b163b
@ -327,6 +327,8 @@ int add_commit(pmtrans_t *trans, pmdb_t *db)
|
|||||||
/* we'll need to save some record for backup checks later */
|
/* we'll need to save some record for backup checks later */
|
||||||
oldpkg = pkg_new();
|
oldpkg = pkg_new();
|
||||||
if(oldpkg) {
|
if(oldpkg) {
|
||||||
|
strncpy(oldpkg->name, local->name, PKG_NAME_LEN);
|
||||||
|
strncpy(oldpkg->version, local->version, PKG_VERSION_LEN);
|
||||||
if(!(local->infolevel & INFRQ_FILES)) {
|
if(!(local->infolevel & INFRQ_FILES)) {
|
||||||
char name[PKG_FULLNAME_LEN];
|
char name[PKG_FULLNAME_LEN];
|
||||||
snprintf(name, PKG_FULLNAME_LEN, "%s-%s", local->name, local->version);
|
snprintf(name, PKG_FULLNAME_LEN, "%s-%s", local->name, local->version);
|
||||||
@ -691,12 +693,9 @@ int add_commit(pmtrans_t *trans, pmdb_t *db)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(pmo_upgrade) {
|
if(pmo_upgrade) {
|
||||||
EVENT(trans, PM_TRANS_EVT_UPGRADE_DONE, info, NULL);
|
EVENT(trans, PM_TRANS_EVT_UPGRADE_DONE, oldpkg, info);
|
||||||
alpm_logaction("upgraded %s (%s -> %s)", info->name,
|
|
||||||
oldpkg ? oldpkg->version : NULL, info->version);
|
|
||||||
} else {
|
} else {
|
||||||
EVENT(trans, PM_TRANS_EVT_ADD_DONE, info, NULL);
|
EVENT(trans, PM_TRANS_EVT_ADD_DONE, info, NULL);
|
||||||
alpm_logaction("installed %s (%s)", info->name, info->version);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FREEPKG(oldpkg);
|
FREEPKG(oldpkg);
|
||||||
|
@ -293,7 +293,6 @@ int remove_commit(pmtrans_t *trans, pmdb_t *db)
|
|||||||
|
|
||||||
if(trans->type != PM_TRANS_TYPE_UPGRADE) {
|
if(trans->type != PM_TRANS_TYPE_UPGRADE) {
|
||||||
EVENT(trans, PM_TRANS_EVT_REMOVE_DONE, info, NULL);
|
EVENT(trans, PM_TRANS_EVT_REMOVE_DONE, info, NULL);
|
||||||
alpm_logaction("removed %s (%s)", info->name, info->version);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user