From owner-svn-ports-all@freebsd.org Mon Mar 30 21:06:22 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 21DAE2675B9; Mon, 30 Mar 2020 21:06:22 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48rlPQ50C2z48Qb; Mon, 30 Mar 2020 21:06:18 +0000 (UTC) (envelope-from bofh@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 5A2682400F; Mon, 30 Mar 2020 21:06:12 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02UL6Cuj007351; Mon, 30 Mar 2020 21:06:12 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02UL6Bwm007347; Mon, 30 Mar 2020 21:06:11 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <202003302106.02UL6Bwm007347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Mon, 30 Mar 2020 21:06:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529920 - in head/devel: . py-beautifultable X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: in head/devel: . py-beautifultable X-SVN-Commit-Revision: 529920 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2020 21:06:22 -0000 Author: bofh Date: Mon Mar 30 21:06:11 2020 New Revision: 529920 URL: https://svnweb.freebsd.org/changeset/ports/529920 Log: [NEW] devel/py-beautifultable: Print ASCII tables for terminals This Package provides BeautifulTable class for easily printing tabular data in a visually appealing ASCII format to a terminal. Features included but not limited to: - Full customization of the look and feel of the table - Build the Table as you wish, By adding rows, or by columns or even mixing both these approaches. - Full support for colors using ANSI sequences or any library of your choice. It just works. - Plenty of predefined styles for multiple use cases and option to create custom ones. - Support for Unicode characters. WWW: https://github.com/pri22296/beautifultable Added: head/devel/py-beautifultable/ head/devel/py-beautifultable/Makefile (contents, props changed) head/devel/py-beautifultable/distinfo (contents, props changed) head/devel/py-beautifultable/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 30 20:47:10 2020 (r529919) +++ head/devel/Makefile Mon Mar 30 21:06:11 2020 (r529920) @@ -4159,6 +4159,7 @@ SUBDIR += py-banal SUBDIR += py-bandit SUBDIR += py-bcdoc + SUBDIR += py-beautifultable SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binaryornot Added: head/devel/py-beautifultable/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-beautifultable/Makefile Mon Mar 30 21:06:11 2020 (r529920) @@ -0,0 +1,20 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= beautifultable +PORTVERSION= 0.8.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Print ASCII tables for terminals + +LICENSE= MIT + +USES= python:3.4+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-beautifultable/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-beautifultable/distinfo Mon Mar 30 21:06:11 2020 (r529920) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585597878 +SHA256 (beautifultable-0.8.0.tar.gz) = d44d9551bbed7bfa88675324f84efb9aa857384d44e9fb21eb530f0a0badb815 +SIZE (beautifultable-0.8.0.tar.gz) = 19203 Added: head/devel/py-beautifultable/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-beautifultable/pkg-descr Mon Mar 30 21:06:11 2020 (r529920) @@ -0,0 +1,14 @@ +This Package provides BeautifulTable class for easily printing tabular data in a +visually appealing ASCII format to a terminal. + +Features included but not limited to: +- Full customization of the look and feel of the table +- Build the Table as you wish, By adding rows, or by columns or even mixing both + these approaches. +- Full support for colors using ANSI sequences or any library of your choice. It + just works. +- Plenty of predefined styles for multiple use cases and option to create custom + ones. +- Support for Unicode characters. + +WWW: https://github.com/pri22296/beautifultable