From owner-svn-ports-head@FreeBSD.ORG Tue Jan 6 10:25:14 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D44D90E; Tue, 6 Jan 2015 10:25:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2EE0664B67; Tue, 6 Jan 2015 10:25:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t06APERI026963; Tue, 6 Jan 2015 10:25:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t06APDxZ026959; Tue, 6 Jan 2015 10:25:13 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201501061025.t06APDxZ026959@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 6 Jan 2015 10:25:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376419 - in head/sysutils/logrotate: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 10:25:14 -0000 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"