Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Nov 2013 13:08:04 +0000 (UTC)
From:      Jun Kuriyama <kuriyama@FreeBSD.org>
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
Message-ID:  <201311041308.rA4D84DP074980@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311041308.rA4D84DP074980>