2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
9 * deb2solv - create a solv file from one or multiple debs
13 #include <sys/types.h>
23 #include "repo_solv.h"
24 #include "common_write.h"
27 fgets0(char *s, int size, FILE *stream)
50 main(int argc, char **argv)
52 const char **debs = 0;
55 int c, i, res, ndebs = 0;
56 Pool *pool = pool_create();
60 const char *basefile = 0;
62 while ((c = getopt(argc, argv, "0b:m:")) >= 0)
81 if (!strcmp(manifest, "-"))
83 else if ((fp = fopen(manifest, "r")) == 0)
92 if (!fgets0(buf, sizeof(buf), fp))
97 if (!fgets(buf, sizeof(buf), fp))
99 if ((p = strchr(buf, '\n')) != 0)
102 debs = solv_extend(debs, ndebs, 1, sizeof(char *), 15);
103 debs[ndebs++] = strdup(buf);
108 while (optind < argc)
110 debs = solv_extend(debs, ndebs, 1, sizeof(char *), 15);
111 debs[ndebs++] = strdup(argv[optind++]);
113 repo = repo_create(pool, "deb2solv");
114 repo_add_repodata(repo, 0);
116 for (i = 0; i < ndebs; i++)
118 if (repo_add_deb(repo, debs[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE) == 0)
120 fprintf(stderr, "deb2solv: %s\n", pool_errstr(pool));
124 repo_internalize(repo);
125 tool_write(repo, basefile, 0);
127 for (c = 0; c < ndebs; c++)
128 free((char *)debs[c]);