svn commit: r431205 - in head/textproc: . py-tabletext

Kris Moore kmoore at FreeBSD.org
Wed Jan 11 19:53:56 UTC 2017


Author: kmoore
Date: Wed Jan 11 19:53:54 2017
New Revision: 431205
URL: https://svnweb.freebsd.org/changeset/ports/431205

Log:
  tabletext is a Python library to format (pretty-print) tabular data as
  text tables. Its goal is to be as simple as possible, while allowing
  optional customization of the output.
  
  WWW: https://pypi.python.org/pypi/tabletext

Added:
  head/textproc/py-tabletext/
  head/textproc/py-tabletext/Makefile   (contents, props changed)
  head/textproc/py-tabletext/distinfo   (contents, props changed)
  head/textproc/py-tabletext/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Wed Jan 11 19:42:49 2017	(r431204)
+++ head/textproc/Makefile	Wed Jan 11 19:53:54 2017	(r431205)
@@ -1316,6 +1316,7 @@
     SUBDIR += py-sphinxcontrib-httpdomain
     SUBDIR += py-sphinxcontrib-programoutput
     SUBDIR += py-syck
+    SUBDIR += py-tabletext
     SUBDIR += py-terminaltables
     SUBDIR += py-texttable
     SUBDIR += py-tinycss

Added: head/textproc/py-tabletext/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-tabletext/Makefile	Wed Jan 11 19:53:54 2017	(r431205)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	tabletext
+PORTVERSION=	0.1
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	kmoore at FreeBSD.org
+COMMENT=	Python library to pretty-print tabular data
+
+LICENSE=	GPLv3
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/py-tabletext/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-tabletext/distinfo	Wed Jan 11 19:53:54 2017	(r431205)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1484154586
+SHA256 (tabletext-0.1.tar.gz) = 7fd53c6acb9641cf0b6641ff9675ce3818d4b0541b9e05e8219c90ffc8512337
+SIZE (tabletext-0.1.tar.gz) = 6125

Added: head/textproc/py-tabletext/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-tabletext/pkg-descr	Wed Jan 11 19:53:54 2017	(r431205)
@@ -0,0 +1,5 @@
+tabletext is a Python library to format (pretty-print) tabular data as 
+text tables. Its goal is to be as simple as possible, while allowing
+optional customization of the output.
+
+WWW: https://pypi.python.org/pypi/tabletext


More information about the svn-ports-all mailing list