From owner-svn-ports-all@FreeBSD.ORG Sun May 26 01:40:00 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9AD97AEE; Sun, 26 May 2013 01:40:00 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8C76C280; Sun, 26 May 2013 01:40:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4Q1e0YK093296; Sun, 26 May 2013 01:40:00 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4Q1dx1K093253; Sun, 26 May 2013 01:39:59 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201305260139.r4Q1dx1K093253@svn.freebsd.org> From: Jun Kuriyama Date: Sun, 26 May 2013 01:39:59 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 May 2013 01:40:00 -0000 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 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