From owner-svn-ports-head@freebsd.org Sat Jul 30 14:22:04 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9DF84BA85BC; Sat, 30 Jul 2016 14:22:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 71A7A182E; Sat, 30 Jul 2016 14:22:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6UEM3td059068; Sat, 30 Jul 2016 14:22:03 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6UEM3g1059063; Sat, 30 Jul 2016 14:22:03 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607301422.u6UEM3g1059063@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 30 Jul 2016 14:22:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419320 - in head/sysutils/fcron: . 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.22 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: Sat, 30 Jul 2016 14:22:04 -0000 Author: pi Date: Sat Jul 30 14:22:03 2016 New Revision: 419320 URL: https://svnweb.freebsd.org/changeset/ports/419320 Log: sysutils/fcron: 3.2.0 -> 3.2.1 - @-lines can now be run up to every second (previously every 10s at most) PR: 211451 Submitted by: bob@eager.cx (maintainer) Deleted: head/sysutils/fcron/files/patch-fcrondyn.c Modified: head/sysutils/fcron/Makefile head/sysutils/fcron/distinfo head/sysutils/fcron/files/patch-configure head/sysutils/fcron/files/patch-fileconf.c head/sysutils/fcron/files/patch-save.c Modified: head/sysutils/fcron/Makefile ============================================================================== --- head/sysutils/fcron/Makefile Sat Jul 30 14:16:38 2016 (r419319) +++ head/sysutils/fcron/Makefile Sat Jul 30 14:22:03 2016 (r419320) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= fcron -PORTVERSION= 3.2.0 +PORTVERSION= 3.2.1 CATEGORIES= sysutils MASTER_SITES= http://fcron.free.fr/archives/ \ ftp://ftp.seul.org/pub/fcron/ Modified: head/sysutils/fcron/distinfo ============================================================================== --- head/sysutils/fcron/distinfo Sat Jul 30 14:16:38 2016 (r419319) +++ head/sysutils/fcron/distinfo Sat Jul 30 14:22:03 2016 (r419320) @@ -1,2 +1,3 @@ -SHA256 (fcron-3.2.0.src.tar.gz) = eb13b86ed96805d117e19847f1da30b834f1990f7ef4c38f5007234d44679564 -SIZE (fcron-3.2.0.src.tar.gz) = 595408 +TIMESTAMP = 1469650893 +SHA256 (fcron-3.2.1.src.tar.gz) = 6114d0a39a32853669c0c0ba0f96d92920e7cabca3ff1edf37d25750403e5f6a +SIZE (fcron-3.2.1.src.tar.gz) = 601142 Modified: head/sysutils/fcron/files/patch-configure ============================================================================== --- head/sysutils/fcron/files/patch-configure Sat Jul 30 14:16:38 2016 (r419319) +++ head/sysutils/fcron/files/patch-configure Sat Jul 30 14:22:03 2016 (r419320) @@ -1,6 +1,6 @@ ---- configure.orig 2014-07-06 10:05:56 UTC +--- configure.orig 2016-06-26 17:46:37 UTC +++ configure -@@ -5153,7 +5153,7 @@ if ${ax_cv_lib_readline+:} false; then : +@@ -5164,7 +5164,7 @@ if ${ax_cv_lib_readline+:} false; then : else ORIG_LIBS="$LIBS" Modified: head/sysutils/fcron/files/patch-fileconf.c ============================================================================== --- head/sysutils/fcron/files/patch-fileconf.c Sat Jul 30 14:16:38 2016 (r419319) +++ head/sysutils/fcron/files/patch-fileconf.c Sat Jul 30 14:22:03 2016 (r419320) @@ -1,6 +1,6 @@ We don't need to fflush the file, since it is opened read-only. ---- fileconf.c.orig 2014-05-10 17:03:59 UTC +--- fileconf.c.orig 2016-06-26 17:42:39 UTC +++ fileconf.c @@ -278,10 +278,6 @@ read_file(char *filename, int fd) cf->cf_next = file_base; @@ -11,5 +11,5 @@ We don't need to fflush the file, since - error_e("could not fflush() file_name"); - Free_safe(default_line.cl_runas); + Free_safe(default_line.cl_mailfrom); Free_safe(default_line.cl_mailto); - Free_safe(default_line.cl_tz); Modified: head/sysutils/fcron/files/patch-save.c ============================================================================== --- head/sysutils/fcron/files/patch-save.c Sat Jul 30 14:16:38 2016 (r419319) +++ head/sysutils/fcron/files/patch-save.c Sat Jul 30 14:22:03 2016 (r419320) @@ -1,8 +1,8 @@ Replace fdatasync() with fsync() because FreeBSD doesn't have fdatasync(). ---- save.c.orig 2014-05-10 17:03:59 UTC +--- save.c.orig 2016-06-26 15:02:48 UTC +++ save.c -@@ -311,8 +311,8 @@ write_file_to_disk(int fd, struct cf_t * +@@ -315,8 +315,8 @@ write_file_to_disk(int fd, struct cf_t * * This is to avoid cases where the file name (meta-data) would be updated, * and there is a crash before the data is fully written: not sure if that * is possible, but better safe than sorry! */