Date: Thu, 28 Aug 2014 18:27:13 +0400 From: Andrej Zverev <az@freebsd.org> To: Kurt Jaeger <pi@freebsd.org> Cc: "svn-ports-head@freebsd.org" <svn-ports-head@freebsd.org>, "svn-ports-all@freebsd.org" <svn-ports-all@freebsd.org>, "ports-committers@freebsd.org" <ports-committers@freebsd.org> Subject: Re: svn commit: r366405 - in head/databases: . p5-Net-Async-CassandraCQL Message-ID: <CAD5bB%2Bja4wxWqG1SR88ORm4kyabTqd4ZpaZRTMwJT%2BHnV6O0-w@mail.gmail.com> In-Reply-To: <201408281407.s7SE77sA063958@svn.freebsd.org> References: <201408281407.s7SE77sA063958@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <pi@freebsd.org> 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 <dsh@bamus.cz> > +# $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 <bsd.port.mk> > > 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 > >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAD5bB%2Bja4wxWqG1SR88ORm4kyabTqd4ZpaZRTMwJT%2BHnV6O0-w>