From owner-svn-ports-head@freebsd.org Sun Jul 29 19:05:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD8B4105E2EE; Sun, 29 Jul 2018 19:05:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 743848BE4A; Sun, 29 Jul 2018 19:05:46 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 556C719BF9; Sun, 29 Jul 2018 19:05:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6TJ5kGA032499; Sun, 29 Jul 2018 19:05:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6TJ5jSc032495; Sun, 29 Jul 2018 19:05:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201807291905.w6TJ5jSc032495@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 29 Jul 2018 19:05:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475674 - in head/devel: . py-ptable X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-ptable X-SVN-Commit-Revision: 475674 X-SVN-Commit-Repository: ports 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.27 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: Sun, 29 Jul 2018 19:05:47 -0000 Author: sunpoet Date: Sun Jul 29 19:05:45 2018 New Revision: 475674 URL: https://svnweb.freebsd.org/changeset/ports/475674 Log: Add py-ptable 0.9.2 PTable is a simple Python library designed to make it quick and easy to represent tabular data in visually appealing ASCII tables, originally forked from PrettyTable. WWW: https://github.com/kxxoling/PTable Added: head/devel/py-ptable/ head/devel/py-ptable/Makefile (contents, props changed) head/devel/py-ptable/distinfo (contents, props changed) head/devel/py-ptable/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 29 19:05:13 2018 (r475673) +++ head/devel/Makefile Sun Jul 29 19:05:45 2018 (r475674) @@ -4843,6 +4843,7 @@ SUBDIR += py-prompt_toolkit SUBDIR += py-protobuf SUBDIR += py-protocols + SUBDIR += py-ptable SUBDIR += py-ptrace SUBDIR += py-ptvsd SUBDIR += py-pudb Added: head/devel/py-ptable/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ptable/Makefile Sun Jul 29 19:05:45 2018 (r475674) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ptable +PORTVERSION= 0.9.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PTable-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Display tabular data in an ASCII table format + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/devel/py-ptable/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ptable/distinfo Sun Jul 29 19:05:45 2018 (r475674) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532818121 +SHA256 (PTable-0.9.2.tar.gz) = aa7fc151cb40f2dabcd2275ba6f7fd0ff8577a86be3365cd3fb297cbe09cc292 +SIZE (PTable-0.9.2.tar.gz) = 31042 Added: head/devel/py-ptable/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ptable/pkg-descr Sun Jul 29 19:05:45 2018 (r475674) @@ -0,0 +1,5 @@ +PTable is a simple Python library designed to make it quick and easy to +represent tabular data in visually appealing ASCII tables, originally forked +from PrettyTable. + +WWW: https://github.com/kxxoling/PTable