From 0fe562011c83229472a75dc43d34f780843e16de Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 5 Aug 2012 19:36:10 +1000 Subject: Move important information up in -Si output Currently, the package description is printed at the end of the -Si output. This is probably one of the more important pieces of information so should be nearer the top. Also move the package architecture up. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- src/pacman/package.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pacman/package.c b/src/pacman/package.c index fe04d407..fc869b18 100644 --- a/src/pacman/package.c +++ b/src/pacman/package.c @@ -141,6 +141,8 @@ void dump_pkg_full(alpm_pkg_t *pkg, int extra) } string_display(_("Name :"), alpm_pkg_get_name(pkg), cols); string_display(_("Version :"), alpm_pkg_get_version(pkg), cols); + string_display(_("Description :"), alpm_pkg_get_desc(pkg), cols); + string_display(_("Architecture :"), alpm_pkg_get_arch(pkg), cols); string_display(_("URL :"), alpm_pkg_get_url(pkg), cols); list_display(_("Licenses :"), alpm_pkg_get_licenses(pkg), cols); list_display(_("Groups :"), alpm_pkg_get_groups(pkg), cols); @@ -164,7 +166,6 @@ void dump_pkg_full(alpm_pkg_t *pkg, int extra) printf(_("Installed Size : %6.2f %s\n"), size, label); string_display(_("Packager :"), alpm_pkg_get_packager(pkg), cols); - string_display(_("Architecture :"), alpm_pkg_get_arch(pkg), cols); string_display(_("Build Date :"), bdatestr, cols); if(from == ALPM_PKG_FROM_LOCALDB) { string_display(_("Install Date :"), idatestr, cols); @@ -198,8 +199,6 @@ void dump_pkg_full(alpm_pkg_t *pkg, int extra) alpm_siglist_cleanup(&siglist); } - string_display(_("Description :"), alpm_pkg_get_desc(pkg), cols); - /* Print additional package info if info flag passed more than once */ if(from == ALPM_PKG_FROM_LOCALDB && extra) { dump_pkg_backups(pkg); -- cgit v1.1-4-g5e80