From owner-svn-ports-head@FreeBSD.ORG Tue Sep 30 18:32:22 2014 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 534716F6; Tue, 30 Sep 2014 18:32:22 +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 26E9C7A3; Tue, 30 Sep 2014 18:32:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8UIWMNJ045313; Tue, 30 Sep 2014 18:32:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8UIWLH0045311; Tue, 30 Sep 2014 18:32:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201409301832.s8UIWLH0045311@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 30 Sep 2014 18:32:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369653 - head/sysutils/timelimit 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, 30 Sep 2014 18:32:22 -0000 Author: sunpoet Date: Tue Sep 30 18:32:21 2014 New Revision: 369653 URL: http://svnweb.freebsd.org/changeset/ports/369653 QAT: https://qat.redports.org/buildarchive/r369653/ Log: - Use CONFLICTS_INSTALL instead of CONFLICTS - Reformat pkg-descr - Remove Author line - Take maintainership Modified: head/sysutils/timelimit/Makefile head/sysutils/timelimit/pkg-descr Modified: head/sysutils/timelimit/Makefile ============================================================================== --- head/sysutils/timelimit/Makefile Tue Sep 30 18:32:16 2014 (r369652) +++ head/sysutils/timelimit/Makefile Tue Sep 30 18:32:21 2014 (r369653) @@ -7,18 +7,19 @@ PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://devel.ringlet.net/sysutils/timelimit/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Limit the absolute execution time of a process LICENSE= BSD2CLAUSE -CONFLICTS= netpipes-[0-9]* +CONFLICTS_INSTALL= netpipes-[0-9]* -PLIST_FILES= bin/timelimit man/man1/timelimit.1.gz NO_ARCH= yes +PLIST_FILES= bin/timelimit man/man1/timelimit.1.gz + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/timelimit ${STAGEDIR}${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/timelimit.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/timelimit ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_DATA} ${WRKSRC}/timelimit.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ .include Modified: head/sysutils/timelimit/pkg-descr ============================================================================== --- head/sysutils/timelimit/pkg-descr Tue Sep 30 18:32:16 2014 (r369652) +++ head/sysutils/timelimit/pkg-descr Tue Sep 30 18:32:21 2014 (r369653) @@ -1,7 +1,5 @@ -timelimit executes a command and terminates the spawned process -after a given time with a given signal. A 'warning' signal -is sent first, then, after a timeout, a 'kill' signal, similar -to the way init(8) operates on shutdown. +timelimit executes a command and terminates the spawned process after a given +time with a given signal. A 'warning' signal is sent first, then, after a +timeout, a 'kill' signal, similar to the way init(8) operates on shutdown. -Author: Peter Pentchev WWW: http://devel.ringlet.net/sysutils/timelimit/