From owner-svn-ports-head@FreeBSD.ORG Sun Aug 17 19:38:32 2014 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 ESMTPS id 619BBE5A; Sun, 17 Aug 2014 19:38:32 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C5902700; Sun, 17 Aug 2014 19:38:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7HJcWgL090047; Sun, 17 Aug 2014 19:38:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7HJcV5N090042; Sun, 17 Aug 2014 19:38:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201408171938.s7HJcV5N090042@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 17 Aug 2014 19:38:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365231 - in head/net: . p5-Net-SPDY 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.18-1 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: Sun, 17 Aug 2014 19:38:32 -0000 Author: sunpoet Date: Sun Aug 17 19:38:30 2014 New Revision: 365231 URL: http://svnweb.freebsd.org/changeset/ports/365231 QAT: https://qat.redports.org/buildarchive/r365231/ Log: - Add p5-Net-SPDY 0.1_5 Net::SPDY distribution contains implementation of SPDY protocol. You probably want to use Net::SPDY::Session to implement SPDY clients and servers. WWW: http://search.cpan.org/dist/Net-SPDY/ Added: head/net/p5-Net-SPDY/ head/net/p5-Net-SPDY/Makefile (contents, props changed) head/net/p5-Net-SPDY/distinfo (contents, props changed) head/net/p5-Net-SPDY/pkg-descr (contents, props changed) head/net/p5-Net-SPDY/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Aug 17 19:36:31 2014 (r365230) +++ head/net/Makefile Sun Aug 17 19:38:30 2014 (r365231) @@ -662,6 +662,7 @@ SUBDIR += p5-Net-SMS-Mollie SUBDIR += p5-Net-SMS-PChome SUBDIR += p5-Net-SNPP + SUBDIR += p5-Net-SPDY SUBDIR += p5-Net-SSH SUBDIR += p5-Net-SSH-Expect SUBDIR += p5-Net-SSH-Mechanize Added: head/net/p5-Net-SPDY/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-SPDY/Makefile Sun Aug 17 19:38:30 2014 (r365231) @@ -0,0 +1,27 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Net-SPDY +PORTVERSION= 0.1 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:LKUNDRAK +PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-${PORTVERSION}_5 + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= SPDY protocol client and server implementation + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-URI>=0:${PORTSDIR}/net/p5-URI +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep \ + p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod + +USE_PERL5= modbuild +USES= perl5 + +.include Added: head/net/p5-Net-SPDY/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-SPDY/distinfo Sun Aug 17 19:38:30 2014 (r365231) @@ -0,0 +1,2 @@ +SHA256 (Net-SPDY-0.1_5.tar.gz) = e084c25f0231cb8227951bfb10614d0ed4dbc55cc2250f697ba4bb72eeabe1ed +SIZE (Net-SPDY-0.1_5.tar.gz) = 19351 Added: head/net/p5-Net-SPDY/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-SPDY/pkg-descr Sun Aug 17 19:38:30 2014 (r365231) @@ -0,0 +1,4 @@ +Net::SPDY distribution contains implementation of SPDY protocol. You probably +want to use Net::SPDY::Session to implement SPDY clients and servers. + +WWW: http://search.cpan.org/dist/Net-SPDY/ Added: head/net/p5-Net-SPDY/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-SPDY/pkg-plist Sun Aug 17 19:38:30 2014 (r365231) @@ -0,0 +1,14 @@ +bin/spdy-client.pl +bin/spdy-server.pl +%%SITE_PERL%%/Net/SPDY.pod +%%SITE_PERL%%/Net/SPDY/Compressor.pm +%%SITE_PERL%%/Net/SPDY/Framer.pm +%%SITE_PERL%%/Net/SPDY/Session.pm +%%PERL5_MAN3%%/Net::SPDY.3.gz +%%PERL5_MAN3%%/Net::SPDY::Compressor.3.gz +%%PERL5_MAN3%%/Net::SPDY::Framer.3.gz +%%PERL5_MAN3%%/Net::SPDY::Session.3.gz +man/man1/spdy-client.pl.1.gz +man/man1/spdy-server.pl.1.gz +@dirrm %%SITE_PERL%%/Net/SPDY +@dirrmtry %%SITE_PERL%%/Net