From owner-svn-ports-all@FreeBSD.ORG Thu Aug 28 12:10:14 2014 Return-Path: Delivered-To: svn-ports-all@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 F150CF6; Thu, 28 Aug 2014 12:10:13 +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 D118C1B68; Thu, 28 Aug 2014 12:10:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7SCADTb009303; Thu, 28 Aug 2014 12:10:13 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7SCACQV009297; Thu, 28 Aug 2014 12:10:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201408281210.s7SCACQV009297@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 28 Aug 2014 12:10:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366398 - in head/databases: . p5-Protocol-CassandraCQL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Aug 2014 12:10:14 -0000 Author: pi Date: Thu Aug 28 12:10:12 2014 New Revision: 366398 URL: http://svnweb.freebsd.org/changeset/ports/366398 QAT: https://qat.redports.org/buildarchive/r366398/ Log: New port: databases/p5-Protocol-CassandraCQL This module provides the basic constants and other support functions required to communicate with a Cassandra database using CQL3. It is not in itself a CQL client; it simply provides the necessary support functions to allow one to be written. For a complete client, see instead Net::Async::CassandraCQL. WWW: http://search.cpan.org/dist/Protocol-CassandraCQL/ PR: 186055 Submitted by: admins@perceptyx.com Added: head/databases/p5-Protocol-CassandraCQL/ head/databases/p5-Protocol-CassandraCQL/Makefile (contents, props changed) head/databases/p5-Protocol-CassandraCQL/distinfo (contents, props changed) head/databases/p5-Protocol-CassandraCQL/pkg-descr (contents, props changed) head/databases/p5-Protocol-CassandraCQL/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Aug 28 12:00:03 2014 (r366397) +++ head/databases/Makefile Thu Aug 28 12:10:12 2014 (r366398) @@ -439,6 +439,7 @@ SUBDIR += p5-PostgreSQL-PLPerl-Call SUBDIR += p5-PostgreSQL-PLPerl-Trace SUBDIR += p5-Prophet + SUBDIR += p5-Protocol-CassandraCQL SUBDIR += p5-RRD-Simple SUBDIR += p5-Redis SUBDIR += p5-Redis-hiredis Added: head/databases/p5-Protocol-CassandraCQL/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Protocol-CassandraCQL/Makefile Thu Aug 28 12:10:12 2014 (r366398) @@ -0,0 +1,26 @@ +# Created by: Denis Shaposhnikov +# $FreeBSD$ + +PORTNAME= Protocol-CassandraCQL +PORTVERSION= 0.11 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:PEVANS +PKGNAMEPREFIX= p5- + +MAINTAINER= admins@perceptyx.com +COMMENT= Wire protocol support functions for Cassandra CQL3 + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Compress-Snappy>0:${PORTSDIR}/archivers/p5-Compress-Snappy \ + p5-IO-Socket-IP>0:${PORTSDIR}/net/p5-IO-Socket-IP \ + p5-Test-Fatal>0:${PORTSDIR}/devel/p5-Test-Fatal \ + p5-Test-HexString>0:${PORTSDIR}/devel/p5-Test-HexString +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/databases/p5-Protocol-CassandraCQL/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Protocol-CassandraCQL/distinfo Thu Aug 28 12:10:12 2014 (r366398) @@ -0,0 +1,2 @@ +SHA256 (Protocol-CassandraCQL-0.11.tar.gz) = ea260d43e421ba848c3d366457728ef4c1e0a8086404b7c0034893c9aa87d089 +SIZE (Protocol-CassandraCQL-0.11.tar.gz) = 41598 Added: head/databases/p5-Protocol-CassandraCQL/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Protocol-CassandraCQL/pkg-descr Thu Aug 28 12:10:12 2014 (r366398) @@ -0,0 +1,8 @@ +This module provides the basic constants and other support functions +required to communicate with a Cassandra database using CQL3. It is +not in itself a CQL client; it simply provides the necessary support +functions to allow one to be written. + +For a complete client, see instead Net::Async::CassandraCQL. + +WWW: http://search.cpan.org/dist/Protocol-CassandraCQL/ Added: head/databases/p5-Protocol-CassandraCQL/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Protocol-CassandraCQL/pkg-plist Thu Aug 28 12:10:12 2014 (r366398) @@ -0,0 +1,19 @@ +%%SITE_PERL%%/Protocol/CassandraCQL.pm +%%SITE_PERL%%/Protocol/CassandraCQL/Client.pm +%%SITE_PERL%%/Protocol/CassandraCQL/ColumnMeta.pm +%%SITE_PERL%%/Protocol/CassandraCQL/Frame.pm +%%SITE_PERL%%/Protocol/CassandraCQL/Frames.pm +%%SITE_PERL%%/Protocol/CassandraCQL/Result.pm +%%SITE_PERL%%/Protocol/CassandraCQL/Type.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Protocol/CassandraCQL/.packlist +%%PERL5_MAN3%%/Protocol::CassandraCQL.3.gz +%%PERL5_MAN3%%/Protocol::CassandraCQL::Client.3.gz +%%PERL5_MAN3%%/Protocol::CassandraCQL::ColumnMeta.3.gz +%%PERL5_MAN3%%/Protocol::CassandraCQL::Frame.3.gz +%%PERL5_MAN3%%/Protocol::CassandraCQL::Frames.3.gz +%%PERL5_MAN3%%/Protocol::CassandraCQL::Result.3.gz +%%PERL5_MAN3%%/Protocol::CassandraCQL::Type.3.gz +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Protocol/CassandraCQL +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Protocol +@dirrmtry %%SITE_PERL%%/Protocol/CassandraCQL +@dirrmtry %%SITE_PERL%%/Protocol