summaryrefslogtreecommitdiffstats
path: root/sources.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:12:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:12:14 +0000
commit4b8a0f3f3dcf60dac2ce308ea08d413a535af29f (patch)
tree0f09c0ad2a4d0f535d89040a63dc3a866a6606e6 /sources.h
parentInitial commit. (diff)
downloadreprepro-4b8a0f3f3dcf60dac2ce308ea08d413a535af29f.tar.xz
reprepro-4b8a0f3f3dcf60dac2ce308ea08d413a535af29f.zip
Adding upstream version 5.4.4.upstream/5.4.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sources.h')
-rw-r--r--sources.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/sources.h b/sources.h
new file mode 100644
index 0000000..62dba6e
--- /dev/null
+++ b/sources.h
@@ -0,0 +1,48 @@
+#ifndef REPREPRO_SOURCES_H
+#define REPREPRO_SOURCES_H
+
+#ifndef REPREPRO_ERROR_H
+#include "error.h"
+#warning "What's hapening here?"
+#endif
+#ifndef REPREPRO_TARGET_H
+#include "target.h"
+#endif
+
+/* Functions for the target.h-stuff: */
+get_version sources_getversion;
+get_installdata sources_getinstalldata;
+get_architecture sources_getarchitecture;
+get_filekeys sources_getfilekeys;
+get_checksums sources_getchecksums;
+do_reoverride sources_doreoverride;
+do_retrack sources_retrack;
+get_sourceandversion sources_getsourceandversion;
+complete_checksums sources_complete_checksums;
+
+/* Functions for checkindsc.c and incoming.c: */
+struct dsc_headers {
+ char *name, *version;
+ char *control;
+ struct checksumsarray files;
+ /* normally not in a .dsc file: */
+ /*@null@*/ char *section, *priority;
+};
+
+/* read contents of filename into sources_readdsc.
+ * - broken is like signature_readsignedchunk
+ * - does not follow retvalue conventions, some fields may be set even when
+ * error returned
+ * - no checks for sanity of values, left to the caller */
+retvalue sources_readdsc(struct dsc_headers *, const char *filename, const char *filenametoshow, bool *broken);
+
+void sources_done(struct dsc_headers *);
+
+struct overridedata;
+retvalue sources_complete(const struct dsc_headers *, const char *directory, const struct overridedata *override, const char *section, const char *priority, char **newcontrol);
+
+char *calc_source_basename(const char *name, const char *version);
+char *calc_sourcedir(component_t, const char *sourcename);
+char *calc_filekey(component_t, const char *sourcename, const char *filename);
+char *calc_byhanddir(component_t, const char *sourcename, const char *version);
+#endif