Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 May 2019 16:29:52 +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: r501385 - in head/databases: . py-tiledb
Message-ID:  <201905121629.x4CGTq9b003377@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun May 12 16:29:52 2019
New Revision: 501385
URL: https://svnweb.freebsd.org/changeset/ports/501385

Log:
  Add py-tiledb 0.4.1
  
  TileDB is an efficient multi-dimensional array management system which
  introduces a novel format that can effectively store dense and sparse array data
  with support for fast updates and reads. It features excellent compression, an
  efficient parallel I/O system for high scalability, and high-level APIs
  including Python, R, Golang and more.
  
  TileDB-Py is the official Python interface to TileDB.
  
  WWW: https://github.com/TileDB-Inc/TileDB-Py

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sun May 12 16:29:08 2019	(r501384)
+++ head/databases/Makefile	Sun May 12 16:29:52 2019	(r501385)
@@ -844,6 +844,7 @@
     SUBDIR += py-sybase
     SUBDIR += py-tableschema
     SUBDIR += py-tarantool
+    SUBDIR += py-tiledb
     SUBDIR += py-umemcache
     SUBDIR += py-unqlite
     SUBDIR += py-varstack

Added: head/databases/py-tiledb/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-tiledb/Makefile	Sun May 12 16:29:52 2019	(r501385)
@@ -0,0 +1,25 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	tiledb
+PORTVERSION=	0.4.1
+CATEGORIES=	databases python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Python interface to the TileDB array storage manager
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.5.4:devel/py-setuptools_scm@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>=0.30:devel/py-wheel@${PY_FLAVOR} \
+		${RUN_DEPENDS}
+LIB_DEPENDS=	libtiledb.so:databases/tiledb
+RUN_DEPENDS=	${PYNUMPY}
+
+USES=		compiler:c++11-lang localbase python
+USE_PYTHON=	autoplist concurrent cython distutils
+
+.include <bsd.port.mk>

Added: head/databases/py-tiledb/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-tiledb/distinfo	Sun May 12 16:29:52 2019	(r501385)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1557542559
+SHA256 (tiledb-0.4.1.tar.gz) = 6b97d45a00cc12366a599a2196489fcbdd4c1fad17b198cbeec7a2754d44ad31
+SIZE (tiledb-0.4.1.tar.gz) = 73597

Added: head/databases/py-tiledb/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-tiledb/pkg-descr	Sun May 12 16:29:52 2019	(r501385)
@@ -0,0 +1,9 @@
+TileDB is an efficient multi-dimensional array management system which
+introduces a novel format that can effectively store dense and sparse array data
+with support for fast updates and reads. It features excellent compression, an
+efficient parallel I/O system for high scalability, and high-level APIs
+including Python, R, Golang and more.
+
+TileDB-Py is the official Python interface to TileDB.
+
+WWW: https://github.com/TileDB-Inc/TileDB-Py



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