From owner-svn-ports-head@freebsd.org Sun May 12 16:29:54 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0A0B159AE14; Sun, 12 May 2019 16:29:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7435374C55; Sun, 12 May 2019 16:29:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66DC02D0B6; Sun, 12 May 2019 16:29:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4CGTrwM003381; Sun, 12 May 2019 16:29:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4CGTq9b003377; Sun, 12 May 2019 16:29:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201905121629.x4CGTq9b003377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 12 May 2019 16:29:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501385 - in head/databases: . py-tiledb X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/databases: . py-tiledb X-SVN-Commit-Revision: 501385 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7435374C55 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.94)[-0.941,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 May 2019 16:29:54 -0000 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 +# $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 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