From owner-svn-ports-head@FreeBSD.ORG Mon Nov 4 13:08:05 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3F8A3DBC; Mon, 4 Nov 2013 13:08:05 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2CD372447; Mon, 4 Nov 2013 13:08:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA4D85pq074986; Mon, 4 Nov 2013 13:08:05 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA4D84DP074980; Mon, 4 Nov 2013 13:08:04 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201311041308.rA4D84DP074980@svn.freebsd.org> From: Jun Kuriyama Date: Mon, 4 Nov 2013 13:08:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332704 - in head/devel: . p5-Proc-Pidfile 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.14 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: Mon, 04 Nov 2013 13:08:05 -0000 Author: kuriyama Date: Mon Nov 4 13:08:03 2013 New Revision: 332704 URL: http://svnweb.freebsd.org/changeset/ports/332704 Log: Proc::Pidfile is a very simple OO interface which manages a pidfile for the current process. You can pass the path to a pidfile to use as an argument to the constructor, or you can let Proc::Pidfile choose one (basically, "/var/run/$basename", if you can write to /var/run, otherwise "/$tmpdir/$basename"). WWW: http://search.cpan.org/dist/Proc-Pidfile/ Added: head/devel/p5-Proc-Pidfile/ head/devel/p5-Proc-Pidfile/Makefile (contents, props changed) head/devel/p5-Proc-Pidfile/distinfo (contents, props changed) head/devel/p5-Proc-Pidfile/pkg-descr (contents, props changed) head/devel/p5-Proc-Pidfile/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Nov 4 12:40:38 2013 (r332703) +++ head/devel/Makefile Mon Nov 4 13:08:03 2013 (r332704) @@ -2560,6 +2560,7 @@ SUBDIR += p5-Proc-Fork SUBDIR += p5-Proc-Guard SUBDIR += p5-Proc-PID-File + SUBDIR += p5-Proc-Pidfile SUBDIR += p5-Proc-ProcessTable SUBDIR += p5-Proc-Queue SUBDIR += p5-Proc-Reliable Added: head/devel/p5-Proc-Pidfile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Proc-Pidfile/Makefile Mon Nov 4 13:08:03 2013 (r332704) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= Proc-Pidfile +PORTVERSION= 1.005 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension for maintaining pid file for curent process + +RUN_DEPENDS= \ + p5-Proc-ProcessTable>0:${PORTSDIR}/devel/p5-Proc-ProcessTable +BUILD_DEPENDS= ${RUN_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-Proc-Pidfile/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Proc-Pidfile/distinfo Mon Nov 4 13:08:03 2013 (r332704) @@ -0,0 +1,2 @@ +SHA256 (Proc-Pidfile-1.005.tar.gz) = ea43f0eab2baeb14c03ce7787d4e9b6666567fdff0c1d6374325a035ef3a6cbc +SIZE (Proc-Pidfile-1.005.tar.gz) = 3703 Added: head/devel/p5-Proc-Pidfile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Proc-Pidfile/pkg-descr Mon Nov 4 13:08:03 2013 (r332704) @@ -0,0 +1,7 @@ +Proc::Pidfile is a very simple OO interface which manages a pidfile +for the current process. You can pass the path to a pidfile to use as +an argument to the constructor, or you can let Proc::Pidfile choose +one (basically, "/var/run/$basename", if you can write to /var/run, +otherwise "/$tmpdir/$basename"). + +WWW: http://search.cpan.org/dist/Proc-Pidfile/ Added: head/devel/p5-Proc-Pidfile/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Proc-Pidfile/pkg-plist Mon Nov 4 13:08:03 2013 (r332704) @@ -0,0 +1,5 @@ +%%PERL5_MAN3%%/Proc::Pidfile.3.gz +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Proc/Pidfile/.packlist +%%SITE_PERL%%/Proc/Pidfile.pm +@dirrmtry %%SITE_PERL%%/Proc +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Proc/Pidfile