diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-06-15 01:39:48 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-06-15 01:39:48 +0800 |
commit | 267d6bc1a7cd5ccdf624d97eda8f7a20123ae8d3 (patch) | |
tree | d99d8aa6782ceb5c319bc5359d630ec5379a78c2 /databases | |
parent | databases/py-sqlalchemy14: Update to 1.4.17 (diff) |
databases/py-tiledb: Update to 0.8.11
Changes: https://github.com/TileDB-Inc/TileDB-Py/releases
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-tiledb/Makefile | 4 | ||||
-rw-r--r-- | databases/py-tiledb/distinfo | 6 | ||||
-rw-r--r-- | databases/py-tiledb/files/patch-setup.py | 11 |
3 files changed, 11 insertions, 10 deletions
diff --git a/databases/py-tiledb/Makefile b/databases/py-tiledb/Makefile index b5bb6d466234..dfa0e1b5d2c9 100644 --- a/databases/py-tiledb/Makefile +++ b/databases/py-tiledb/Makefile @@ -1,7 +1,7 @@ # Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> PORTNAME= tiledb -PORTVERSION= 0.8.9 +PORTVERSION= 0.8.11 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -23,7 +23,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cython>=0.27:lang/cython@${PY_FLAVOR} \ LIB_DEPENDS= libtiledb.so:databases/tiledb RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.16,1:math/py-numpy@${PY_FLAVOR} -USES= compiler:c++11-lang localbase python:3.7+ +USES= compiler:c++14-lang localbase python:3.7+ USE_PYTHON= autoplist concurrent cython distutils .include <bsd.port.mk> diff --git a/databases/py-tiledb/distinfo b/databases/py-tiledb/distinfo index 1e86f490f579..9937b4faf1a9 100644 --- a/databases/py-tiledb/distinfo +++ b/databases/py-tiledb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1621183196 -SHA256 (tiledb-0.8.9.tar.gz) = 84f6ac2b732c968828c75b9d2db9168feac51f57cc4ca1888bab28ee4da1c59c -SIZE (tiledb-0.8.9.tar.gz) = 209655 +TIMESTAMP = 1622214052 +SHA256 (tiledb-0.8.11.tar.gz) = 66a182ab76d129b6c346e435a45cf365ee47acda85683221041dd235818ec427 +SIZE (tiledb-0.8.11.tar.gz) = 212399 diff --git a/databases/py-tiledb/files/patch-setup.py b/databases/py-tiledb/files/patch-setup.py index 88f303dafb85..ae2b28957cf6 100644 --- a/databases/py-tiledb/files/patch-setup.py +++ b/databases/py-tiledb/files/patch-setup.py @@ -1,11 +1,12 @@ ---- setup.py.orig 2021-05-13 21:29:51 UTC +--- setup.py.orig 2021-06-08 20:19:16 UTC +++ setup.py -@@ -487,11 +487,9 @@ def cmake_available(): +@@ -489,12 +489,9 @@ def cmake_available(): def setup_requires(): req = [ "cython>=0.27", -- "numpy==1.16.* ; python_version < '3.9'", -- "numpy ; python_version >= '3.9'", +- "numpy==1.16.* ; python_version < '3.9' and 'arm' not in platform_machine", +- "numpy ; python_version >= '3.9' and 'arm' not in platform_machine", +- "numpy ; 'arm' in platform_machine", + "numpy>=1.16", "setuptools>=18.0", "setuptools_scm>=1.5.4", @@ -13,7 +14,7 @@ "pybind11>=2.6.2", ] # Add cmake requirement if libtiledb is not found and cmake is not available. -@@ -684,7 +682,6 @@ setup( +@@ -687,7 +684,6 @@ setup( setup_requires=setup_requires(), install_requires=[ "numpy>=1.16", |