From owner-svn-ports-head@freebsd.org Wed Jan 11 19:53:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79AC0CABB3A; Wed, 11 Jan 2017 19:53:56 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F03B19B4; Wed, 11 Jan 2017 19:53:56 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0BJrtuJ043236; Wed, 11 Jan 2017 19:53:55 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0BJrtvS043231; Wed, 11 Jan 2017 19:53:55 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201701111953.v0BJrtvS043231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Wed, 11 Jan 2017 19:53:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431205 - in head/textproc: . py-tabletext X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jan 2017 19:53:56 -0000 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@FreeBSD.org +COMMENT= Python library to pretty-print tabular data + +LICENSE= GPLv3 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include 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