Date: Tue, 6 Jan 2015 10:25:13 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376419 - in head/sysutils/logrotate: . files Message-ID: <201501061025.t06APDxZ026959@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Tue Jan 6 10:25:12 2015 New Revision: 376419 URL: https://svnweb.freebsd.org/changeset/ports/376419 QAT: https://qat.redports.org/buildarchive/r376419/ Log: sysutils/logrotate: 3.8.7 -> 3.8.8, fix mail sending - Add support for building using autotools/automake. Using "./autogen.sh", "./configure" and "make" is now preferred way how to build logrotate. Old Makefile remains available, but it is deprecated and will be removed in the future. Please report any problem related to new build system. - Add support for systems which do not support fork (use vfork instead) and madvise. - Fix bug when wrong log file has been removed in case of dateext and dateformat %d-%m-%Y. - Do not expect that the name of root account is 'root'. - Do not stop rotation with an error when olddir and log file are on different devices and copy or copytruncate is used. - Return an error code when parent directory of log does not exist, "su" directive is not used, logrotate is running as root and missingok is not specified. [vcizek] - Prepend error printed by compression program with the log name even when the compression program exits with zero exit code. PR: 195184 Submitted by: rand@meridian-enviro.com Approved by: maintainer (timeout) Modified: head/sysutils/logrotate/Makefile head/sysutils/logrotate/distinfo head/sysutils/logrotate/files/patch-config.h Modified: head/sysutils/logrotate/Makefile ============================================================================== --- head/sysutils/logrotate/Makefile Tue Jan 6 10:22:44 2015 (r376418) +++ head/sysutils/logrotate/Makefile Tue Jan 6 10:25:12 2015 (r376419) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= logrotate -PORTVERSION= 3.8.7 +PORTVERSION= 3.8.8 CATEGORIES= sysutils MASTER_SITES= https://fedorahosted.org/releases/l/o/logrotate/ Modified: head/sysutils/logrotate/distinfo ============================================================================== --- head/sysutils/logrotate/distinfo Tue Jan 6 10:22:44 2015 (r376418) +++ head/sysutils/logrotate/distinfo Tue Jan 6 10:25:12 2015 (r376419) @@ -1,2 +1,2 @@ -SHA256 (logrotate-3.8.7.tar.gz) = f6ba691f40e30e640efa2752c1f9499a3f9738257660994de70a45fe00d12b64 -SIZE (logrotate-3.8.7.tar.gz) = 58898 +SHA256 (logrotate-3.8.8.tar.gz) = 46a1510ef4a1f4359edd5f361112cfd1523942e85ff28e6cbb0c81bad1829d0f +SIZE (logrotate-3.8.8.tar.gz) = 72014 Modified: head/sysutils/logrotate/files/patch-config.h ============================================================================== --- head/sysutils/logrotate/files/patch-config.h Tue Jan 6 10:22:44 2015 (r376418) +++ head/sysutils/logrotate/files/patch-config.h Tue Jan 6 10:25:12 2015 (r376419) @@ -7,7 +7,7 @@ index ae7f308..7c0a2b3 100644 #endif +#ifdef __FreeBSD__ -+ #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx -s" ++ #define DEFAULT_MAIL_COMMAND "/usr/bin/mailx" + #define COMPRESS_COMMAND "/usr/bin/gzip" + #define UNCOMPRESS_COMMAND "/usr/bin/gunzip" + #define STATEFILE "/var/run/logrotate.status"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501061025.t06APDxZ026959>