handleObsoletedPackages(): fix: prevent upper repositories packages to obsolete packages in current repository; code formatting fixes
This commit is contained in:
parent
fac5730549
commit
93936cac50
@ -235,13 +235,14 @@ int generateSQLite_provided(struct configTag* ct, sqlite3 *db, int arch) {
|
||||
provided->flags,
|
||||
provided->numproviders);
|
||||
if (sqlite3_prepare_v3(db, sqlite3_query, -1, 0, &stmt, NULL)) {
|
||||
fprintf(stderr, "ERROR: sqlite3_prepare_v2: %s (%s)\n", sqlite3_errmsg(db), sqlite3_query);
|
||||
fprintf(stderr, "ERROR: sqlite3_prepare_v2: %s (%s)\n",
|
||||
sqlite3_errmsg(db), sqlite3_query);
|
||||
return 1;
|
||||
}
|
||||
sqlite3_bind_text(stmt, 1, provided->name, -1, SQLITE_STATIC);
|
||||
if (sqlite3_step(stmt) != SQLITE_DONE) {
|
||||
fprintf(stderr, "ERROR: SQLite: (%s) %s\n", sqlite3_query, sqlite3_errmsg(db));
|
||||
return 3;
|
||||
fprintf(stderr, "ERROR: SQLite: (%s %s) %s; ignoring\n", sqlite3_query,
|
||||
provided->name, sqlite3_errmsg(db));
|
||||
}
|
||||
sqlite3_finalize(stmt);
|
||||
}
|
||||
|
@ -288,7 +288,9 @@ handleObsoletedPackages(struct configTag *ct, int archidx)
|
||||
}
|
||||
currheader = currheader -> nextbrother;
|
||||
}
|
||||
} else {
|
||||
obs[k]=i;
|
||||
} else if (prov->provider[i]->altrepository == ct->repository_level) {
|
||||
// NOTE: don't obsolete if it comes from an upper level repository
|
||||
prov->provider[k]->obsoleted = 1;
|
||||
snprintf(buf, PATH_MAX, "%s(%s,%s) obsoletes %s(%s,%s)",
|
||||
prov->provider[i]->name,
|
||||
@ -299,9 +301,9 @@ handleObsoletedPackages(struct configTag *ct, int archidx)
|
||||
ct->repository[prov->provider[k]->altrepository]->tag);
|
||||
addWarning(prov->provider[i]->sourceheader, buf);
|
||||
logmsg(LOG_WARNING,"%s", buf);
|
||||
}
|
||||
obs[k]=i;
|
||||
}
|
||||
}
|
||||
|
||||
// now delete found obsoleted providers
|
||||
j = prov->numproviders;
|
||||
@ -325,7 +327,6 @@ handleObsoletedPackages(struct configTag *ct, int archidx)
|
||||
prov->numproviders = j;
|
||||
}
|
||||
}
|
||||
|
||||
prov=prov->next;
|
||||
}
|
||||
|
||||
@ -598,7 +599,8 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
|
||||
/* updated packages: ignore check with upstream package */
|
||||
if ((foundprovider >= 0) &&
|
||||
!strcmp(provided->provider[foundprovider]->name,provided->provider[j]->name) &&
|
||||
provided->provider[foundprovider]->altrepository < provided->provider[j]->altrepository) {
|
||||
provided->provider[foundprovider]->altrepository < provided->provider[j]->altrepository)
|
||||
{
|
||||
found -= 1;
|
||||
foundupstreamprovider = foundprovider;
|
||||
foundprovider = -1;
|
||||
@ -618,9 +620,6 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
|
||||
foundprovider = j;
|
||||
}
|
||||
}
|
||||
/*if (!strcmp(provided->name,"pkgconfig(gio-2.0)"))
|
||||
printf("provided->name=pkgconfig(gio-2.0) found=%d foundprovider=%d foundupstreamprovider=%d provided->version[j]=%s\n",
|
||||
found, foundprovider, foundupstreamprovider, provided->version[j]);*/
|
||||
} /* for */
|
||||
if ((found >= 1) && (!foundupstreamprovider) &&
|
||||
(currheader->altrepository != 0) &&
|
||||
@ -628,8 +627,7 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
|
||||
(provided->provider[foundprovider]->sourceheader != currheader->sourceheader) &&
|
||||
(provided->provider[foundprovider]->altrepository == currheader->altrepository)) {
|
||||
snprintf(warning, PATH_MAX, "%s(%s,%s) requires %s(%s,%s) because it needs %s=%s",
|
||||
currheader->name,
|
||||
currheader->arch,
|
||||
currheader->name, currheader->arch,
|
||||
ct->repository[currheader->altrepository]->tag,
|
||||
provided->provider[foundprovider]->name,
|
||||
provided->provider[foundprovider]->arch,
|
||||
@ -670,10 +668,9 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
|
||||
}
|
||||
}
|
||||
}
|
||||
} /* for */
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
currheader->require[i]->resolved=provided;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user