aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-02-08 19:08:48 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-02-08 19:08:48 +0000
commitf16b671edcead7cbac0e9d6b7459b6162a66a03a (patch)
tree773b21f77ed32bb0f886351bbf2f3aa861347c64
parentc0166798bf879a2d5269d2e8b76bbaa046044c10 (diff)
downloadaports-f16b671edcead7cbac0e9d6b7459b6162a66a03a.tar.bz2
aports-f16b671edcead7cbac0e9d6b7459b6162a66a03a.tar.xz
info: implement -R/--depends to show dependencies
-rw-r--r--src/info.c43
1 files changed, 42 insertions, 1 deletions
diff --git a/src/info.c b/src/info.c
index 02440e6d64..e9d209e66f 100644
--- a/src/info.c
+++ b/src/info.c
@@ -112,7 +112,7 @@ static int info_contents(struct apk_database *db, int argc, char **argv)
for (i = 0; i < argc; i++) {
name = apk_db_query_name(db, APK_BLOB_STR(argv[i]));
- if (name == NULL) {
+ if (name == NULL) {
apk_error("Not found: %s", name);
return 1;
}
@@ -128,6 +128,43 @@ static int info_contents(struct apk_database *db, int argc, char **argv)
return 0;
}
+static void info_print_depends(struct apk_package *pkg)
+{
+ int i;
+ char *separator = apk_verbosity > 1 ? " " : "\n";
+ if (apk_verbosity == 1)
+ printf("%s-%s depends on:\n", pkg->name->name, pkg->version);
+ if (pkg->depends == NULL)
+ return;
+ if (apk_verbosity > 1)
+ printf("%s: ", pkg->name->name);
+ for (i = 0; i < pkg->depends->num; i++) {
+ printf("%s%s", pkg->depends->item[i].name->name, separator);
+ }
+ puts("");
+}
+
+static int info_depends(struct apk_database *db, int argc, char **argv)
+{
+ struct apk_name *name;
+ int i, j;
+
+ for (i = 0; i < argc; i++) {
+ name = apk_db_query_name(db, APK_BLOB_STR(argv[i]));
+ if (name == NULL) {
+ apk_error("Not found: %s", argv[i]);
+ return 1;
+ }
+ for (j = 0; j < name->pkgs->num; j++) {
+ struct apk_package *pkg = name->pkgs->item[j];
+ if (apk_pkg_get_state(pkg) == APK_STATE_INSTALL)
+ info_print_depends(pkg);
+ }
+ }
+ return 0;
+}
+
+
static int info_parse(void *ctx, int optch, int optindex, const char *optarg)
{
struct info_ctx *ictx = (struct info_ctx *) ctx;
@@ -142,6 +179,9 @@ static int info_parse(void *ctx, int optch, int optindex, const char *optarg)
case 'L':
ictx->action = info_contents;
break;
+ case 'R':
+ ictx->action = info_depends;
+ break;
default:
return -1;
}
@@ -170,6 +210,7 @@ static struct option info_options[] = {
{ "contents", no_argument, NULL, 'L' },
{ "installed", no_argument, NULL, 'e' },
{ "who-owns", no_argument, NULL, 'W' },
+ { "depends", no_argument, NULL, 'R' },
};
static struct apk_applet apk_info = {