From owner-svn-ports-head@freebsd.org Mon Sep 24 08:10:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 876DA10A609D; Mon, 24 Sep 2018 08:10:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3995F73B0E; Mon, 24 Sep 2018 08:10:20 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3380A16B58; Mon, 24 Sep 2018 08:10:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8O8AKYR028273; Mon, 24 Sep 2018 08:10:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8O8AJoI028265; Mon, 24 Sep 2018 08:10:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201809240810.w8O8AJoI028265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 24 Sep 2018 08:10:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480554 - in head/textproc: . p5-Text-Table-XLSX X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/textproc: . p5-Text-Table-XLSX X-SVN-Commit-Revision: 480554 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2018 08:10:20 -0000 Author: sunpoet Date: Mon Sep 24 08:10:19 2018 New Revision: 480554 URL: https://svnweb.freebsd.org/changeset/ports/480554 Log: Add p5-Text-Table-XLSX 0.001 Text::Table::XLSX provides a single function, table, which takes a two-dimensional array of data and generate an XLSX data stream from it. It's basically a very thin wrapper for Spreadsheet::GenerateXLSX. WWW: https://metacpan.org/release/Text-Table-XLSX Added: head/textproc/p5-Text-Table-XLSX/ head/textproc/p5-Text-Table-XLSX/Makefile (contents, props changed) head/textproc/p5-Text-Table-XLSX/distinfo (contents, props changed) head/textproc/p5-Text-Table-XLSX/pkg-descr (contents, props changed) head/textproc/p5-Text-Table-XLSX/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Sep 24 08:09:56 2018 (r480553) +++ head/textproc/Makefile Mon Sep 24 08:10:19 2018 (r480554) @@ -958,6 +958,7 @@ SUBDIR += p5-Text-Table-Any SUBDIR += p5-Text-Table-Manifold SUBDIR += p5-Text-Table-Tiny + SUBDIR += p5-Text-Table-XLSX SUBDIR += p5-Text-Tabs+Wrap SUBDIR += p5-Text-TabularDisplay SUBDIR += p5-Text-Tags Added: head/textproc/p5-Text-Table-XLSX/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-XLSX/Makefile Mon Sep 24 08:10:19 2018 (r480554) @@ -0,0 +1,25 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Text-Table-XLSX +PORTVERSION= 0.001 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate XLSX worksheet + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Spreadsheet-GenerateXLSX>=0:textproc/p5-Spreadsheet-GenerateXLSX + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/textproc/p5-Text-Table-XLSX/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-XLSX/distinfo Mon Sep 24 08:10:19 2018 (r480554) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537768691 +SHA256 (Text-Table-XLSX-0.001.tar.gz) = 43af63a3b8366f3a79c020da4d272d974f21e76dd5755097c9e3920ce95a80b1 +SIZE (Text-Table-XLSX-0.001.tar.gz) = 14183 Added: head/textproc/p5-Text-Table-XLSX/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-XLSX/pkg-descr Mon Sep 24 08:10:19 2018 (r480554) @@ -0,0 +1,5 @@ +Text::Table::XLSX provides a single function, table, which takes a +two-dimensional array of data and generate an XLSX data stream from it. It's +basically a very thin wrapper for Spreadsheet::GenerateXLSX. + +WWW: https://metacpan.org/release/Text-Table-XLSX Added: head/textproc/p5-Text-Table-XLSX/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-XLSX/pkg-plist Mon Sep 24 08:10:19 2018 (r480554) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Text/Table/XLSX.pm +%%PERL5_MAN3%%/Text::Table::XLSX.3.gz