svn commit: r564577 - in head/devel: . py-linear-tsv

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Feb 6 21:28:02 UTC 2021


Author: sunpoet
Date: Sat Feb  6 21:28:01 2021
New Revision: 564577
URL: https://svnweb.freebsd.org/changeset/ports/564577

Log:
  Add py-linear-tsv 1.1.0
  
  Linear TSV is a line-oriented, portable tabular data format. Tabular data --
  rows of tuples, each of the same length -- is commonly stored as CSV and is the
  lingua franca of spreadsheets, databases and analysis tools.
  
  CSV is almost but not quite line-oriented, because newlines are quoted, not
  escaped. In the TSV format presented here, escape codes are used for newlines
  and tabs in field data, allowing naive filtering with line-oriented shell tools
  like sort, fgrep and cut to work as expected. In all of its details, the format
  derives from the TEXT serialization mode of Postgres and MySQL.
  
  WWW: https://github.com/solidsnack/tsv

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Feb  6 21:24:57 2021	(r564576)
+++ head/devel/Makefile	Sat Feb  6 21:28:01 2021	(r564577)
@@ -4593,6 +4593,7 @@
     SUBDIR += py-libversion
     SUBDIR += py-libvirt
     SUBDIR += py-libzfs
+    SUBDIR += py-linear-tsv
     SUBDIR += py-linecache2
     SUBDIR += py-lineedit
     SUBDIR += py-llfuse

Added: head/devel/py-linear-tsv/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-linear-tsv/Makefile	Sat Feb  6 21:28:01 2021	(r564577)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	linear-tsv
+PORTVERSION=	1.1.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Line-oriented, tab-separated value format
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-linear-tsv/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-linear-tsv/distinfo	Sat Feb  6 21:28:01 2021	(r564577)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1612548350
+SHA256 (linear-tsv-1.1.0.tar.gz) = b504d78f4075615ae75de86a16e5680701a441fc84da2a2cf9f94351ab1ccbf5
+SIZE (linear-tsv-1.1.0.tar.gz) = 9589

Added: head/devel/py-linear-tsv/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-linear-tsv/pkg-descr	Sat Feb  6 21:28:01 2021	(r564577)
@@ -0,0 +1,11 @@
+Linear TSV is a line-oriented, portable tabular data format. Tabular data --
+rows of tuples, each of the same length -- is commonly stored as CSV and is the
+lingua franca of spreadsheets, databases and analysis tools.
+
+CSV is almost but not quite line-oriented, because newlines are quoted, not
+escaped. In the TSV format presented here, escape codes are used for newlines
+and tabs in field data, allowing naive filtering with line-oriented shell tools
+like sort, fgrep and cut to work as expected. In all of its details, the format
+derives from the TEXT serialization mode of Postgres and MySQL.
+
+WWW: https://github.com/solidsnack/tsv


More information about the svn-ports-all mailing list