From owner-svn-ports-head@freebsd.org Fri Dec 8 19:36:16 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 630A9E8D14C; Fri, 8 Dec 2017 19:36:16 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 3A96680BAD; Fri, 8 Dec 2017 19:36:16 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB8JaFGk086028; Fri, 8 Dec 2017 19:36:15 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB8JaETu086023; Fri, 8 Dec 2017 19:36:14 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201712081936.vB8JaETu086023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 8 Dec 2017 19:36:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455797 - in head/www: . p5-AnyEvent-WebSocket-Client X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/www: . p5-AnyEvent-WebSocket-Client X-SVN-Commit-Revision: 455797 X-SVN-Commit-Repository: ports 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.25 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: Fri, 08 Dec 2017 19:36:16 -0000 Author: feld Date: Fri Dec 8 19:36:14 2017 New Revision: 455797 URL: https://svnweb.freebsd.org/changeset/ports/455797 Log: This class provides an interface to interact with a web server that provides services via the WebSocket protocol in an AnyEvent context. It uses Protocol::WebSocket rather than reinventing the wheel. You could use AnyEvent and Protocol::WebSocket directly if you wanted finer grain control, but if that is not necessary then this class may save you some time. WWW: https://github.com/plicease/AnyEvent-WebSocket-Client Added: head/www/p5-AnyEvent-WebSocket-Client/ head/www/p5-AnyEvent-WebSocket-Client/Makefile (contents, props changed) head/www/p5-AnyEvent-WebSocket-Client/distinfo (contents, props changed) head/www/p5-AnyEvent-WebSocket-Client/pkg-descr (contents, props changed) head/www/p5-AnyEvent-WebSocket-Client/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Dec 8 19:35:35 2017 (r455796) +++ head/www/Makefile Fri Dec 8 19:36:14 2017 (r455797) @@ -611,6 +611,7 @@ SUBDIR += p5-AnyEvent-ReverseHTTP SUBDIR += p5-AnyEvent-SCGI SUBDIR += p5-Apache-ASP + SUBDIR += p5-AnyEvent-WebSocket-Client SUBDIR += p5-Apache-Admin-Config SUBDIR += p5-Apache-AuthCookie SUBDIR += p5-Apache-AuthTicket Added: head/www/p5-AnyEvent-WebSocket-Client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-AnyEvent-WebSocket-Client/Makefile Fri Dec 8 19:36:14 2017 (r455797) @@ -0,0 +1,23 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= AnyEvent-WebSocket-Client +PORTVERSION= 0.43 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:PLICEASE +PKGNAMEPREFIX= p5- + +MAINTAINER= feld@FreeBSD.org +COMMENT= WebSocket client for AnyEvent + +LICENSE= ART10 + +BUILD_DEPENDS= p5-AnyEvent>0:devel/p5-AnyEvent +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes +USES= perl5 +USE_PERL5= configure + +.include Added: head/www/p5-AnyEvent-WebSocket-Client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-AnyEvent-WebSocket-Client/distinfo Fri Dec 8 19:36:14 2017 (r455797) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512761429 +SHA256 (AnyEvent-WebSocket-Client-0.43.tar.gz) = ea10e56959c4eddad147810dd45a0e749712f963fd8e909cc5ec08405f9451d1 +SIZE (AnyEvent-WebSocket-Client-0.43.tar.gz) = 45997 Added: head/www/p5-AnyEvent-WebSocket-Client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-AnyEvent-WebSocket-Client/pkg-descr Fri Dec 8 19:36:14 2017 (r455797) @@ -0,0 +1,8 @@ +This class provides an interface to interact with a web server that +provides services via the WebSocket protocol in an AnyEvent context. +It uses Protocol::WebSocket rather than reinventing the wheel. You could +use AnyEvent and Protocol::WebSocket directly if you wanted finer grain +control, but if that is not necessary then this class may save you some +time. + +WWW: https://github.com/plicease/AnyEvent-WebSocket-Client Added: head/www/p5-AnyEvent-WebSocket-Client/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-AnyEvent-WebSocket-Client/pkg-plist Fri Dec 8 19:36:14 2017 (r455797) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/AnyEvent/WebSocket/Client.pm +%%SITE_PERL%%/AnyEvent/WebSocket/Connection.pm +%%SITE_PERL%%/AnyEvent/WebSocket/Message.pm +%%PERL5_MAN3%%/AnyEvent::WebSocket::Client.3.gz +%%PERL5_MAN3%%/AnyEvent::WebSocket::Connection.3.gz +%%PERL5_MAN3%%/AnyEvent::WebSocket::Message.3.gz