Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Mar 2020 21:06:11 +0000 (UTC)
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529920 - in head/devel: . py-beautifultable
Message-ID:  <202003302106.02UL6Bwm007347@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bofh@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003302106.02UL6Bwm007347>