From owner-svn-ports-head@FreeBSD.ORG Thu Apr 2 19:20:55 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 221EB4E3; Thu, 2 Apr 2015 19:20:55 +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 0BD6C656; Thu, 2 Apr 2015 19:20:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t32JKshd040163; Thu, 2 Apr 2015 19:20:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t32JKrBU040154; Thu, 2 Apr 2015 19:20:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201504021920.t32JKrBU040154@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 2 Apr 2015 19:20:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383051 - in head/devel: . p5-POE-Loop-AnyEvent 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: Thu, 02 Apr 2015 19:20:55 -0000 Author: sunpoet Date: Thu Apr 2 19:20:52 2015 New Revision: 383051 URL: https://svnweb.freebsd.org/changeset/ports/383051 Log: - Add p5-POE-Loop-AnyEvent 0.004 POE::Loop::AnyEvent replaces POE's default select() event loop with AnyEvent. This allows POE programs to transparently use most of the event loops AnyEvent can provide. POE::Loop::AnyEvent changes POE's internal implementation without altering its APIs. By design, nearly all software that are already uses POE should continue to work normally without any changes. WWW: http://search.cpan.org/dist/POE-Loop-AnyEvent/ Added: head/devel/p5-POE-Loop-AnyEvent/ head/devel/p5-POE-Loop-AnyEvent/Makefile (contents, props changed) head/devel/p5-POE-Loop-AnyEvent/distinfo (contents, props changed) head/devel/p5-POE-Loop-AnyEvent/pkg-descr (contents, props changed) head/devel/p5-POE-Loop-AnyEvent/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Apr 2 19:14:18 2015 (r383050) +++ head/devel/Makefile Thu Apr 2 19:20:52 2015 (r383051) @@ -2624,6 +2624,7 @@ SUBDIR += p5-POE-Component-Syndicator SUBDIR += p5-POE-Component-TSTP SUBDIR += p5-POE-Devel-Profiler + SUBDIR += p5-POE-Loop-AnyEvent SUBDIR += p5-POE-Loop-Glib SUBDIR += p5-POE-Loop-Tk SUBDIR += p5-POE-Quickie Added: head/devel/p5-POE-Loop-AnyEvent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POE-Loop-AnyEvent/Makefile Thu Apr 2 19:20:52 2015 (r383051) @@ -0,0 +1,24 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= POE-Loop-AnyEvent +PORTVERSION= 0.004 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= AnyEvent event loop support for POE + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \ + p5-POE>=1.289:${PORTSDIR}/devel/p5-POE +RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS+= p5-POE-Test-Loops>=1.035:${PORTSDIR}/devel/p5-POE-Test-Loops + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-POE-Loop-AnyEvent/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POE-Loop-AnyEvent/distinfo Thu Apr 2 19:20:52 2015 (r383051) @@ -0,0 +1,2 @@ +SHA256 (POE-Loop-AnyEvent-0.004.tar.gz) = 2eaa98591c371ca37d5c13eff8e7a527ab24cacc84d44e36142977836df1506f +SIZE (POE-Loop-AnyEvent-0.004.tar.gz) = 13087 Added: head/devel/p5-POE-Loop-AnyEvent/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POE-Loop-AnyEvent/pkg-descr Thu Apr 2 19:20:52 2015 (r383051) @@ -0,0 +1,9 @@ +POE::Loop::AnyEvent replaces POE's default select() event loop with AnyEvent. +This allows POE programs to transparently use most of the event loops AnyEvent +can provide. + +POE::Loop::AnyEvent changes POE's internal implementation without altering its +APIs. By design, nearly all software that are already uses POE should continue +to work normally without any changes. + +WWW: http://search.cpan.org/dist/POE-Loop-AnyEvent/ Added: head/devel/p5-POE-Loop-AnyEvent/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POE-Loop-AnyEvent/pkg-plist Thu Apr 2 19:20:52 2015 (r383051) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/POE/Loop/AnyEvent.pm +%%PERL5_MAN3%%/POE::Loop::AnyEvent.3.gz