mirror of
https://github.com/openSUSE/libsolv.git
synced 2026-02-05 12:45:46 +01:00
41 lines
732 B
C
41 lines
732 B
C
/*
|
|
* Copyright (c) 2012, Novell Inc.
|
|
*
|
|
* This program is licensed under the BSD license, read LICENSE.BSD
|
|
* for further information
|
|
*/
|
|
|
|
/*
|
|
* comps2solv.c
|
|
*
|
|
* parse Fedora Comps type xml and write out .solv file
|
|
*
|
|
* reads from stdin
|
|
* writes to stdout
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "pool.h"
|
|
#include "repo.h"
|
|
#include "repo_comps.h"
|
|
#include "common_write.h"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
Pool *pool = pool_create();
|
|
Repo *repo = repo_create(pool, "<stdin>");
|
|
if (repo_add_comps(repo, stdin, 0))
|
|
{
|
|
fprintf(stderr, "comps2solv: %s\n", pool_errstr(pool));
|
|
exit(1);
|
|
}
|
|
tool_write(repo, 0, 0);
|
|
pool_free(pool);
|
|
exit(0);
|
|
}
|