removed all code related to PM_SYNC_TYPE_DEPEND
This commit is contained in:
parent
86e5c8bc06
commit
77be3f53e9
2 changed files with 2 additions and 12 deletions
|
@ -183,8 +183,7 @@ void *alpm_grp_getinfo(PM_GRP *grp, unsigned char parm);
|
|||
enum {
|
||||
PM_SYNC_TYPE_REPLACE = 1,
|
||||
PM_SYNC_TYPE_UPGRADE,
|
||||
PM_SYNC_TYPE_DEPEND,
|
||||
PM_SYNC_TYPE_REMOVE
|
||||
PM_SYNC_TYPE_DEPEND
|
||||
};
|
||||
/* Info parameters */
|
||||
enum {
|
||||
|
|
|
@ -621,7 +621,6 @@ int sync_commit(pmtrans_t *trans, pmdb_t *db_local, PMList **data)
|
|||
PMList *i;
|
||||
pmtrans_t *tr = NULL;
|
||||
int replaces = 0;
|
||||
int removal = 0;
|
||||
|
||||
ASSERT(db_local != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
||||
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
||||
|
@ -652,17 +651,9 @@ int sync_commit(pmtrans_t *trans, pmdb_t *db_local, PMList **data)
|
|||
replaces++;
|
||||
}
|
||||
}
|
||||
} else if(sync->type == PM_SYNC_TYPE_REMOVE) {
|
||||
pmpkg_t *pkg = sync->data;
|
||||
if(!pkg_isin(pkg, tr->packages)) {
|
||||
if(trans_addtarget(tr, pkg->name) == -1) {
|
||||
goto error;
|
||||
}
|
||||
removal++;
|
||||
}
|
||||
}
|
||||
}
|
||||
if(replaces+removal != 0) {
|
||||
if(replaces) {
|
||||
_alpm_log(PM_LOG_FLOW1, "removing conflicting and to-be-replaced packages");
|
||||
if(trans_prepare(tr, data) == -1) {
|
||||
_alpm_log(PM_LOG_ERROR, "could not prepare removal transaction");
|
||||
|
|
Loading…
Add table
Reference in a new issue