From owner-svn-ports-head@FreeBSD.ORG Thu Aug 28 14:27:14 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 A09FE398; Thu, 28 Aug 2014 14:27:14 +0000 (UTC) Received: from mail-ob0-x22c.google.com (mail-ob0-x22c.google.com [IPv6:2607:f8b0:4003:c01::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 41BE51CE8; Thu, 28 Aug 2014 14:27:14 +0000 (UTC) Received: by mail-ob0-f172.google.com with SMTP id wo20so658793obc.31 for ; Thu, 28 Aug 2014 07:27:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=jkdzm6NeQZ5uXaj+1sLThmyTSxqDPYPqQdGM0gtLN9s=; b=XylFqLb1Ilp89lsLuKFHJSTVOQsaGAjF0W1YqQhTJ8J95VvcDB8rYKEy1jxBG2i3Yw vBJGC5efYQgF7TnDaPYSF1ggAmQkDrOCPNobnxXjqiG5yL9iuprTC+Bi8s8mvsoBPWyF TnHSJb8X5vUM+Tmeg2iXUSQe3+r0EckAd34P3y4L8iFBjMHMqzVLTjG1ptJqGuQeNaNe Q8/yLZVKUPZNTgx7qQYVKjOozDxGSDCBWXnyDwAdiSaowAlR2frdmbTuTF9VBPUOhgp0 +wDn2XatcWjWj9hpRySAz5H3YkpHJsm9twNpqQHTSdZKEqsxpzIzhQEwiehWb/GYOcy5 A1rg== MIME-Version: 1.0 X-Received: by 10.182.126.233 with SMTP id nb9mr3918142obb.46.1409236033453; Thu, 28 Aug 2014 07:27:13 -0700 (PDT) Sender: andrej.zverev@gmail.com Received: by 10.182.17.40 with HTTP; Thu, 28 Aug 2014 07:27:13 -0700 (PDT) In-Reply-To: <201408281407.s7SE77sA063958@svn.freebsd.org> References: <201408281407.s7SE77sA063958@svn.freebsd.org> Date: Thu, 28 Aug 2014 18:27:13 +0400 X-Google-Sender-Auth: QkbKl-p8K8Up-6MQXmu1yTFdSn0 Message-ID: Subject: Re: svn commit: r366405 - in head/databases: . p5-Net-Async-CassandraCQL From: Andrej Zverev To: Kurt Jaeger Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" 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, 28 Aug 2014 14:27:14 -0000 Just note. In real life, modules from Test:: namespace usually requires only for tests. No issue for people who using binary packages, but extra deps for people who still using ports. http://cpansearch.perl.org/src/PEVANS/Net-Async-CassandraCQL-0.11/Build.PL On Thu, Aug 28, 2014 at 6:07 PM, Kurt Jaeger wrote: > Author: pi > Date: Thu Aug 28 14:07:07 2014 > New Revision: 366405 > URL: http://svnweb.freebsd.org/changeset/ports/366405 > QAT: https://qat.redports.org/buildarchive/r366405/ > > Log: > New port: databases/p5-Net-Async-CassandraCQL > > This module allows use of the CQL3 interface of a Cassandra > database. It fully supports asynchronous operation via IO::Async, > allowing both direct queries and prepared statements to be managed > concurrently, if required. Alternatively, as the interface is entirely > based on Future objects, it can be operated synchronously in a > blocking fashion by simply awaiting each individual operation by > calling the get method. > > WWW: http://search.cpan.org/dist/Net-Async-CassandraCQL/ > > PR: 186057 > Submitted by: admins@perceptyx.com > > Added: > head/databases/p5-Net-Async-CassandraCQL/ > head/databases/p5-Net-Async-CassandraCQL/Makefile (contents, props > changed) > head/databases/p5-Net-Async-CassandraCQL/distinfo (contents, props > changed) > head/databases/p5-Net-Async-CassandraCQL/pkg-descr (contents, props > changed) > head/databases/p5-Net-Async-CassandraCQL/pkg-plist (contents, props > changed) > Modified: > head/databases/Makefile > > Modified: head/databases/Makefile > > ============================================================================== > --- head/databases/Makefile Thu Aug 28 13:59:13 2014 (r366404) > +++ head/databases/Makefile Thu Aug 28 14:07:07 2014 (r366405) > @@ -428,6 +428,7 @@ > SUBDIR += p5-Metadata > SUBDIR += p5-MongoDB > SUBDIR += p5-MySQL-Diff > + SUBDIR += p5-Net-Async-CassandraCQL > SUBDIR += p5-ORLite > SUBDIR += p5-ORLite-Migrate > SUBDIR += p5-Oryx > > Added: head/databases/p5-Net-Async-CassandraCQL/Makefile > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/p5-Net-Async-CassandraCQL/Makefile Thu Aug 28 > 14:07:07 2014 (r366405) > @@ -0,0 +1,31 @@ > +# Created by: Denis Shaposhnikov > +# $FreeBSD$ > + > +PORTNAME= Net-Async-CassandraCQL > +PORTVERSION= 0.11 > +CATEGORIES= databases perl5 > +MASTER_SITES= CPAN > +MASTER_SITE_SUBDIR= Net > +PKGNAMEPREFIX= p5- > + > +MAINTAINER= admins@perceptyx.com > +COMMENT= Use Cassandra databases with IO::Async using CQL > + > +LICENSE= ART10 GPLv1 > +LICENSE_COMB= dual > + > +BUILD_DEPENDS= > p5-Compress-Snappy>0:${PORTSDIR}/archivers/p5-Compress-Snappy \ > + > devel/p5-Devel-GlobalDestruction>0:${PORTSDIR}/devel/p5-Devel-GlobalDestruction > \ > + p5-Future>0:${PORTSDIR}/devel/p5-Future \ > + p5-IO-Async>0:${PORTSDIR}/devel/p5-IO-Async \ > + p5-IO-Socket-IP>0:${PORTSDIR}/net/p5-IO-Socket-IP \ > + p5-Test-Identity>0:${PORTSDIR}/devel/p5-Test-Identity \ > + p5-Test-Refcount>0:${PORTSDIR}/devel/p5-Test-Refcount \ > + p5-Compress-LZ4>0:${PORTSDIR}/archivers/p5-Compress-LZ4 \ > + > p5-Protocol-CassandraCQL>0:${PORTSDIR}/databases/p5-Protocol-CassandraCQL > +RUN_DEPENDS:= ${BUILD_DEPENDS} > + > +USES= perl5 > +USE_PERL5= configure > + > +.include > > Added: head/databases/p5-Net-Async-CassandraCQL/distinfo > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/p5-Net-Async-CassandraCQL/distinfo Thu Aug 28 > 14:07:07 2014 (r366405) > @@ -0,0 +1,2 @@ > +SHA256 (Net-Async-CassandraCQL-0.11.tar.gz) = > 92b758ab2ff66a726eca423771787a5afb4c5c15031f5da6afeae68e1df2aee0 > +SIZE (Net-Async-CassandraCQL-0.11.tar.gz) = 45237 > > Added: head/databases/p5-Net-Async-CassandraCQL/pkg-descr > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/p5-Net-Async-CassandraCQL/pkg-descr Thu Aug 28 > 14:07:07 2014 (r366405) > @@ -0,0 +1,9 @@ > +This module allows use of the CQL3 interface of a Cassandra > +database. It fully supports asynchronous operation via IO::Async, > +allowing both direct queries and prepared statements to be managed > +concurrently, if required. Alternatively, as the interface is entirely > +based on Future objects, it can be operated synchronously in a > +blocking fashion by simply awaiting each individual operation by > +calling the get method. > + > +WWW: http://search.cpan.org/dist/Net-Async-CassandraCQL/ > > Added: head/databases/p5-Net-Async-CassandraCQL/pkg-plist > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/p5-Net-Async-CassandraCQL/pkg-plist Thu Aug 28 > 14:07:07 2014 (r366405) > @@ -0,0 +1,13 @@ > +%%SITE_PERL%%/Net/Async/CassandraCQL.pm > +%%SITE_PERL%%/Net/Async/CassandraCQL/Connection.pm > +%%SITE_PERL%%/Net/Async/CassandraCQL/Query.pm > +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Async/CassandraCQL/.packlist > +%%PERL5_MAN3%%/Net::Async::CassandraCQL.3.gz > +%%PERL5_MAN3%%/Net::Async::CassandraCQL::Connection.3.gz > +%%PERL5_MAN3%%/Net::Async::CassandraCQL::Query.3.gz > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Async/CassandraCQL > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Async > +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net > +@dirrmtry %%SITE_PERL%%/Net/Async/CassandraCQL > +@dirrmtry %%SITE_PERL%%/Net/Async > +@dirrmtry %%SITE_PERL%%/Net > >