From owner-svn-ports-head@freebsd.org Wed Oct 26 15:59:52 2016 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 29E63C209F0; Wed, 26 Oct 2016 15:59:52 +0000 (UTC) (envelope-from jbeich@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 D37CAED8; Wed, 26 Oct 2016 15:59:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QFxppb098077; Wed, 26 Oct 2016 15:59:51 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9QFxohl098073; Wed, 26 Oct 2016 15:59:50 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201610261559.u9QFxohl098073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 26 Oct 2016 15:59:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424714 - in head/textproc: . py-terminaltables 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, 26 Oct 2016 15:59:52 -0000 Author: jbeich Date: Wed Oct 26 15:59:50 2016 New Revision: 424714 URL: https://svnweb.freebsd.org/changeset/ports/424714 Log: textproc/py-terminaltables: add new port Based on: ports-mgmt/py-pytoport output Easily draw tables in terminal/console applications from a list of lists of strings. Supports multi-line rows. https://pypi.python.org/pypi/terminaltables Added: head/textproc/py-terminaltables/ head/textproc/py-terminaltables/Makefile (contents, props changed) head/textproc/py-terminaltables/distinfo (contents, props changed) head/textproc/py-terminaltables/pkg-descr (contents, props changed) Modified: head/textproc/Makefile (contents, props changed) Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Oct 26 15:59:39 2016 (r424713) +++ head/textproc/Makefile Wed Oct 26 15:59:50 2016 (r424714) @@ -1302,6 +1302,7 @@ SUBDIR += py-sphinxcontrib-httpdomain SUBDIR += py-sphinxcontrib-programoutput SUBDIR += py-syck + SUBDIR += py-terminaltables SUBDIR += py-texttable SUBDIR += py-tinycss SUBDIR += py-toronado Added: head/textproc/py-terminaltables/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-terminaltables/Makefile Wed Oct 26 15:59:50 2016 (r424714) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= terminaltables +PORTVERSION= 3.1.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Generate simple tables in terminals from a nested list of strings + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/textproc/py-terminaltables/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-terminaltables/distinfo Wed Oct 26 15:59:50 2016 (r424714) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477478547 +SHA256 (terminaltables-3.1.0.tar.gz) = f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81 +SIZE (terminaltables-3.1.0.tar.gz) = 12478 Added: head/textproc/py-terminaltables/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-terminaltables/pkg-descr Wed Oct 26 15:59:50 2016 (r424714) @@ -0,0 +1,4 @@ +Easily draw tables in terminal/console applications from a list of +lists of strings. Supports multi-line rows. + +WWW: https://pypi.python.org/pypi/terminaltables