mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-23 00:08:50 -05:00
Make struct pmconflict_t public
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
bdf00d3dbd
commit
19fcc74016
@ -92,7 +92,13 @@ typedef struct __pmgrp_t pmgrp_t;
|
||||
typedef struct __pmtrans_t pmtrans_t;
|
||||
typedef struct __pmdepend_t pmdepend_t;
|
||||
typedef struct __pmdepmissing_t pmdepmissing_t;
|
||||
typedef struct __pmconflict_t pmconflict_t;
|
||||
|
||||
/** Conflict */
|
||||
typedef struct _pmconflict_t {
|
||||
char *package1;
|
||||
char *package2;
|
||||
char *reason;
|
||||
} pmconflict_t;
|
||||
|
||||
/** File conflict */
|
||||
typedef struct _pmfileconflict_t {
|
||||
@ -928,10 +934,6 @@ const char *alpm_miss_get_causingpkg(const pmdepmissing_t *miss);
|
||||
|
||||
alpm_list_t *alpm_checkconflicts(pmhandle_t *handle, alpm_list_t *pkglist);
|
||||
|
||||
const char *alpm_conflict_get_package1(pmconflict_t *conflict);
|
||||
const char *alpm_conflict_get_package2(pmconflict_t *conflict);
|
||||
const char *alpm_conflict_get_reason(pmconflict_t *conflict);
|
||||
|
||||
/** Returns the type of version constraint.
|
||||
* @param dep a dependency info structure
|
||||
* @return the type of version constraint (PM_DEP_MOD_ANY if no version
|
||||
|
@ -547,22 +547,4 @@ alpm_list_t *_alpm_db_find_fileconflicts(pmhandle_t *handle,
|
||||
return conflicts;
|
||||
}
|
||||
|
||||
const char SYMEXPORT *alpm_conflict_get_package1(pmconflict_t *conflict)
|
||||
{
|
||||
ASSERT(conflict != NULL, return NULL);
|
||||
return conflict->package1;
|
||||
}
|
||||
|
||||
const char SYMEXPORT *alpm_conflict_get_package2(pmconflict_t *conflict)
|
||||
{
|
||||
ASSERT(conflict != NULL, return NULL);
|
||||
return conflict->package2;
|
||||
}
|
||||
|
||||
const char SYMEXPORT *alpm_conflict_get_reason(pmconflict_t *conflict)
|
||||
{
|
||||
ASSERT(conflict != NULL, return NULL);
|
||||
return conflict->reason;
|
||||
}
|
||||
|
||||
/* vim: set ts=2 sw=2 noet: */
|
||||
|
@ -24,12 +24,6 @@
|
||||
#include "db.h"
|
||||
#include "package.h"
|
||||
|
||||
struct __pmconflict_t {
|
||||
char *package1;
|
||||
char *package2;
|
||||
char *reason;
|
||||
};
|
||||
|
||||
pmconflict_t *_alpm_conflict_dup(const pmconflict_t *conflict);
|
||||
void _alpm_conflict_free(pmconflict_t *conflict);
|
||||
alpm_list_t *_alpm_innerconflicts(pmhandle_t *handle, alpm_list_t *packages);
|
||||
|
@ -795,14 +795,14 @@ static int sync_trans(alpm_list_t *targets)
|
||||
case PM_ERR_CONFLICTING_DEPS:
|
||||
for(i = data; i; i = alpm_list_next(i)) {
|
||||
pmconflict_t *conflict = alpm_list_getdata(i);
|
||||
const char *package1 = alpm_conflict_get_package1(conflict);
|
||||
const char *package2 = alpm_conflict_get_package2(conflict);
|
||||
const char *reason = alpm_conflict_get_reason(conflict);
|
||||
/* only print reason if it contains new information */
|
||||
if(strcmp(package1, reason) == 0 || strcmp(package2, reason) == 0) {
|
||||
printf(_(":: %s and %s are in conflict\n"), package1, package2);
|
||||
if(strcmp(conflict->package1, conflict->reason) == 0 ||
|
||||
strcmp(conflict->package2, conflict->reason) == 0) {
|
||||
printf(_(":: %s and %s are in conflict\n"),
|
||||
conflict->package1, conflict->package2);
|
||||
} else {
|
||||
printf(_(":: %s and %s are in conflict (%s)\n"), package1, package2, reason);
|
||||
printf(_(":: %s and %s are in conflict (%s)\n"),
|
||||
conflict->package1, conflict->package2, conflict->reason);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -121,14 +121,13 @@ int pacman_upgrade(alpm_list_t *targets)
|
||||
case PM_ERR_CONFLICTING_DEPS:
|
||||
for(i = data; i; i = alpm_list_next(i)) {
|
||||
pmconflict_t *conflict = alpm_list_getdata(i);
|
||||
const char *package1 = alpm_conflict_get_package1(conflict);
|
||||
const char *package2 = alpm_conflict_get_package2(conflict);
|
||||
const char *reason = alpm_conflict_get_reason(conflict);
|
||||
/* only print reason if it contains new information */
|
||||
if(strcmp(package1, reason) == 0 || strcmp(package2, reason) == 0) {
|
||||
printf(_(":: %s and %s are in conflict\n"), package1, package2);
|
||||
if(strcmp(conflict->package1, conflict->reason) == 0 ||
|
||||
strcmp(conflict->package2, conflict->reason) == 0) {
|
||||
printf(_(":: %s and %s are in conflict\n"),
|
||||
conflict->package1, conflict->package2);
|
||||
} else {
|
||||
printf(_(":: %s and %s are in conflict (%s)\n"), package1, package2, reason);
|
||||
printf(_(":: %s and %s are in conflict (%s)\n"),
|
||||
conflict->package1, conflict->package2, conflict->reason);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -120,8 +120,8 @@ static int checkconflicts(alpm_list_t *pkglist)
|
||||
data = alpm_checkconflicts(handle, pkglist);
|
||||
for(i = data; i; i = i->next) {
|
||||
pmconflict_t *conflict = alpm_list_getdata(i);
|
||||
printf("%s conflicts with %s\n", alpm_conflict_get_package1(conflict),
|
||||
alpm_conflict_get_package2(conflict));
|
||||
printf("%s conflicts with %s\n",
|
||||
conflict->package1, conflict->package2);
|
||||
ret++;
|
||||
}
|
||||
FREELIST(data);
|
||||
|
Loading…
Reference in New Issue
Block a user