Date: Sat, 10 Aug 2013 15:30:17 +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: r324544 - in head/net: . p5-POSIX-Socket Message-ID: <201308101530.r7AFUHsG051669@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308101530.r7AFUHsG051669>