summaryrefslogtreecommitdiffstats
path: root/src/pacman/conf.h
diff options
context:
space:
mode:
authorJakob Gruber <jakob.gruber@gmail.com>2011-02-20 15:00:26 +0100
committerDan McGee <dan@archlinux.org>2011-04-21 01:13:02 +0200
commite95be3379ab79ea24ad7ae5a4676388df27d0bbb (patch)
treed09cd5465a8a9ef3bcc7572c654fac2254548cb9 /src/pacman/conf.h
parent0152266dd3ce0393f5e9519aaa1d7da7e6051694 (diff)
downloadpacman-e95be3379ab79ea24ad7ae5a4676388df27d0bbb.tar.gz
pacman-e95be3379ab79ea24ad7ae5a4676388df27d0bbb.tar.xz
New VerbosePkgLists option
If enabled, displays package lists for upgrade, sync and remove operations formatted as a table. Falls back to default list display if insufficient terminal columns are available. Example output: :: Starting full system upgrade... :: Replace libjpeg with testing/libjpeg-turbo? [Y/n] resolving dependencies... looking for inter-conflicts... Remove (1): Name Old Version Size libjpeg 8.3.0-1 0.83 MB Total Removed Size: 0.83 MB Targets (5): Name Old Version New Version Size libjpeg-turbo 1.1.0-1 0.20 MB linux-firmware 20110201-1 20110227-1 8.23 MB ncurses 5.7-4 5.8-1 0.92 MB ppl 0.11.1-1 0.11.2-1 2.74 MB v4l-utils 0.8.1-1 0.8.3-1 0.23 MB Total Download Size: 12.32 MB Total Installed Size: 58.82 MB Signed-off-by: Jakob Gruber <jakob.gruber@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/conf.h')
-rw-r--r--src/pacman/conf.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/pacman/conf.h b/src/pacman/conf.h
index d85f33ee..4f96f4f9 100644
--- a/src/pacman/conf.h
+++ b/src/pacman/conf.h
@@ -69,11 +69,15 @@ typedef struct __config_t {
unsigned int ask;
/* conf file options */
- unsigned short chomp; /* I Love Candy! */
+ /* I Love Candy! */
+ unsigned short chomp;
+ /* format target pkg lists as table */
+ unsigned short verbosepkglists;
/* When downloading, display the amount downloaded, rate, ETA, and percent
* downloaded of the total download list */
unsigned short totaldownload;
- unsigned short cleanmethod; /* select -Sc behavior */
+ /* select -Sc behavior */
+ unsigned short cleanmethod;
alpm_list_t *holdpkg;
alpm_list_t *syncfirst;
char *xfercommand;