]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
Drop unused diskusagexml2solv.c
authorMichael Schroeder <mls@suse.de>
Fri, 5 Apr 2019 11:37:04 +0000 (13:37 +0200)
committerMichael Schroeder <mls@suse.de>
Fri, 5 Apr 2019 11:37:04 +0000 (13:37 +0200)
Whatever that was...

tools/diskusagexml2solv.c [deleted file]

diff --git a/tools/diskusagexml2solv.c b/tools/diskusagexml2solv.c
deleted file mode 100644 (file)
index 850b02c..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright (c) 2007, Novell Inc.
- *
- * This program is licensed under the BSD license, read LICENSE.BSD
- * for further information
- */
-
-#include <sys/types.h>
-#include <limits.h>
-#include <fcntl.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "pool.h"
-#include "repo.h"
-#include "repo_diskusagexml.h"
-#include "common_write.h"
-
-static void
-usage(int status)
-{
-  fprintf(stderr, "\nUsage:\n"
-          "diskusagexml2solv [-h]\n"
-         "  reads a 'diskusage.xml' file from <stdin> and writes a .solv file to <stdout>\n"
-         "  -h : print help & exit\n"
-        );
-  exit(status);
-}
-
-int
-main(int argc, char **argv)
-{
-  int c, flags = 0;
-  
-  Pool *pool = pool_create();
-  Repo *repo = repo_create(pool, "<stdin>");
-
-  while ((c = getopt(argc, argv, "h")) >= 0)
-    {   
-      switch(c)
-       {
-       case 'h':
-         usage(0);
-         break;
-       default:
-         usage(1);
-         break;
-       }
-    }
-  if (repo_add_diskusagexml(repo, stdin, flags))
-    {
-      fprintf(stderr, "diskusagexml2solv: %s\n", pool_errstr(pool));
-      exit(1);
-    }
-  tool_write(repo, stdout);
-  pool_free(pool);
-  exit(0);
-}