From owner-svn-ports-head@FreeBSD.ORG Mon Sep 15 02:11:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F3A79DF; Mon, 15 Sep 2014 02:11:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 50D246A9; Mon, 15 Sep 2014 02:11:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8F2B4Xc075339; Mon, 15 Sep 2014 02:11:04 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8F2B3DX075335; Mon, 15 Sep 2014 02:11:03 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201409150211.s8F2B3DX075335@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Mon, 15 Sep 2014 02:11:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368238 - in head/devel: . py-tabulate 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.18-1 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: Mon, 15 Sep 2014 02:11:04 -0000 Author: vanilla Date: Mon Sep 15 02:11:03 2014 New Revision: 368238 URL: http://svnweb.freebsd.org/changeset/ports/368238 QAT: https://qat.redports.org/buildarchive/r368238/ Log: Add py-tabulate 0.7.2. PR: ports/193574 Submitted by: Nikolay Dachev (nikolay dachev info) Added: head/devel/py-tabulate/ head/devel/py-tabulate/Makefile (contents, props changed) head/devel/py-tabulate/distinfo (contents, props changed) head/devel/py-tabulate/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Sep 15 01:41:22 2014 (r368237) +++ head/devel/Makefile Mon Sep 15 02:11:03 2014 (r368238) @@ -3919,6 +3919,7 @@ SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables + SUBDIR += py-tabulate SUBDIR += py-tapi SUBDIR += py-tarantool-queue SUBDIR += py-tconfpy Added: head/devel/py-tabulate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tabulate/Makefile Mon Sep 15 02:11:03 2014 (r368238) @@ -0,0 +1,19 @@ +# Created by: Nikolay Dachev +# $FreeBSD$ + +PORTNAME= tabulate +PORTVERSION= 0.7.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd@dacehv.info +COMMENT= Pretty-print tabular data in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-tabulate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tabulate/distinfo Mon Sep 15 02:11:03 2014 (r368238) @@ -0,0 +1,2 @@ +SHA256 (tabulate-0.7.2.tar.gz) = 532ccab8d9e4659a5f016d84814df86cc04763785e9de2739e890d956dc82d8f +SIZE (tabulate-0.7.2.tar.gz) = 19792 Added: head/devel/py-tabulate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tabulate/pkg-descr Mon Sep 15 02:11:03 2014 (r368238) @@ -0,0 +1,10 @@ +Pretty-print tabular data in Python. + +The main use cases of the library are: + +printing small tables without hassle: just one function call, +formatting is guided by the data itself authoring tabular data for +lightweight plain-text markup: multiple output formats +suitable for further editing or transformation readable presentation of +mixed textual and numeric data: smart column alignment, +configurable number formatting, alignment by a decimal point