aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/logrotate.rb
AgeCommit message (Collapse)Author
2013-04-06Remove unnecessary/unused UserName plist keys.Mike McQuaid
Fixes #18293.
2013-01-04logrotate: use HOMEBREW varLuke Petre
Closes #16886. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-04logrotate: add plist and proper config fileLuke Petre
Closes #16884. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-14logrotate 3.8.3Adam Vandenberg
2012-12-14logrotate: use OS X appropriate gzip/gunzip pathsAdam Vandenberg
Closes #14446.
2012-11-11logrotate 3.8.2Max Edmands
Closes #15992. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-03Batch convert MD5 formula to SHA1.Mike McQuaid
Closes #14653.
2012-02-16logrotate 3.8.1Trevor Wennblom
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-20logrotate: update patch urlAdam Vandenberg
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2011-01-14logrotate - use HTTP instead of HTTPS for patchesFrancisco J
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-02Fix logrotate's path-type options such as olddir.Jon Wilkes
From http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2008-August/147600.html: "logrotate's path-type options (eg. compress, olddir, just to name a few) fail because FreeBSD's libc implements mbtrowc(3) differently, and returns -2 on empty string. Linux version, however, returns 0. A simple zero-length check added to path check function, which hides this." Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-10-02logrotate - fix patch downloadAdam Vandenberg
2010-09-17Fix download for logrotateAdam Vandenberg
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-09-24Use new instance var syntax in example formulaMax Howell
2009-09-22Fix logrotate build.Brian Smyth
Make the build independent of POPT_DIR. The makefile will honor it if it's in the environment, but will use the standard env variables otherwise.
2009-09-21Use new depends_on syntax in all formulaMax Howell
Many formula were imported during the development of the dependency branch.
2009-09-16Default to patch level 1Max Howell
Having gone through our patches it's clear that p1 is more standard. Also fixed a bug where returning DATA outside of an array would fail to patch.
2009-09-16Logrotate formulaBrian Smyth
The logrotate utility is designed to simplify the administration of log files on a system which generates a lot of log files. Logrotate allows for the automatic rotation compression, removal and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly or when the log file gets to a certain size. Normally, logrotate runs as a daily cron job. The package is not buildable on Darwin without including an additional header, nor is it installable without teaching the Makefile what INSTALL is on Darwin. Signed-off-by: Max Howell <max@methylblue.com> I made a number of modifications, including comma separating the make call so that the prefix doesn't need to be escaped if it has spaces in it. Also setting LDFLAGS to /usr/local/lib is done in brewkit.rb already. The POPT_DIR var shouldn't be necessary either, but I haven't tested that yet.