diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-04-04 16:30:54 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-04-04 16:30:54 +0000 |
commit | 1c245401d22ca82edfbdf2423c62f367d68da06d (patch) | |
tree | 7503861a5b23c93d5121611bbe82498a27bdc698 | |
parent | 08fbeb4724ef8d7d327dc5bb0f0a05bb33237f8f (diff) | |
download | prt-get-1c245401d22ca82edfbdf2423c62f367d68da06d.tar.gz prt-get-1c245401d22ca82edfbdf2423c62f367d68da06d.tar.xz |
prt-get: document rmlog_on_success
git-svn-id: https://crux.nu/svn/tools/prt-get/trunk@1140 0b5ae1c7-2405-0410-a7fc-ba219f786e1e
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | doc/prt-get.conf.5 | 5 | ||||
-rw-r--r-- | misc/prt-get.conf | 7 |
3 files changed, 9 insertions, 4 deletions
@@ -4,6 +4,7 @@ - don't install alias file and deplist - unlock ports on remove - fix lock: previously locking would only work for ports in the ports tree +- allow to remove log files of successful builds * 0.5.11 29.05.2005 Johannes Winkelmann - add --path to 'ls' diff --git a/doc/prt-get.conf.5 b/doc/prt-get.conf.5 index 8166784..16d8c31 100644 --- a/doc/prt-get.conf.5 +++ b/doc/prt-get.conf.5 @@ -110,6 +110,9 @@ The log options are which can be set to 'enabled' or 'disabled' .B logmode which can be set to 'append' or 'overwrite' +.B rmlog_on_success +which can be set to 'yes' or 'no'; when set to yes, log files of +successful builds will be removed .B logfile which represent the file path. All occurances of %n in logfile are replaced with the port name and all occurances of %p are @@ -117,7 +120,7 @@ replaced with the port's path, e.g. for port gcc in base, %p would be .B /usr/base and %n .B gcc. -This allows you to have separate log files per port. +This allows you to have separate log files per port. .LP If the readme option is set to something different than 'disabled', diff --git a/misc/prt-get.conf b/misc/prt-get.conf index b4ea28f..2d013b5 100644 --- a/misc/prt-get.conf +++ b/misc/prt-get.conf @@ -2,11 +2,11 @@ ### prt-get conf ### -prtdir /usr/ports/base +prtdir /usr/ports/core prtdir /usr/ports/opt -### clc ports -prtdir /usr/ports/contrib +### User contributed ports - check out http://crux.nu/Main/ContribRules +# prtdir /usr/ports/contrib ### use mypackage form local directory # prtdir /home/packages/build:mypackage @@ -17,6 +17,7 @@ prtdir /usr/ports/contrib ### log options: # writelog enabled # (enabled|disabled) # logmode overwrite # (append|overwrite) +# rm_on_success no # (yes|no) logfile /var/log/pkgbuild/%n.log # path, %p=path to port dir, %n=port name # %v=version, %r=release |