diff options
author | Kris Moore <kmoore@FreeBSD.org> | 2017-01-12 03:53:54 +0800 |
---|---|---|
committer | Kris Moore <kmoore@FreeBSD.org> | 2017-01-12 03:53:54 +0800 |
commit | 9ed5e870072ed45efe783a47b495ca73a229814f (patch) | |
tree | 7c0ee0a7f50632d30285daa7aa48411d68de1378 /textproc | |
parent | ba6bf4b4aba474667c636b002ab59bfbc61c3612 (diff) | |
download | freebsd-ports-gnome-9ed5e870072ed45efe783a47b495ca73a229814f.tar.gz freebsd-ports-gnome-9ed5e870072ed45efe783a47b495ca73a229814f.tar.zst freebsd-ports-gnome-9ed5e870072ed45efe783a47b495ca73a229814f.zip |
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
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/py-tabletext/Makefile | 18 | ||||
-rw-r--r-- | textproc/py-tabletext/distinfo | 3 | ||||
-rw-r--r-- | textproc/py-tabletext/pkg-descr | 5 |
4 files changed, 27 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index a1fad1d126e0..834723d332c0 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -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 diff --git a/textproc/py-tabletext/Makefile b/textproc/py-tabletext/Makefile new file mode 100644 index 000000000000..c0573cac2cef --- /dev/null +++ b/textproc/py-tabletext/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= tabletext +PORTVERSION= 0.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kmoore@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> diff --git a/textproc/py-tabletext/distinfo b/textproc/py-tabletext/distinfo new file mode 100644 index 000000000000..1c54f77aeb44 --- /dev/null +++ b/textproc/py-tabletext/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1484154586 +SHA256 (tabletext-0.1.tar.gz) = 7fd53c6acb9641cf0b6641ff9675ce3818d4b0541b9e05e8219c90ffc8512337 +SIZE (tabletext-0.1.tar.gz) = 6125 diff --git a/textproc/py-tabletext/pkg-descr b/textproc/py-tabletext/pkg-descr new file mode 100644 index 000000000000..d6b09461b61b --- /dev/null +++ b/textproc/py-tabletext/pkg-descr @@ -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 |