From owner-svn-ports-all@freebsd.org Mon Dec 21 14:44:50 2015 Return-Path: Delivered-To: svn-ports-all@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 D51F0A4E91C; Mon, 21 Dec 2015 14:44:50 +0000 (UTC) (envelope-from miwi@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 ADEE712DB; Mon, 21 Dec 2015 14:44:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBLEinU9084028; Mon, 21 Dec 2015 14:44:49 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBLEinb4084023; Mon, 21 Dec 2015 14:44:49 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512211444.tBLEinb4084023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 21 Dec 2015 14:44:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404111 - in head/graphics: . p5-Data-Google-Visualization-DataSource 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.20 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: Mon, 21 Dec 2015 14:44:50 -0000 Author: miwi Date: Mon Dec 21 14:44:49 2015 New Revision: 404111 URL: https://svnweb.freebsd.org/changeset/ports/404111 Log: Perl helper class for implementing the Google Chart Tools Datasource Protocol. The Google Visualization API is a nifty bit of kit for generating pretty pictures from your data. By design it has a fair amount of Google-cruft, such as non-standard JSON and stuffing configuration options in to a single CGI query parameter. Data::Google::Visualization::DataTable takes care of preparing data for the API. WWW: http://search.cpan.org/dist/Data-Google-Visualization-DataSource/ PR: 204060 Submitted by: jeremybbaggs@gmail.com Approved by: mat (mentor) Differential Revision: D4640 Added: head/graphics/p5-Data-Google-Visualization-DataSource/ head/graphics/p5-Data-Google-Visualization-DataSource/Makefile (contents, props changed) head/graphics/p5-Data-Google-Visualization-DataSource/distinfo (contents, props changed) head/graphics/p5-Data-Google-Visualization-DataSource/pkg-descr (contents, props changed) head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Dec 21 14:39:08 2015 (r404110) +++ head/graphics/Makefile Mon Dec 21 14:44:49 2015 (r404111) @@ -728,6 +728,7 @@ SUBDIR += p5-URI-GoogleChart SUBDIR += p5-VCG SUBDIR += p5-Visio + SUBDIR += p5-Data-Google-Visualization-DataSource SUBDIR += p5-Data-Google-Visualization-DataTable SUBDIR += p5-feedgnuplot SUBDIR += p5-ming Added: head/graphics/p5-Data-Google-Visualization-DataSource/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataSource/Makefile Mon Dec 21 14:44:49 2015 (r404111) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= Data-Google-Visualization-DataSource +PORTVERSION= 0.01 +CATEGORIES= graphics perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= jeremybbaggs@gmail.com +COMMENT= Perl helper class for the Google Chart Tools Datasource Protocol + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Clone>=0:${PORTSDIR}/devel/p5-Clone \ + p5-Data-Google-Visualization-DataTable>=0:${PORTSDIR}/graphics/p5-Data-Google-Visualization-DataTable \ + p5-JSON-XS>=2.0:${PORTSDIR}/converters/p5-JSON-XS \ + p5-Moose>=0:${PORTSDIR}/devel/p5-Moose +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/graphics/p5-Data-Google-Visualization-DataSource/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataSource/distinfo Mon Dec 21 14:44:49 2015 (r404111) @@ -0,0 +1,2 @@ +SHA256 (Data-Google-Visualization-DataSource-0.01.tar.gz) = c11178e5bcd3d80c9d8d8f515525b39f096850a0bbe2ac4bb947f571984b2e2f +SIZE (Data-Google-Visualization-DataSource-0.01.tar.gz) = 15636 Added: head/graphics/p5-Data-Google-Visualization-DataSource/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataSource/pkg-descr Mon Dec 21 14:44:49 2015 (r404111) @@ -0,0 +1,11 @@ +Perl helper class for implementing the Google Chart Tools Datasource Protocol. + +The Google Visualization API is a nifty bit of kit for generating pretty +pictures from your data. By design it has a fair amount of Google-cruft, such +as non-standard JSON and stuffing configuration options in to a single CGI +query parameter. + +Data::Google::Visualization::DataTable takes care of preparing data for the +API. + +WWW: http://search.cpan.org/dist/Data-Google-Visualization-DataSource/ Added: head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist Mon Dec 21 14:44:49 2015 (r404111) @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Data/Google/Visualization/DataSource.pm +%%SITE_PERL%%/Data/Google/Visualization/README.pod +%%PERL5_MAN3%%/Data::Google::Visualization::DataSource.3.gz +%%PERL5_MAN3%%/Data::Google::Visualization::README.3.gz