From owner-svn-ports-all@FreeBSD.ORG Sat Jun 13 13:51:14 2015 Return-Path: Delivered-To: svn-ports-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E4BE247; Sat, 13 Jun 2015 13:51:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) 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 D7B0F930; Sat, 13 Jun 2015 13:51:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5DDpDRl044813; Sat, 13 Jun 2015 13:51:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5DDpDdJ044811; Sat, 13 Jun 2015 13:51:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201506131351.t5DDpDdJ044811@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 13 Jun 2015 13:51:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389360 - head/devel/p5-Data-Table 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: Sat, 13 Jun 2015 13:51:14 -0000 Author: sunpoet Date: Sat Jun 13 13:51:12 2015 New Revision: 389360 URL: https://svnweb.freebsd.org/changeset/ports/389360 Log: - Add LICENSE - Add NO_ARCH - Update and reformat pkg-descr - Take maintainership Modified: head/devel/p5-Data-Table/Makefile head/devel/p5-Data-Table/pkg-descr Modified: head/devel/p5-Data-Table/Makefile ============================================================================== --- head/devel/p5-Data-Table/Makefile Sat Jun 13 13:51:07 2015 (r389359) +++ head/devel/p5-Data-Table/Makefile Sat Jun 13 13:51:12 2015 (r389360) @@ -8,10 +8,14 @@ CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Data type related to database tables, HTML table displays, etc -USES= perl5 +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +NO_ARCH= yes USE_PERL5= configure +USES= perl5 .include Modified: head/devel/p5-Data-Table/pkg-descr ============================================================================== --- head/devel/p5-Data-Table/pkg-descr Sat Jun 13 13:51:07 2015 (r389359) +++ head/devel/p5-Data-Table/pkg-descr Sat Jun 13 13:51:12 2015 (r389360) @@ -1,15 +1,15 @@ -This perl package uses perl5 objects to make it easy for manipulating +This perl package uses perl5 objects to make it easy for manipulating spreadsheet data among disk files, database, and Web publishing. -A table object contains a header and a two-dimensional array of scalars. -Three class methods Data::Table::fromCSV, Data::Table::fromTSV, and -Data::Table::fromSQL allow users to create a table object from a CSV/TSV -file or a database SQL selection in a snap. +A table object contains a header and a two-dimensional array of scalars. Four +class methods Data::fromFile, Data::Table::fromCSV, Data::Table::fromTSV, and +Data::Table::fromSQL allow users to create a table object from a CSV/TSV file or +a database SQL selection in a snap. -Table methods provide basic access, add, delete row(s) or column(s) -operations, as well as more advanced sub-table extraction, table sorting, -record matching via keywords or patterns, table merging, and web -publishing. Data::Table class also provides a straightforward interface to -other popular Perl modules such as DBI and GD::Graph. +Table methods provide basic access, add, delete row(s) or column(s) operations, +as well as more advanced sub-table extraction, table sorting, record matching +via keywords or patterns, table merging, and web publishing. Data::Table class +also provides a straightforward interface to other popular Perl modules such as +DBI and GD::Graph. WWW: http://search.cpan.org/dist/Data-Table/