Date: Sun, 26 May 2013 01:39:59 +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: r319089 - in head/devel: . p5-IO-FDPass Message-ID: <201305260139.r4Q1dx1K093253@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kuriyama Date: Sun May 26 01:39:59 2013 New Revision: 319089 URL: http://svnweb.freebsd.org/changeset/ports/319089 Log: This small low-level module only has one purpose: pass a file descriptor to another process, using a (streaming) unix domain socket (on POSIX systems) or any (streaming) socket (on WIN32 systems). The ability to pass file descriptors on windows is currently the unique selling point of this module. Have I mentioned that it is really small, too? WWW: http://search.cpan.org/dist/IO-FDPass/ Added: head/devel/p5-IO-FDPass/ head/devel/p5-IO-FDPass/Makefile (contents, props changed) head/devel/p5-IO-FDPass/distinfo (contents, props changed) head/devel/p5-IO-FDPass/pkg-descr (contents, props changed) head/devel/p5-IO-FDPass/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun May 26 01:24:21 2013 (r319088) +++ head/devel/Makefile Sun May 26 01:39:59 2013 (r319089) @@ -2103,6 +2103,7 @@ SUBDIR += p5-IO-Detect SUBDIR += p5-IO-Digest SUBDIR += p5-IO-Event + SUBDIR += p5-IO-FDPass SUBDIR += p5-IO-HTML SUBDIR += p5-IO-Handle-Util SUBDIR += p5-IO-Interactive Added: head/devel/p5-IO-FDPass/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-IO-FDPass/Makefile Sun May 26 01:39:59 2013 (r319089) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= IO-FDPass +PORTVERSION= 1.0 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension to pass a file descriptor over a socket + +PERL_CONFIGURE= yes + +MAN3= IO::FDPass.3 + +.include <bsd.port.mk> Added: head/devel/p5-IO-FDPass/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-IO-FDPass/distinfo Sun May 26 01:39:59 2013 (r319089) @@ -0,0 +1,2 @@ +SHA256 (IO-FDPass-1.0.tar.gz) = cbc56b327cc6301e36ceedaf3b85a06987d514f5212d22efab7c7e13d8080aa4 +SIZE (IO-FDPass-1.0.tar.gz) = 5866 Added: head/devel/p5-IO-FDPass/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-IO-FDPass/pkg-descr Sun May 26 01:39:59 2013 (r319089) @@ -0,0 +1,8 @@ +This small low-level module only has one purpose: pass a file +descriptor to another process, using a (streaming) unix domain socket +(on POSIX systems) or any (streaming) socket (on WIN32 systems). The +ability to pass file descriptors on windows is currently the unique +selling point of this module. Have I mentioned that it is really +small, too? + +WWW: http://search.cpan.org/dist/IO-FDPass/ Added: head/devel/p5-IO-FDPass/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-IO-FDPass/pkg-plist Sun May 26 01:39:59 2013 (r319089) @@ -0,0 +1,7 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/FDPass/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/FDPass/FDPass.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/FDPass/FDPass.so +%%SITE_PERL%%/%%PERL_ARCH%%/IO/FDPass.pm +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/IO +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/FDPass +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305260139.r4Q1dx1K093253>