Date: Sat, 28 Jul 2018 13:16:05 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475558 - in head/textproc: . p5-Text-Table-ASV Message-ID: <201807281316.w6SDG5Ox006743@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Jul 28 13:16:04 2018 New Revision: 475558 URL: https://svnweb.freebsd.org/changeset/ports/475558 Log: Add p5-Text-Table-ASV 0.001 Text::Table::ASV provides a single function, table, which formats a two-dimensional array of data as ASV. This is basically a way to generate ASV using the same interface as that of Text::Table::Tiny (v0.03) or Text::Table::Org. ASV (ASCII separated values, also sometimes DEL a.k.a. Delimited ASCII) is a format similar to TSV (tab separated values). Instead of Tab character ("\t") as the field separator, ASV uses "\x1f" (ASCII Unit Separator character) and instead of newline ("\n") as the record separator, ASV uses "\x1e" (ASCII Record Separator). There is currently no quoting or escaping mechanism provided. "\x1c", "\x1d", "\x1e", and "\x1f" characters in cell will be replaced by spaces. WWW: https://metacpan.org/release/Text-Table-ASV Added: head/textproc/p5-Text-Table-ASV/ head/textproc/p5-Text-Table-ASV/Makefile (contents, props changed) head/textproc/p5-Text-Table-ASV/distinfo (contents, props changed) head/textproc/p5-Text-Table-ASV/pkg-descr (contents, props changed) head/textproc/p5-Text-Table-ASV/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Jul 28 13:15:41 2018 (r475557) +++ head/textproc/Makefile Sat Jul 28 13:16:04 2018 (r475558) @@ -950,6 +950,7 @@ SUBDIR += p5-Text-SpellChecker SUBDIR += p5-Text-Striphigh SUBDIR += p5-Text-Table + SUBDIR += p5-Text-Table-ASV SUBDIR += p5-Text-Table-Manifold SUBDIR += p5-Text-Tabs+Wrap SUBDIR += p5-Text-TabularDisplay Added: head/textproc/p5-Text-Table-ASV/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-ASV/Makefile Sat Jul 28 13:16:04 2018 (r475558) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= Text-Table-ASV +PORTVERSION= 0.001 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate TSV + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +.include <bsd.port.mk> Added: head/textproc/p5-Text-Table-ASV/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-ASV/distinfo Sat Jul 28 13:16:04 2018 (r475558) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532770589 +SHA256 (Text-Table-ASV-0.001.tar.gz) = a05c79a3a063e1c1593fa91d876414dbac9391b2a248b6553f31b6537faf651a +SIZE (Text-Table-ASV-0.001.tar.gz) = 15413 Added: head/textproc/p5-Text-Table-ASV/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-ASV/pkg-descr Sat Jul 28 13:16:04 2018 (r475558) @@ -0,0 +1,14 @@ +Text::Table::ASV provides a single function, table, which formats a +two-dimensional array of data as ASV. This is basically a way to generate ASV +using the same interface as that of Text::Table::Tiny (v0.03) or +Text::Table::Org. + +ASV (ASCII separated values, also sometimes DEL a.k.a. Delimited ASCII) is a +format similar to TSV (tab separated values). Instead of Tab character ("\t") as +the field separator, ASV uses "\x1f" (ASCII Unit Separator character) and +instead of newline ("\n") as the record separator, ASV uses "\x1e" (ASCII Record +Separator). There is currently no quoting or escaping mechanism provided. +"\x1c", "\x1d", "\x1e", and "\x1f" characters in cell will be replaced by +spaces. + +WWW: https://metacpan.org/release/Text-Table-ASV Added: head/textproc/p5-Text-Table-ASV/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Table-ASV/pkg-plist Sat Jul 28 13:16:04 2018 (r475558) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Text/Table/ASV.pm +%%PERL5_MAN3%%/Text::Table::ASV.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807281316.w6SDG5Ox006743>