svn commit: r333177 - in head/textproc: . p5-Text-LTSV

Jun Kuriyama kuriyama at FreeBSD.org
Fri Nov 8 02:05:40 UTC 2013


Author: kuriyama
Date: Fri Nov  8 02:05:38 2013
New Revision: 333177
URL: http://svnweb.freebsd.org/changeset/ports/333177

Log:
  Labeled Tab-separated Values (LTSV) format is a variant of
  Tab-separated Values (TSV).  Each record in a LTSV file is represented
  as a single line.  Each field is separated by TAB and has a label and
  a value. The label and the value have been separated by ':'.
  
  WWW: http://search.cpan.org/dist/Text-LTSV/

Added:
  head/textproc/p5-Text-LTSV/
  head/textproc/p5-Text-LTSV/Makefile   (contents, props changed)
  head/textproc/p5-Text-LTSV/distinfo   (contents, props changed)
  head/textproc/p5-Text-LTSV/pkg-descr   (contents, props changed)
  head/textproc/p5-Text-LTSV/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Nov  8 01:36:37 2013	(r333176)
+++ head/textproc/Makefile	Fri Nov  8 02:05:38 2013	(r333177)
@@ -811,6 +811,7 @@
     SUBDIR += p5-Text-Highlight
     SUBDIR += p5-Text-HikiDoc
     SUBDIR += p5-Text-Hyphen
+    SUBDIR += p5-Text-LTSV
     SUBDIR += p5-Text-Language-Guess
     SUBDIR += p5-Text-Lorem
     SUBDIR += p5-Text-Markdown

Added: head/textproc/p5-Text-LTSV/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-LTSV/Makefile	Fri Nov  8 02:05:38 2013	(r333177)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	Text-LTSV
+PORTVERSION=	0.07
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Perl extension for Labeled Tab Separated Value manipulator
+
+RUN_DEPENDS=	\
+	p5-Project-Libs>0:${PORTSDIR}/devel/p5-Project-Libs \
+	p5-Tie-IxHash>0:${PORTSDIR}/devel/p5-Tie-IxHash \
+	p5-UNIVERSAL-require>0:${PORTSDIR}/devel/p5-UNIVERSAL-require \
+	p5-YAML-Tiny-Color>0:${PORTSDIR}/textproc/p5-YAML-Tiny-Color
+BUILD_DEPENDS=	${RUN_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/textproc/p5-Text-LTSV/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-LTSV/distinfo	Fri Nov  8 02:05:38 2013	(r333177)
@@ -0,0 +1,2 @@
+SHA256 (Text-LTSV-0.07.tar.gz) = 79071c738ece8d6449ffc6a0409ce3c49b554dc435a22d24a01ecf41b5e042bc
+SIZE (Text-LTSV-0.07.tar.gz) = 29197

Added: head/textproc/p5-Text-LTSV/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-LTSV/pkg-descr	Fri Nov  8 02:05:38 2013	(r333177)
@@ -0,0 +1,6 @@
+Labeled Tab-separated Values (LTSV) format is a variant of
+Tab-separated Values (TSV).  Each record in a LTSV file is represented
+as a single line.  Each field is separated by TAB and has a label and
+a value. The label and the value have been separated by ':'.
+
+WWW: http://search.cpan.org/dist/Text-LTSV/

Added: head/textproc/p5-Text-LTSV/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-LTSV/pkg-plist	Fri Nov  8 02:05:38 2013	(r333177)
@@ -0,0 +1,10 @@
+bin/ltsview
+man/man1/ltsview.1.gz
+%%PERL5_MAN3%%/Text::LTSV.3.gz
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/LTSV/.packlist
+%%SITE_PERL%%/Text/LTSV.pm
+%%SITE_PERL%%/Text/LTSV/Iterator.pm
+ at dirrm %%SITE_PERL%%/Text/LTSV
+ at dirrmtry %%SITE_PERL%%/Text
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/LTSV
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text


More information about the svn-ports-head mailing list