Date: Fri, 6 Apr 2018 10:47:03 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466637 - in head/textproc: . py-tablib Message-ID: <201804061047.w36Al3WU059449@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Fri Apr 6 10:47:03 2018 New Revision: 466637 URL: https://svnweb.freebsd.org/changeset/ports/466637 Log: Tablib is an format-agnostic tabular dataset library, written in Python. It allows one to import, export, and manipulate tabular data sets. Advanced features include, segregation, dynamic columns, tags & filtering, and seamless format import & export. WWW: http://python-tablib.org PR: 227295 Submitted by: freebsd_ports@k-worx.org Added: head/textproc/py-tablib/ head/textproc/py-tablib/Makefile (contents, props changed) head/textproc/py-tablib/distinfo (contents, props changed) head/textproc/py-tablib/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Apr 6 10:04:47 2018 (r466636) +++ head/textproc/Makefile Fri Apr 6 10:47:03 2018 (r466637) @@ -1394,6 +1394,7 @@ SUBDIR += py-stemming SUBDIR += py-syck SUBDIR += py-tabletext + SUBDIR += py-tablib SUBDIR += py-terminaltables SUBDIR += py-textfsm SUBDIR += py-texttable Added: head/textproc/py-tablib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tablib/Makefile Fri Apr 6 10:47:03 2018 (r466637) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= tablib +DISTVERSION= 0.12.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Format agnostic tabular data library (XLS, JSON, YAML, CSV) + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}odfpy>0:devel/py-odfpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openpyxl>0:textproc/py-openpyxl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}unicodecsv>0:devel/py-unicodecsv@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}xlrd>0:textproc/py-xlrd@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}xlwt>0:textproc/py-xlwt@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/textproc/py-tablib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tablib/distinfo Fri Apr 6 10:47:03 2018 (r466637) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522915318 +SHA256 (tablib-0.12.1.tar.gz) = b8cf50a61d66655229993f2ee29220553fb2c80403479f8e6de77c0c24649d87 +SIZE (tablib-0.12.1.tar.gz) = 63420 Added: head/textproc/py-tablib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tablib/pkg-descr Fri Apr 6 10:47:03 2018 (r466637) @@ -0,0 +1,6 @@ +Tablib is an format-agnostic tabular dataset library, written in Python. It +allows one to import, export, and manipulate tabular data sets. Advanced +features include, segregation, dynamic columns, tags & filtering, and seamless +format import & export. + +WWW: http://python-tablib.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804061047.w36Al3WU059449>