Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Dec 2020 13:48:43 +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: r559096 - in head/devel: . py-squint
Message-ID:  <202012241348.0BODmh4H028988@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Dec 24 13:48:42 2020
New Revision: 559096
URL: https://svnweb.freebsd.org/changeset/ports/559096

Log:
  Add py-squint 0.1.0
  
  Squint is a simple query interface for tabular data that's light-weight and easy
  to learn. A core feature of Squint is that the structure of a query's selection
  determines the structure of its result. With it you can:
  - Select data using Python literals -- sets, lists, dictionaries, etc. -- and
    get results in the same format.
  - Aggregate, map, filter, reduce, and otherwise manipulate data.
  - Lazily iterate over results, write them to a file, or eagerly evaluate them in
    memory.
  - Analyze data from CSV, Excel, SQL, and other data sources.
  
  WWW: https://github.com/shawnbrown/squint

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Dec 24 13:48:37 2020	(r559095)
+++ head/devel/Makefile	Thu Dec 24 13:48:42 2020	(r559096)
@@ -5068,6 +5068,7 @@
     SUBDIR += py-speaklater
     SUBDIR += py-speg
     SUBDIR += py-spyder
+    SUBDIR += py-squint
     SUBDIR += py-srsly
     SUBDIR += py-stackexchange
     SUBDIR += py-statgrab

Added: head/devel/py-squint/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-squint/Makefile	Thu Dec 24 13:48:42 2020	(r559096)
@@ -0,0 +1,22 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	squint
+PORTVERSION=	0.1.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Simple query interface for tabular data
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}get-reader>=0:devel/py-get-reader@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-squint/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-squint/distinfo	Thu Dec 24 13:48:42 2020	(r559096)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1608730723
+SHA256 (squint-0.1.0.tar.gz) = 1010289f23be2b1e4e72cc919453589a585e0c8ce2718e5d65231783b393db02
+SIZE (squint-0.1.0.tar.gz) = 36429

Added: head/devel/py-squint/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-squint/pkg-descr	Thu Dec 24 13:48:42 2020	(r559096)
@@ -0,0 +1,11 @@
+Squint is a simple query interface for tabular data that's light-weight and easy
+to learn. A core feature of Squint is that the structure of a query's selection
+determines the structure of its result. With it you can:
+- Select data using Python literals -- sets, lists, dictionaries, etc. -- and
+  get results in the same format.
+- Aggregate, map, filter, reduce, and otherwise manipulate data.
+- Lazily iterate over results, write them to a file, or eagerly evaluate them in
+  memory.
+- Analyze data from CSV, Excel, SQL, and other data sources.
+
+WWW: https://github.com/shawnbrown/squint



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