1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/** \ingroup rpmdep
* \file lib/rpmlibprov.c
*/
#include "system.h"
#include <rpmlib.h>
#include "debug.h"
static struct rpmlibProvides {
const char * featureName;
const char * featureEVR;
int featureFlags;
const char * featureDescription;
} rpmlibProvides[] = {
{ "rpmlib(VersionedDependencies)", "3.0.3-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
"PreReq:, Provides:, and Obsoletes: dependencies support versions." },
{ "rpmlib(CompressedFileNames)", "3.0.4-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
"file names stored as (dirName,BaseName,dirIndex) tuple, not as path."},
{ "rpmlib(PayloadIsBzip2)", "3.0.5-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
"package payload compressed using bzip2." },
{ "rpmlib(PayloadFilesHavePrefix)", "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
"package payload files have \"./\" prefix." },
{ "rpmlib(ExplicitPackageProvide)", "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
"package name-version-release not implicitly provided." },
{ NULL, NULL, 0 }
};
void rpmShowRpmlibProvides(FILE * fp)
{
const struct rpmlibProvides * rlp;
for (rlp = rpmlibProvides; rlp->featureName != NULL; rlp++) {
fprintf(fp, " %s", rlp->featureName);
if (rlp->featureFlags)
printDepFlags(fp, rlp->featureEVR, rlp->featureFlags);
fprintf(fp, "\n");
fprintf(fp, "\t%s\n", rlp->featureDescription);
}
}
int rpmCheckRpmlibProvides(const char * keyName, const char * keyEVR,
int keyFlags)
{
const struct rpmlibProvides * rlp;
int rc = 0;
for (rlp = rpmlibProvides; rlp->featureName != NULL; rlp++) {
rc = rpmRangesOverlap(keyName, keyEVR, keyFlags,
rlp->featureName, rlp->featureEVR, rlp->featureFlags);
if (rc)
break;
}
return rc;
}
int rpmGetRpmlibProvides(const char *** provNames, int ** provFlags,
const char *** provVersions)
{
const char ** names, ** versions;
int * flags;
int n = 0;
while (rpmlibProvides[n].featureName != NULL)
n++;
names = xmalloc(sizeof(*names) * (n+1));
versions = xmalloc(sizeof(*versions) * (n+1));
flags = xmalloc(sizeof(*flags) * (n+1));
for (n = 0; rpmlibProvides[n].featureName != NULL; n++) {
names[n] = rpmlibProvides[n].featureName;
flags[n] = rpmlibProvides[n].featureFlags;
versions[n] = rpmlibProvides[n].featureEVR;
}
names[n] = NULL;
versions[n] = NULL;
flags[n] = -1;
*provNames = names;
*provFlags = flags;
*provVersions = versions;
return n;
}
|