xbps-query: pretty print "source-revision" pkg metadata obj.
This commit is contained in:
parent
da11e55847
commit
30d9f6ae4d
@ -149,6 +149,23 @@ show_pkg_info_one(prop_dictionary_t d, const char *keys)
|
|||||||
free(key);
|
free(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
print_srcrevs(const char *keyname, prop_string_t obj)
|
||||||
|
{
|
||||||
|
const char *str = prop_string_cstring_nocopy(obj);
|
||||||
|
size_t i;
|
||||||
|
|
||||||
|
/* parse string appending a \t after EOL */
|
||||||
|
printf("%s:\n ", keyname);
|
||||||
|
for (i = 0; i < strlen(str); i++) {
|
||||||
|
if (str[i] == '\n')
|
||||||
|
printf("\n ");
|
||||||
|
else
|
||||||
|
putchar(str[i]);
|
||||||
|
}
|
||||||
|
putchar('\n');
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
show_pkg_info(prop_dictionary_t dict)
|
show_pkg_info(prop_dictionary_t dict)
|
||||||
{
|
{
|
||||||
@ -169,6 +186,12 @@ show_pkg_info(prop_dictionary_t dict)
|
|||||||
(strcmp(keyname, "links") == 0))
|
(strcmp(keyname, "links") == 0))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/* special case for source-revisions obj */
|
||||||
|
if (strcmp(keyname, "source-revisions") == 0) {
|
||||||
|
print_srcrevs(keyname, obj);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
/* anything else */
|
||||||
print_value_obj(keyname, obj, NULL, false);
|
print_value_obj(keyname, obj, NULL, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user