From owner-svn-ports-head@FreeBSD.ORG Sat Aug 10 15:30:18 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3DFEBA55; Sat, 10 Aug 2013 15:30:18 +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 1C4B5223B; Sat, 10 Aug 2013 15:30:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7AFUHpv051678; Sat, 10 Aug 2013 15:30:17 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7AFUHsG051669; Sat, 10 Aug 2013 15:30:17 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201308101530.r7AFUHsG051669@svn.freebsd.org> From: Jun Kuriyama Date: Sat, 10 Aug 2013 15:30:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324544 - in head/net: . p5-POSIX-Socket 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: Sat, 10 Aug 2013 15:30:18 -0000 Author: kuriyama Date: Sat Aug 10 15:30:16 2013 New Revision: 324544 URL: http://svnweb.freebsd.org/changeset/ports/324544 Log: The primary purpose of this is to use file descriptors instead of file handles for socket operations. File descriptors can be shared between threads and not need dup file handles for each threads. WWW: http://search.cpan.org/dist/POSIX-Socket/ Added: head/net/p5-POSIX-Socket/ head/net/p5-POSIX-Socket/Makefile (contents, props changed) head/net/p5-POSIX-Socket/distinfo (contents, props changed) head/net/p5-POSIX-Socket/pkg-descr (contents, props changed) head/net/p5-POSIX-Socket/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Aug 10 15:29:12 2013 (r324543) +++ head/net/Makefile Sat Aug 10 15:30:16 2013 (r324544) @@ -725,6 +725,7 @@ SUBDIR += p5-POE-Component-Server-Twirc SUBDIR += p5-POE-Component-Spread SUBDIR += p5-POEx-Role-TCPServer + SUBDIR += p5-POSIX-Socket SUBDIR += p5-Parallel-Pvm SUBDIR += p5-Phone-Info SUBDIR += p5-PlRPC Added: head/net/p5-POSIX-Socket/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-POSIX-Socket/Makefile Sat Aug 10 15:30:16 2013 (r324544) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= POSIX-Socket +PORTVERSION= 0.09 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension for POSIX socket low-level interface + +USES= perl5 +USE_PERL5= configure + +MAN3= POSIX::Socket.3 + +.include Added: head/net/p5-POSIX-Socket/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-POSIX-Socket/distinfo Sat Aug 10 15:30:16 2013 (r324544) @@ -0,0 +1,2 @@ +SHA256 (POSIX-Socket-0.09.tar.gz) = 077240158fc77654c5a76429a0edc943d08acfc9e87c87dad14b333a1fb713a7 +SIZE (POSIX-Socket-0.09.tar.gz) = 3608 Added: head/net/p5-POSIX-Socket/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-POSIX-Socket/pkg-descr Sat Aug 10 15:30:16 2013 (r324544) @@ -0,0 +1,5 @@ +The primary purpose of this is to use file descriptors instead of file +handles for socket operations. File descriptors can be shared between +threads and not need dup file handles for each threads. + +WWW: http://search.cpan.org/dist/POSIX-Socket/ Added: head/net/p5-POSIX-Socket/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-POSIX-Socket/pkg-plist Sat Aug 10 15:30:16 2013 (r324544) @@ -0,0 +1,7 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/POSIX/Socket/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/POSIX/Socket.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/POSIX/Socket/Socket.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/POSIX/Socket/Socket.so +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/POSIX +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/POSIX/Socket +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POSIX