Date: Mon, 21 Dec 2015 14:39:08 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404110 - in head/graphics: . p5-Data-Google-Visualization-DataTable Message-ID: <201512211439.tBLEd8Xe081017@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Mon Dec 21 14:39:08 2015 New Revision: 404110 URL: https://svnweb.freebsd.org/changeset/ports/404110 Log: Easily create Google DataTable objects for the Google Visulization API. This module is attempts to hide the gory details of preparing your data before sending it to a JSON serializer - more specifically, hiding some of the hoops that have to be jump through for making sure your data serializes to the right data types. WWW: http://search.cpan.org/dist/Data-Google-Visualization-DataTable/ PR: 204061 Submitted by: jeremybbaggs@gmail.com Approved by: mat (mentor) Differential Revision: D4637 Added: head/graphics/p5-Data-Google-Visualization-DataTable/ head/graphics/p5-Data-Google-Visualization-DataTable/Makefile (contents, props changed) head/graphics/p5-Data-Google-Visualization-DataTable/distinfo (contents, props changed) head/graphics/p5-Data-Google-Visualization-DataTable/pkg-descr (contents, props changed) head/graphics/p5-Data-Google-Visualization-DataTable/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Dec 21 14:28:49 2015 (r404109) +++ head/graphics/Makefile Mon Dec 21 14:39:08 2015 (r404110) @@ -728,6 +728,7 @@ SUBDIR += p5-URI-GoogleChart SUBDIR += p5-VCG SUBDIR += p5-Visio + SUBDIR += p5-Data-Google-Visualization-DataTable SUBDIR += p5-feedgnuplot SUBDIR += p5-ming SUBDIR += panoglview Added: head/graphics/p5-Data-Google-Visualization-DataTable/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataTable/Makefile Mon Dec 21 14:39:08 2015 (r404110) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= Data-Google-Visualization-DataTable +PORTVERSION= 0.11 +CATEGORIES= graphics perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= jeremybbaggs@gmail.com +COMMENT= Easily create Google DataTable objects for the Google Visulization API + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-JSON-XS>=2.0:${PORTSDIR}/converters/p5-JSON-XS +RUN_DEPENDS= p5-JSON-XS>=2.0:${PORTSDIR}/converters/p5-JSON-XS + +USES= perl5 +USE_PERL5= configure + +.include <bsd.port.mk> Added: head/graphics/p5-Data-Google-Visualization-DataTable/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataTable/distinfo Mon Dec 21 14:39:08 2015 (r404110) @@ -0,0 +1,2 @@ +SHA256 (Data-Google-Visualization-DataTable-0.11.tar.gz) = 1d3b9002dd781a1dd8a7959b1c55e0a22ac9b0623e09cbeb9ff38927a04f664d +SIZE (Data-Google-Visualization-DataTable-0.11.tar.gz) = 21002 Added: head/graphics/p5-Data-Google-Visualization-DataTable/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataTable/pkg-descr Mon Dec 21 14:39:08 2015 (r404110) @@ -0,0 +1,8 @@ +Easily create Google DataTable objects for the Google Visulization API. + +This module is attempts to hide the gory details of preparing your data +before sending it to a JSON serializer - more specifically, hiding some +of the hoops that have to be jump through for making sure your data +serializes to the right data types. + +WWW: http://search.cpan.org/dist/Data-Google-Visualization-DataTable/ Added: head/graphics/p5-Data-Google-Visualization-DataTable/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Data-Google-Visualization-DataTable/pkg-plist Mon Dec 21 14:39:08 2015 (r404110) @@ -0,0 +1,3 @@ +%%SITE_PERL%%/Data/Google/Visualization/DataTable.pm +%%SITE_PERL%%/Data/Google/Visualization/DataTable.pm.orig +%%PERL5_MAN3%%/Data::Google::Visualization::DataTable.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512211439.tBLEd8Xe081017>