diff options
author | Allan McRae <allan@archlinux.org> | 2012-08-05 19:36:10 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-08-07 21:10:16 -0500 |
commit | 0fe562011c83229472a75dc43d34f780843e16de (patch) | |
tree | 942ad5737972fa07b6a8bca5b9012eb39aa62143 | |
parent | 632912261a03474a14830402a1e43ae57a0557ff (diff) | |
download | pacman-0fe562011c83229472a75dc43d34f780843e16de.tar.xz |
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 <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | src/pacman/package.c | 5 |
1 files 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); |