blob: 28d73697abadcd79926a78da09e9a105ba812103 (
plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
#ifndef _SPEC_H_
#define _SPEC_H_
#include "header.h"
#include "stringbuf.h"
#include "macro.h"
#if 0
struct ReqProvTrigger {
int flags;
char *name;
char *version;
int index; /* Only used for triggers */
struct ReqProvTrigger *next;
};
#endif
#define RPMBUILD_ISSOURCE 1
#define RPMBUILD_ISPATCH (1 << 1)
#define RPMBUILD_ISICON (1 << 2)
#define RPMBUILD_ISNO (1 << 3)
#define RPMBUILD_DEFAULT_LANG "C"
struct Source {
char *fullSource;
char *source; /* Pointer into fullSource */
int flags;
int num;
struct Source *next;
};
struct ReadLevelEntry {
int reading;
struct ReadLevelEntry *next;
};
struct SpecStruct {
char *specFile;
char *sourceRpmName;
FILE *file;
char readBuf[BUFSIZ];
char *readPtr;
char line[BUFSIZ];
int lineNum;
struct ReadLevelEntry *readStack;
Header buildRestrictions;
struct SpecStruct **buildArchitectureSpecs;
char ** buildArchitectures;
int buildArchitectureCount;
int inBuildArchitectures;
int gotBuildRoot;
char *buildRoot;
char *buildSubdir;
char *docDir;
char *passPhrase;
int timeCheck;
char *cookie;
struct Source *sources;
int numSources;
int noSource;
Header sourceHeader;
int sourceCpioCount;
struct cpioFileMapping *sourceCpioList;
struct MacroContext macros;
int autoReqProv;
StringBuf prep;
StringBuf build;
StringBuf install;
StringBuf clean;
struct PackageStruct *packages;
};
struct PackageStruct {
Header header;
int cpioCount;
struct cpioFileMapping *cpioList;
struct Source *icon;
int autoReqProv;
char *preInFile;
char *postInFile;
char *preUnFile;
char *postUnFile;
char *verifyFile;
StringBuf specialDoc;
#if 0
struct ReqProvTrigger *triggers;
char *triggerScripts;
#endif
char *fileFile;
StringBuf fileList; /* If NULL, package will not be written */
struct PackageStruct *next;
};
typedef struct SpecStruct *Spec;
typedef struct PackageStruct *Package;
Spec newSpec(void);
void freeSpec(Spec spec);
int addSource(Spec spec, Package pkg, char *field, int tag);
char *getSource(Spec spec, int num, int flag);
char *getFullSource(Spec spec, int num, int flag);
void freeSources(Spec spec);
int parseNoSource(Spec spec, char *field, int tag);
#endif _SPEC_H_
|