General rework to support updated packages

- keep updated source and binary rpm structures
- detect and report broken requirements due to package updates
- TODO: check datatables output before stabilizing for a new release
This commit is contained in:
Silvan Calarco 2013-01-09 14:07:46 +01:00
parent 56e4ad7c6c
commit 34f9295baf
4 changed files with 168 additions and 150 deletions

View File

@ -225,7 +225,7 @@ compareRequiredList(const void *ptr1, const void *ptr2)
/* /*
* inspect multiple providing packages in providedList * inspect multiple providing packages in providedList
* and remove providers those that are obsoleted by others * and remove providers that are obsoleted by others
*/ */
int int
handleObsoletedPackages(struct configTag *ct, int archidx) handleObsoletedPackages(struct configTag *ct, int archidx)
@ -247,7 +247,8 @@ handleObsoletedPackages(struct configTag *ct, int archidx)
for (i = 0; i < prov->numproviders; i++) for (i = 0; i < prov->numproviders; i++)
for (j = 0; j < prov->provider[i]->obsoletecount; j++) for (j = 0; j < prov->provider[i]->obsoletecount; j++)
for (k = 0; k < prov->numproviders; k++) for (k = 0; k < prov->numproviders; k++)
if (!strcmp(prov->provider[i]->obsoletename[j],prov->provider[k]->name)) { if (!strcmp(prov->provider[i]->obsoletename[j],prov->provider[k]->name)
&& strcmp(prov->provider[i]->name,prov->provider[k]->name)) {
if (prov->provider[i]->obsoleteflags[j] & (RPMSENSE_EQUAL|RPMSENSE_GREATER|RPMSENSE_LESS)) { if (prov->provider[i]->obsoleteflags[j] & (RPMSENSE_EQUAL|RPMSENSE_GREATER|RPMSENSE_LESS)) {
snprintf(buf, PATH_MAX, "%s-%s",prov->provider[k]->version,prov->provider[k]->release); snprintf(buf, PATH_MAX, "%s-%s",prov->provider[k]->version,prov->provider[k]->release);
if (!checkVersionWithFlags( if (!checkVersionWithFlags(
@ -324,7 +325,7 @@ handleObsoletedPackages(struct configTag *ct, int archidx)
currheader->obsoletename[j],0); currheader->obsoletename[j],0);
if (prov) { if (prov) {
for (i = 0; i < prov->numproviders; i++) { for (i = 0; i < prov->numproviders; i++) {
if (prov->provider[i] != currheader) { if (strcmp(currheader->name,prov->provider[i]->name)) {
prov->provider[i]->obsoleted = 1; prov->provider[i]->obsoleted = 1;
if (!strcmp(prov->name,prov->provider[i]->name)) { if (!strcmp(prov->name,prov->provider[i]->name)) {
snprintf(buf, PATH_MAX, "%s(%s,%s) obsoletes %s(%s,%s)", snprintf(buf, PATH_MAX, "%s(%s,%s) obsoletes %s(%s,%s)",
@ -376,9 +377,9 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
while (currheader) { while (currheader) {
scanheader = ct->headerlist[archidx]; scanheader = ct->headerlist[archidx];
currheader->requirelist = NULL; currheader->requirelist = NULL;
if ((!currheader->obsoleted) && (currheader->next) && (!strcmp(currheader->name,currheader->next->name))) { if ((!currheader->obsoleted) && (currheader->next) && (currheader->sourceheader->updatingparent)) {
// mark obsoleted any package with same name in upper level repositories // mark obsoleted any package with same name in upper level repositories
if (currheader->altrepository < currheader->next->altrepository) { if (currheader->altrepository < currheader->sourceheader->updatingparent->altrepository) {
currheader->obsoleted = 1; currheader->obsoleted = 1;
if (checkVersionWithFlags( if (checkVersionWithFlags(
currheader->version, currheader->version,
@ -394,7 +395,7 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
fprintf(stderr,"Warning: %s\n",warning); fprintf(stderr,"Warning: %s\n",warning);
addWarning(currheader->sourceheader,warning); addWarning(currheader->sourceheader,warning);
} }
} else if (currheader->altrepository >= currheader->next->altrepository) { } else if (currheader->altrepository >= currheader->sourceheader->updatingparent->altrepository) {
currheader->next->obsoleted = 1; currheader->next->obsoleted = 1;
if (checkVersionWithFlags( if (checkVersionWithFlags(
currheader->version, currheader->version,
@ -413,7 +414,7 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
} }
} }
if (currheader->obsoleted) { if (currheader->obsoleted || currheader->sourceheader->updatingparent) {
currheader = currheader->next; currheader = currheader->next;
continue; continue;
} }
@ -471,16 +472,41 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
addWarning(currheader->sourceheader,warning); addWarning(currheader->sourceheader,warning);
} }
} else { /* provided->numproviders > 0 */ } else { /* provided->numproviders > 0 */
/* warn about provides only provided by older packages */
k=0;
for (j = 0; j < provided->numproviders; j++) {
if (provided->provider[j]->sourceheader->updatingparent &&
provided->provider[j]->sourceheader->updatingparent->firstchild[archidx] && /* skip if not built for arch */
!currheader->obsoleted) k++;
}
if (k == provided->numproviders) { // all provides are from older packages
snprintf(warning, PATH_MAX, "%s(%s,%s) requires %s which is only provided by older package(s):",
currheader->name,
currheader->arch,
ct->repository[currheader->altrepository]->tag,
provided->name);
for (j = 0; j < provided->numproviders; j++) {
snprintf(&warning[strlen(warning)], PATH_MAX - strlen(warning), " %s(%s,%s)",
provided->provider[j]->name,
provided->provider[j]->arch,
ct->repository[provided->provider[j]->altrepository]->tag);
}
fprintf(stderr,"Warning: %s\n",warning);
for (j = 0; j < provided->numproviders; j++) {
addWarning(provided->provider[j]->sourceheader,warning);
}
} else {
/* warn about provides provided by obsoleted packages */
k=0; k=0;
for (j = 0; j < provided->numproviders; j++) { for (j = 0; j < provided->numproviders; j++) {
if (provided->provider[j]->obsoleted && !currheader->obsoleted) k++; if (provided->provider[j]->obsoleted && !currheader->obsoleted) k++;
} }
if (k == provided->numproviders) { // all provides are obsoleted if (k == provided->numproviders) { // all provides are obsoleted
snprintf(warning, PATH_MAX, "%s needed by %s(%s,%s) is only provided by obsoleted package(s):", snprintf(warning, PATH_MAX, "%s(%s,%s) requires %s which is only provided by obsoleted package(s):",
provided->name,
currheader->name, currheader->name,
currheader->arch, currheader->arch,
ct->repository[currheader->altrepository]->tag); ct->repository[currheader->altrepository]->tag,
provided->name);
for (j = 0; j < provided->numproviders; j++) { for (j = 0; j < provided->numproviders; j++) {
snprintf(&warning[strlen(warning)], PATH_MAX - strlen(warning), " %s(%s,%s)", snprintf(&warning[strlen(warning)], PATH_MAX - strlen(warning), " %s(%s,%s)",
provided->provider[j]->name, provided->provider[j]->name,
@ -489,6 +515,10 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
} }
fprintf(stderr,"Warning: %s\n",warning); fprintf(stderr,"Warning: %s\n",warning);
addWarning(currheader->sourceheader,warning); addWarning(currheader->sourceheader,warning);
for (j = 0; j < provided->numproviders; j++) {
addWarning(provided->provider[j]->sourceheader,warning);
}
}
} }
if ((currheader->require[i]->name)[0] == '/') { if ((currheader->require[i]->name)[0] == '/') {
/* when there is a Requires: /file/requirement add provide from file tree as well */ /* when there is a Requires: /file/requirement add provide from file tree as well */

View File

@ -1,7 +1,7 @@
/* /*
* distromatic - tool for RPM based repositories * distromatic - tool for RPM based repositories
* *
* Copyright (C) 2004-2010 by Silvan Calarco <silvan.calarco@mambasoft.it> * Copyright (C) 2004-2013 by Silvan Calarco <silvan.calarco@mambasoft.it>
* Copyright (C) 2006 by Davide Madrisan <davide.madrisan@gmail.com> * Copyright (C) 2006 by Davide Madrisan <davide.madrisan@gmail.com>
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
@ -128,13 +128,23 @@ findSourcePackage(struct headerSourceList *list, char *name, char *version,
char *release, int altrepository) char *release, int altrepository)
{ {
struct headerSourceList *currheaderlist = list; struct headerSourceList *currheaderlist = list;
struct headerSourceList *oldheaderlist;
while (currheaderlist) { while (currheaderlist) {
if ((!strcmp(name, currheaderlist->name)) && if (!strcmp(name, currheaderlist->name)) {
((!release) || !strcmp(release, currheaderlist->release)) && if (((!release) || !strcmp(release, currheaderlist->release)) &&
((!version) || !strcmp(version, currheaderlist->version)) && ((!version) || !strcmp(version, currheaderlist->version)) &&
((altrepository < 0) || (altrepository == currheaderlist->altrepository))) ((altrepository < 0) || (altrepository == currheaderlist->altrepository)))
return currheaderlist; return currheaderlist;
oldheaderlist = currheaderlist->old;
while (oldheaderlist) {
if (((!release) || !strcmp(release, oldheaderlist->release)) &&
((!version) || !strcmp(version, oldheaderlist->version)) &&
((altrepository < 0) || (altrepository == oldheaderlist->altrepository)))
return oldheaderlist;
oldheaderlist = oldheaderlist->old;
}
}
currheaderlist = currheaderlist->next; currheaderlist = currheaderlist->next;
} }
@ -583,6 +593,7 @@ addToSourceHeaderList(struct headerSourceList **headersourcelist, struct configT
for (arch = 0; arch < ARCHS_MAX; arch++) { for (arch = 0; arch < ARCHS_MAX; arch++) {
newheadersourcelist->firstchild[arch] = NULL; newheadersourcelist->firstchild[arch] = NULL;
} }
newheadersourcelist->updatingparent = NULL;
newheadersourcelist->altrepository = altrepository; newheadersourcelist->altrepository = altrepository;
newheadersourcelist->firstwarning = NULL; newheadersourcelist->firstwarning = NULL;
newheadersourcelist->old = NULL; newheadersourcelist->old = NULL;
@ -685,7 +696,7 @@ addToSourceHeaderList(struct headerSourceList **headersourcelist, struct configT
newheadersourcelist->next = currheadersourcelist->next; newheadersourcelist->next = currheadersourcelist->next;
/* overriden package is not deallocated but referenced with currheadersourcelist->old */ /* overriden package is not deallocated but referenced with currheadersourcelist->old */
newheadersourcelist->old=currheadersourcelist; newheadersourcelist->old=currheadersourcelist;
currheadersourcelist=newheadersourcelist; newheadersourcelist->old->updatingparent=newheadersourcelist;
} else { } else {
/* add the new package to the list */ /* add the new package to the list */
newheadersourcelist->next = currheadersourcelist; newheadersourcelist->next = currheadersourcelist;
@ -838,8 +849,7 @@ addToHeaderList(struct configTag *ct,
strncpy(filename, namelist[cnt]->d_name,bufsize-strlen(scanpath)); strncpy(filename, namelist[cnt]->d_name,bufsize-strlen(scanpath));
altrepository=0; altrepository=0;
cnt++; cnt++;
} } else {
for (i = 0; i < ALT_REPS_MAX; i++) { for (i = 0; i < ALT_REPS_MAX; i++) {
if (altscanpath[i] && (altcnt[i] < altn[i]) && if (altscanpath[i] && (altcnt[i] < altn[i]) &&
(strncmp(currname, altnamelist[i][altcnt[i]]->d_name, bufsize) == 0)) { (strncmp(currname, altnamelist[i][altcnt[i]]->d_name, bufsize) == 0)) {
@ -857,6 +867,8 @@ addToHeaderList(struct configTag *ct,
altnamelist[i][altcnt[i]]->d_name, altscantag[i]); altnamelist[i][altcnt[i]]->d_name, altscantag[i]);
} }
} }
break;
}
} }
} }
@ -939,17 +951,6 @@ addToHeaderList(struct configTag *ct,
} else if (newheaderlist->sourcename) /* missing source header */ { } else if (newheaderlist->sourcename) /* missing source header */ {
/* checking whether the source package exists in a
different version. In this case if the SRPM package
is an update from an alternate repository don't
display any warning. */
newheaderlist->sourceheader =
findSourcePackage(ct->headersourcelist,
newheaderlist->sourcename,
NULL,
NULL,
-1);
if ((!newheaderlist->sourceheader) || if ((!newheaderlist->sourceheader) ||
(newheaderlist->sourceheader->altrepository) <= altrepository) (newheaderlist->sourceheader->altrepository) <= altrepository)
{ {
@ -983,7 +984,6 @@ addToHeaderList(struct configTag *ct,
if (!strcmp(provided->provider[j]->name,newheaderlist->name)) break; if (!strcmp(provided->provider[j]->name,newheaderlist->name)) break;
} }
/* if not add to the list of providers */ /* if not add to the list of providers */
if (j == provided->numproviders) {
provided->numproviders++; provided->numproviders++;
newprovider=malloc(sizeof(struct headerList*)*provided->numproviders); newprovider=malloc(sizeof(struct headerList*)*provided->numproviders);
for (j = 0; j < provided->numproviders-1; j++) { for (j = 0; j < provided->numproviders-1; j++) {
@ -992,7 +992,6 @@ addToHeaderList(struct configTag *ct,
newprovider[provided->numproviders-1] = newheaderlist; newprovider[provided->numproviders-1] = newheaderlist;
free(provided->provider); free(provided->provider);
provided->provider=newprovider; provided->provider=newprovider;
}
/* check if version is already provided */ /* check if version is already provided */
for (j = 0; j < provided->numversions; j++) { for (j = 0; j < provided->numversions; j++) {

View File

@ -122,6 +122,7 @@ struct headerSourceList {
struct changeLog *changelog; struct changeLog *changelog;
struct headerList *firstchild[ARCHS_MAX]; struct headerList *firstchild[ARCHS_MAX];
struct warningList *firstwarning; struct warningList *firstwarning;
struct headerSourceList *updatingparent;
}; };
struct headerStats { struct headerStats {

View File

@ -88,15 +88,20 @@ printHTMLWarnings(FILE *fout,struct configTag *configtag, struct headerSourceLis
struct stat s; struct stat s;
FILE *fin; FILE *fin;
int n; int n;
struct warningList *currwarning; struct warningList *firstwarning,*currwarning;
if (!pkg) return 0; if (!pkg) return 0;
currwarning = pkg->firstwarning;
snprintf(warningsfile,PATH_MAX,"%swarnings/%s.in",configtag->html_dir,pkg->name); snprintf(warningsfile,PATH_MAX,"%swarnings/%s.in",configtag->html_dir,pkg->name);
if (pkg->firstwarning || !stat(warningsfile,&s)) { /* find pointer to first warning also looking into old packages */
firstwarning = pkg->firstwarning;
while (!firstwarning && pkg->old) {
pkg = pkg->old;
firstwarning = pkg->firstwarning;
}
if (firstwarning || !stat(warningsfile,&s)) {
if (mode == 0) { if (mode == 0) {
fprintf(fout, fprintf(fout,
"<img src=\"%s/warning-icon.png\" title=\"", "<img src=\"%s/warning-icon.png\" title=\"",
@ -128,7 +133,9 @@ printHTMLWarnings(FILE *fout,struct configTag *configtag, struct headerSourceLis
fclose(fin); fclose(fin);
} }
while (currwarning) { currwarning = firstwarning;
while (currwarning || pkg->old) {
if (currwarning) {
if (mode == 0) { if (mode == 0) {
fprintf(fout,"&nbsp;&bull;&nbsp;%s\n",currwarning->text); fprintf(fout,"&nbsp;&bull;&nbsp;%s\n",currwarning->text);
} else if (mode == 1) { } else if (mode == 1) {
@ -136,7 +143,13 @@ printHTMLWarnings(FILE *fout,struct configTag *configtag, struct headerSourceLis
} }
currwarning = currwarning->next; currwarning = currwarning->next;
} }
if (pkg->firstwarning || !stat(warningsfile,&s)) { while (!currwarning && pkg->old) {
/* print warnings coming from updated packages */
pkg = pkg->old;
currwarning = pkg->firstwarning;
}
}
if (firstwarning || !stat(warningsfile,&s)) {
if (mode == 0) { if (mode == 0) {
fprintf(fout,"\">"); fprintf(fout,"\">");
} else if (mode == 1) { } else if (mode == 1) {
@ -1187,23 +1200,19 @@ generateHTML_SRPMSFiles(struct configTag *configtag)
currheadersourcelist->require[i]->name)) && currheadersourcelist->require[i]->name)) &&
strcmp(currheadersourcelist->name, strcmp(currheadersourcelist->name,
currheadersourcelist->require[i]->name)) { currheadersourcelist->require[i]->name)) {
if ((configtag->repository_level == 0) ||
(currheadersourcelist->require[i]->resolved->buildprovider[0]->sourceheader &&
currheadersourcelist->require[i]->resolved->buildprovider[0]->altrepository == configtag->repository_level)) {
fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a>", fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a>",
configtag->configdefaults->url_prefix, configtag->configdefaults->url_prefix,
configtag->tag, configtag->repository[currheadersourcelist->require[i]->resolved->buildprovider[0]->altrepository]->tag,
currheadersourcelist->require[i]->resolved->name, currheadersourcelist->require[i]->resolved->name,
configtag->arch[0], configtag->arch[0],
currheadersourcelist->require[i]->resolved->name); currheadersourcelist->require[i]->resolved->name);
if (configtag->repository_level > 0) { if ((configtag->repository_level > 0) &&
snprintf(buffer, PATH_MAX, "has build requirement %s which is provided in this repository", currheadersourcelist->require[i]->resolved->buildprovider[0]->sourceheader &&
(currheadersourcelist->require[i]->resolved->buildprovider[0]->altrepository == configtag->repository_level)) {
snprintf(buffer, PATH_MAX, "has build requirement %s which is only provided in this repository",
currheadersourcelist->require[i]->resolved->name); currheadersourcelist->require[i]->resolved->name);
addWarning(currheadersourcelist, buffer); addWarning(currheadersourcelist, buffer);
} }
} else {
fprintf(fout,"%s",currheadersourcelist->require[i]->resolved->name);
}
} }
} else { } else {
// multiple providers // multiple providers
@ -1212,17 +1221,12 @@ generateHTML_SRPMSFiles(struct configTag *configtag)
currheadersourcelist->require[i]->resolved->name)) currheadersourcelist->require[i]->resolved->name))
fprintf(fout,"<i>%s</i>(",currheadersourcelist->require[i]->resolved->name); fprintf(fout,"<i>%s</i>(",currheadersourcelist->require[i]->resolved->name);
for (j = 0; j < currheadersourcelist->require[i]->resolved->numbuildproviders; j++) { for (j = 0; j < currheadersourcelist->require[i]->resolved->numbuildproviders; j++) {
if ((configtag->repository_level == 0) ||
(currheadersourcelist->require[i]->resolved->buildprovider[j]->sourceheader &&
currheadersourcelist->require[i]->resolved->buildprovider[j]->altrepository == configtag->repository_level))
fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a>", fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a>",
configtag->configdefaults->url_prefix, configtag->configdefaults->url_prefix,
configtag->tag, configtag->repository[currheadersourcelist->require[i]->resolved->buildprovider[j]->altrepository]->tag,
currheadersourcelist->require[i]->resolved->buildprovider[j]->name, currheadersourcelist->require[i]->resolved->buildprovider[j]->name,
configtag->arch[0], configtag->arch[0],
currheadersourcelist->require[i]->resolved->buildprovider[j]->name); currheadersourcelist->require[i]->resolved->buildprovider[j]->name);
else
fprintf(fout,"%s",currheadersourcelist->require[i]->resolved->buildprovider[j]->name);
if (j+1 < currheadersourcelist->require[i]->resolved->numbuildproviders) fprintf(fout,"|"); if (j+1 < currheadersourcelist->require[i]->resolved->numbuildproviders) fprintf(fout,"|");
} }
fprintf(fout,")"); fprintf(fout,")");
@ -1612,19 +1616,16 @@ generateHTMLFiles(struct configTag *ct, int arch)
currheaderlist->require[i]->resolved->provider[0]->name)) && currheaderlist->require[i]->resolved->provider[0]->name)) &&
strcmp(currheaderlist->name, strcmp(currheaderlist->name,
currheaderlist->require[i]->resolved->provider[0]->name)) { currheaderlist->require[i]->resolved->provider[0]->name)) {
if ((ct->repository_level == 0) ||
(currheaderlist->require[i]->resolved->provider[0]->sourceheader &&
currheaderlist->require[i]->resolved->provider[0]->altrepository == ct->repository_level)) {
fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a> ", fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a> ",
ct->configdefaults->url_prefix, ct->configdefaults->url_prefix,
ct->tag, ct->repository[currheaderlist->require[i]->resolved->provider[0]->altrepository]->tag,
currheaderlist->require[i]->resolved->provider[0]->name, currheaderlist->require[i]->resolved->provider[0]->name,
ct->arch[arch], ct->arch[arch],
currheaderlist->require[i]->resolved->provider[0]->name); currheaderlist->require[i]->resolved->provider[0]->name);
if ((ct->repository_level > 0) && if ((ct->repository_level > 0) &&
(currheaderlist->sourceheader != currheaderlist->require[i]->resolved->provider[0]->sourceheader)) { (currheaderlist->sourceheader != currheaderlist->require[i]->resolved->provider[0]->sourceheader) &&
snprintf(buffer, PATH_MAX, "%s(%s,%s) requires %s(%s,%s) which is in this repository", (currheaderlist->require[i]->resolved->provider[0]->altrepository == ct->repository_level)) {
snprintf(buffer, PATH_MAX, "%s(%s,%s) requires %s(%s,%s) which is only in this repository",
currheaderlist->name, currheaderlist->name,
ct->arch[arch], ct->arch[arch],
ct->repository[currheaderlist->altrepository]->tag, ct->repository[currheaderlist->altrepository]->tag,
@ -1633,8 +1634,6 @@ generateHTMLFiles(struct configTag *ct, int arch)
ct->repository[currheaderlist->require[i]->resolved->provider[0]->altrepository]->tag); ct->repository[currheaderlist->require[i]->resolved->provider[0]->altrepository]->tag);
addWarning(currheaderlist->sourceheader, buffer); addWarning(currheaderlist->sourceheader, buffer);
} }
} else
fprintf(fout,"%s ",currheaderlist->require[i]->resolved->provider[0]->name);
} }
} else { } else {
// multiple providers // multiple providers
@ -1645,17 +1644,12 @@ generateHTMLFiles(struct configTag *ct, int arch)
currheaderlist->require[i]->resolved->name)) { currheaderlist->require[i]->resolved->name)) {
fprintf(fout,"<i>%s</i>(",currheaderlist->require[i]->resolved->name); fprintf(fout,"<i>%s</i>(",currheaderlist->require[i]->resolved->name);
for (j = 0; j < currheaderlist->require[i]->resolved->numproviders; j++) { for (j = 0; j < currheaderlist->require[i]->resolved->numproviders; j++) {
if ((ct->repository_level == 0) ||
(currheaderlist->require[i]->resolved->provider[j]->sourceheader &&
currheaderlist->require[i]->resolved->provider[j]->altrepository == ct->repository_level))
fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a>", fprintf(fout,"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s</a>",
ct->configdefaults->url_prefix, ct->configdefaults->url_prefix,
ct->tag, ct->repository[currheaderlist->require[i]->resolved->provider[j]->altrepository]->tag,
currheaderlist->require[i]->resolved->provider[j]->name, currheaderlist->require[i]->resolved->provider[j]->name,
ct->arch[arch], ct->arch[arch],
currheaderlist->require[i]->resolved->provider[j]->name); currheaderlist->require[i]->resolved->provider[j]->name);
else
fprintf(fout,"%s",currheaderlist->require[i]->resolved->provider[j]->name);
if (j+1 < currheaderlist->require[i]->resolved->numproviders) fprintf(fout,"|"); if (j+1 < currheaderlist->require[i]->resolved->numproviders) fprintf(fout,"|");
} }
fprintf(fout,") "); fprintf(fout,") ");
@ -1680,7 +1674,7 @@ generateHTMLFiles(struct configTag *ct, int arch)
fprintf(fout, fprintf(fout,
"<a href=\"%stag=%s&amp;pkg=%s.%s\">%s(%s)</a> ", "<a href=\"%stag=%s&amp;pkg=%s.%s\">%s(%s)</a> ",
ct->configdefaults->url_prefix, ct->configdefaults->url_prefix,
ct->tag, ct->repository[auxheaderlist->altrepository]->tag,
auxheaderlist->name, auxheaderlist->name,
ct->arch[arch], ct->arch[arch],
auxheaderlist->name, auxheaderlist->name,
@ -1708,18 +1702,12 @@ generateHTMLFiles(struct configTag *ct, int arch)
for (j = 0; j < auxheadersourcelist->require[i]->resolved->numbuildproviders; j++) { for (j = 0; j < auxheadersourcelist->require[i]->resolved->numbuildproviders; j++) {
if (!strcmp(auxheadersourcelist->require[i]->resolved->buildprovider[j]->name, if (!strcmp(auxheadersourcelist->require[i]->resolved->buildprovider[j]->name,
currheaderlist->name)) { currheaderlist->name)) {
if ((ct->repository_level == 0) || auxheadersourcelist->altrepository == ct->repository_level) {
fprintf(fout, fprintf(fout,
"<a href=\"%stag=%s&amp;pkg=%s.source\">%s</a> ", "<a href=\"%stag=%s&amp;pkg=%s.source\">%s</a> ",
ct->configdefaults->url_prefix, ct->configdefaults->url_prefix,
ct->tag, ct->repository[auxheadersourcelist->altrepository]->tag,
auxheadersourcelist->name, auxheadersourcelist->name,
auxheadersourcelist->name); auxheadersourcelist->name);
} else {
fprintf(fout,
"%s ",
auxheadersourcelist->name);
}
found=1; found=1;
} }
} }