Add a python 3 variant of tabulate

This commit is contained in:
Steven Kreuzer 2017-03-21 14:27:07 +00:00
parent 456c9da675
commit f9f7d3166f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=436611
3 changed files with 9 additions and 1 deletions

View file

@ -4934,6 +4934,7 @@
SUBDIR += py3-setproctitle SUBDIR += py3-setproctitle
SUBDIR += py3-simplejson SUBDIR += py3-simplejson
SUBDIR += py3-six SUBDIR += py3-six
SUBDIR += py3-tabulate
SUBDIR += py3-threema-msgapi SUBDIR += py3-threema-msgapi
SUBDIR += py3-vcversioner SUBDIR += py3-vcversioner
SUBDIR += py3-wcwidth SUBDIR += py3-wcwidth

View file

@ -13,7 +13,7 @@ COMMENT= Pretty-print tabular data in Python
LICENSE= MIT LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python USES?= python
USE_PYTHON= autoplist distutils USE_PYTHON= autoplist distutils
NO_ARCH= yes NO_ARCH= yes

View file

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-tabulate
USES= python:3.1+
.include "${MASTERDIR}/Makefile"