rpm 4.19.0
The RPM Package Manager
Loading...
Searching...
No Matches
rpmspec.h
Go to the documentation of this file.
1#ifndef _H_SPEC_
2#define _H_SPEC_
3
9#include <rpm/rpmstring.h> /* StringBuf */
10#include <rpm/rpmcli.h> /* for QVA_t */
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
18typedef struct Package_s * rpmSpecPkg;
19typedef struct Source * rpmSpecSrc;
20typedef struct rpmSpecIter_s * rpmSpecPkgIter;
21typedef struct rpmSpecIter_s * rpmSpecSrcIter;
22
23enum rpmSourceFlags_e {
24 RPMBUILD_ISSOURCE = (1 << 0),
25 RPMBUILD_ISPATCH = (1 << 1),
26 RPMBUILD_ISICON = (1 << 2),
27 RPMBUILD_ISNO = (1 << 3),
28};
29
30typedef rpmFlags rpmSourceFlags;
31
32#define RPMBUILD_DEFAULT_LANG "C"
33
34enum rpmSpecFlags_e {
35 RPMSPEC_NONE = 0,
36 RPMSPEC_ANYARCH = (1 << 0),
37 RPMSPEC_FORCE = (1 << 1),
38 RPMSPEC_NOLANG = (1 << 2),
39 RPMSPEC_NOUTF8 = (1 << 3),
40};
41
42typedef rpmFlags rpmSpecFlags;
43
49rpmSpec rpmSpecFree(rpmSpec spec);
50
51/* Iterator for spec packages */
52rpmSpecPkgIter rpmSpecPkgIterInit(rpmSpec spec);
53rpmSpecPkg rpmSpecPkgIterNext(rpmSpecPkgIter iter);
54rpmSpecPkgIter rpmSpecPkgIterFree(rpmSpecPkgIter iter);
55
56/* Getters for spec package attributes */
57Header rpmSpecPkgHeader(rpmSpecPkg pkg);
58
59/*
60 * Retrieve package specific parsed spec script section (RPMBUILD_FILE_LIST,
61 * RPMBUILD_FILE_FILE, RPMBUILD_POLICY) as a malloc'ed string.
62 */
63char * rpmSpecPkgGetSection(rpmSpecPkg pkg, int section);
64
65
66/* Iterator for spec sources */
67rpmSpecSrcIter rpmSpecSrcIterInit(rpmSpec spec);
68rpmSpecSrc rpmSpecSrcIterNext(rpmSpecSrcIter iter);
69rpmSpecSrcIter rpmSpecSrcIterFree(rpmSpecSrcIter iter);
70
71/* Getters for spec source attributes */
72rpmSourceFlags rpmSpecSrcFlags(rpmSpecSrc src);
73int rpmSpecSrcNum(rpmSpecSrc src);
74const char * rpmSpecSrcFilename(rpmSpecSrc src, int full);
75
76/*
77 * Retrieve parsed spec script section (RPMBUILD_PREP, RPMBUILD_BUILD etc).
78 * As a special case, RPMBUILD_NONE as section returns the entire spec in
79 * preprocessed (macros expanded etc) format.
80 */
81const char * rpmSpecGetSection(rpmSpec spec, int section);
82
90int rpmspecQuery(rpmts ts, QVA_t qva, const char * arg);
91
92#ifdef __cplusplus
93}
94#endif
95
96#endif /* _H_SPEC_ */
rpmSpec rpmSpecFree(rpmSpec spec)
int rpmspecQuery(rpmts ts, QVA_t qva, const char *arg)
struct rpmts_s * rpmts
Definition: rpmtypes.h:63
struct headerToken_s * Header
Definition: rpmtypes.h:24
Definition: rpmcli.h:165