svn commit: r499501 - in head/textproc: . p5-Text-MarkdownTable

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Apr 21 00:19:54 UTC 2019


Author: sunpoet
Date: Sun Apr 21 00:19:52 2019
New Revision: 499501
URL: https://svnweb.freebsd.org/changeset/ports/499501

Log:
  Add p5-Text-MarkdownTable 0.3.1
  
  Text::MarkdownTable can be used to write data in tabular form, formatted in
  MultiMarkdown syntax. The resulting format can be used for instance to display
  CSV data or to include data tables in Markdown files. Newlines and vertical bars
  in table cells are replaced by a space character and cell values can be
  truncated.
  
  WWW: https://metacpan.org/release/Text-MarkdownTable

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Apr 21 00:19:20 2019	(r499500)
+++ head/textproc/Makefile	Sun Apr 21 00:19:52 2019	(r499501)
@@ -927,6 +927,7 @@
     SUBDIR += p5-Text-Language-Guess
     SUBDIR += p5-Text-Lorem
     SUBDIR += p5-Text-Markdown
+    SUBDIR += p5-Text-MarkdownTable
     SUBDIR += p5-Text-Match-FastAlternatives
     SUBDIR += p5-Text-Metaphone
     SUBDIR += p5-Text-MicroMason

Added: head/textproc/p5-Text-MarkdownTable/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-MarkdownTable/Makefile	Sun Apr 21 00:19:52 2019	(r499501)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Text-MarkdownTable
+PORTVERSION=	0.3.1
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Write Markdown syntax tables from data
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	p5-IO-Handle-Util>=0.01:devel/p5-IO-Handle-Util \
+		p5-Moo>=1.000008:devel/p5-Moo
+
+USES=		perl5
+USE_PERL5=	modbuildtiny
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/p5-Text-MarkdownTable/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-MarkdownTable/distinfo	Sun Apr 21 00:19:52 2019	(r499501)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1552169392
+SHA256 (Text-MarkdownTable-0.3.1.tar.gz) = 6ca9c2cbac652f3f7be518a1f548f0d53be1e799227bb7ed55752ebf5940a952
+SIZE (Text-MarkdownTable-0.3.1.tar.gz) = 13155

Added: head/textproc/p5-Text-MarkdownTable/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-MarkdownTable/pkg-descr	Sun Apr 21 00:19:52 2019	(r499501)
@@ -0,0 +1,7 @@
+Text::MarkdownTable can be used to write data in tabular form, formatted in
+MultiMarkdown syntax. The resulting format can be used for instance to display
+CSV data or to include data tables in Markdown files. Newlines and vertical bars
+in table cells are replaced by a space character and cell values can be
+truncated.
+
+WWW: https://metacpan.org/release/Text-MarkdownTable

Added: head/textproc/p5-Text-MarkdownTable/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-MarkdownTable/pkg-plist	Sun Apr 21 00:19:52 2019	(r499501)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Text/MarkdownTable.pm
+%%PERL5_MAN3%%/Text::MarkdownTable.3.gz


More information about the svn-ports-head mailing list