Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Apr 2019 21:15:22 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r499049 - in head/devel: . py-tabulator
Message-ID:  <201904152115.x3FLFM2k093623@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Apr 15 21:15:22 2019
New Revision: 499049
URL: https://svnweb.freebsd.org/changeset/ports/499049

Log:
  Add py-tabulator 1.19.1
  
  tabulator-py is a library for reading and writing tabular data
  (csv/xls/json/etc).
  
  Features:
  - Supports most common tabular formats: CSV, XLS, ODS, JSON, Google Sheets, SQL,
    and others. See complete list below.
  - Loads local and remote data: Supports HTTP and FTP.
  - Low memory usage: Only the current row is kept in memory, so you can large
    datasets.
  - Supports compressed files: Using ZIP or GZIP algorithms.
  - Extensible: You can add support for custom file formats and loaders (e.g.
    FTP).
  
  WWW: https://github.com/frictionlessdata/tabulator-py

Added:
  head/devel/py-tabulator/
  head/devel/py-tabulator/Makefile   (contents, props changed)
  head/devel/py-tabulator/distinfo   (contents, props changed)
  head/devel/py-tabulator/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Apr 15 21:15:16 2019	(r499048)
+++ head/devel/Makefile	Mon Apr 15 21:15:22 2019	(r499049)
@@ -5167,6 +5167,7 @@
     SUBDIR += py-sysv_ipc
     SUBDIR += py-tables
     SUBDIR += py-tabulate
+    SUBDIR += py-tabulator
     SUBDIR += py-tapi
     SUBDIR += py-tarantool-queue
     SUBDIR += py-taskflow

Added: head/devel/py-tabulator/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-tabulator/Makefile	Mon Apr 15 21:15:22 2019	(r499049)
@@ -0,0 +1,32 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	tabulator
+PORTVERSION=	1.19.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Consistent interface for stream reading and writing tabular data (csv/xls/json/etc)
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+xRUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cchardet>=1.0:textproc/py-cchardet@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}click>=6.0:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}ijson>=2.0:devel/py-ijson@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}jsonlines>=1.1:devel/py-jsonlines@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}openpyxl24>=2.4:textproc/py-openpyxl24@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.8:www/py-requests@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=1.9:devel/py-six@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}sqlalchemy13>=0.9.6:databases/py-sqlalchemy13@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}unicodecsv>=0.14:devel/py-unicodecsv@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}xlrd>=1.0:textproc/py-xlrd@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-tabulator/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-tabulator/distinfo	Mon Apr 15 21:15:22 2019	(r499049)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1555345444
+SHA256 (tabulator-1.19.1.tar.gz) = 1a769fa2103d44d4db805f8105eb6f0d2a082b0d654409f73533966dd5eafa35
+SIZE (tabulator-1.19.1.tar.gz) = 44275

Added: head/devel/py-tabulator/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-tabulator/pkg-descr	Mon Apr 15 21:15:22 2019	(r499049)
@@ -0,0 +1,14 @@
+tabulator-py is a library for reading and writing tabular data
+(csv/xls/json/etc).
+
+Features:
+- Supports most common tabular formats: CSV, XLS, ODS, JSON, Google Sheets, SQL,
+  and others. See complete list below.
+- Loads local and remote data: Supports HTTP and FTP.
+- Low memory usage: Only the current row is kept in memory, so you can large
+  datasets.
+- Supports compressed files: Using ZIP or GZIP algorithms.
+- Extensible: You can add support for custom file formats and loaders (e.g.
+  FTP).
+
+WWW: https://github.com/frictionlessdata/tabulator-py



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