/* * rpmdata.h : describes the data gathered for each RPM analyzed. * * $Id: rpmdata.h,v 1.4 1997/11/11 22:28:11 veillard Exp $ * * $Log: rpmdata.h,v $ * Revision 1.4 1997/11/11 22:28:11 veillard * Added the support for dependancies on resources, Daniel. * * Revision 1.3 1997/11/11 21:18:53 veillard * Improved a lot, removed bugs related to sorting, Daniel. * * Revision 1.2 1997/11/11 11:10:10 veillard * State after one night of work, Daniel * * Revision 1.1.1.1 1997/11/11 07:12:32 veillard * First revision of RPM-Check * */ #ifndef __RPMDATA_H__ #define __RPMDATA_H__ #include /* * structure associated with an rpm */ #define MAX_RESS 35 #define MAX_REQU 35 typedef struct rpm_data { struct rpm_data *next; /* next in the list */ char *filename; /* name of the file */ char *name; /* name of the software */ char *version; /* version of the software */ char *release; /* software release */ char *arch; /* the target platform */ char *distribution; /* general OS distribution */ char *vendor; /* general OS vendor */ char *group; /* type of software */ char *summary; /* 1 line summary */ char *description; /* short description */ char *srcrpm; /* source RPM */ time_t date; /* date of packaging */ int_32 size; /* size of the software */ char *host; /* build host */ int nb_ressources; /* #of ressources provided */ struct rpm_ressource * ressources[MAX_RESS]; /* list of them */ int nb_requires; /* #of ressources required */ struct rpm_ressource * requires[MAX_REQU]; /* list of them */ } rpmData, *rpmDataPtr; /* * structure associated with a resource */ #define MAX_PROVIDE 30 typedef struct rpm_ressource { struct rpm_ressource *next; /* next in the list */ char *name; /* name of the ressource */ int nb_provider; /* #of ressources provided */ struct rpm_data * provider[MAX_PROVIDE];/* list of them */ } rpmRess, *rpmRessPtr; extern rpmDataPtr rpmList; extern rpmRessPtr ressList; extern void rpmDataPrint(rpmDataPtr rpm); extern void rpmDataPrintAll(void); extern rpmRessPtr rpmRessAdd(char *ress, rpmDataPtr rpm); extern rpmRessPtr rpmRequAdd(char *requ, rpmDataPtr rpm); extern int rpmOpen(char *nameRpm); void rpmGroupSort(void); void rpmDistribSort(void); void rpmVendorSort(void); void rpmDateSort(void); #endif /* __RPMDATA_H__ */