Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Jun 2024 04:07:43 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: c0b989d367a5 - main - databases/py-tiledb: Update to 0.30.0
Message-ID:  <202406180407.45I47hse076130@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c0b989d367a57cc1bd594465775ae4bf616ff905

commit c0b989d367a57cc1bd594465775ae4bf616ff905
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-06-18 03:59:33 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-06-18 03:59:33 +0000

    databases/py-tiledb: Update to 0.30.0
    
    Changes:        https://github.com/TileDB-Inc/TileDB-Py/releases
---
 databases/py-tiledb/Makefile                         |  8 ++++----
 databases/py-tiledb/distinfo                         |  6 +++---
 databases/py-tiledb/files/patch-pyproject.toml       | 19 ++++++++++++++-----
 databases/py-tiledb/files/patch-requirements_dev.txt |  4 ++--
 4 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/databases/py-tiledb/Makefile b/databases/py-tiledb/Makefile
index f503fcf286aa..a9b410bb09f4 100644
--- a/databases/py-tiledb/Makefile
+++ b/databases/py-tiledb/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	tiledb
-PORTVERSION=	0.29.0
+PORTVERSION=	0.30.0
 CATEGORIES=	databases python
 MASTER_SITES=	PYPI
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -11,14 +11,14 @@ WWW=		https://github.com/TileDB-Inc/TileDB-Py
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpy>=1.23.2,1:math/py-numpy@${PY_FLAVOR} \
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpy>=1.25,1:math/py-numpy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pybind11>=0:devel/py-pybind11@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}setuptools>=61:devel/py-setuptools@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}setuptools-scm>=1.5.4:devel/py-setuptools-scm@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}wheel>=0.30:devel/py-wheel@${PY_FLAVOR} \
-		tiledb>=2.23.0:databases/tiledb
+		tiledb>=2.24.0:databases/tiledb
 LIB_DEPENDS=	libtiledb.so:databases/tiledb
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpy>=1.23.2,1:math/py-numpy@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpy>=1.25,1:math/py-numpy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR}
 
 USES=		compiler:c++17-lang localbase python
diff --git a/databases/py-tiledb/distinfo b/databases/py-tiledb/distinfo
index fc765769db55..2bb306b5d024 100644
--- a/databases/py-tiledb/distinfo
+++ b/databases/py-tiledb/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1715842574
-SHA256 (tiledb-0.29.0.tar.gz) = f47eca580298266f031053bab2c35864bd7be7e0b80337e99d930035b1d3bbea
-SIZE (tiledb-0.29.0.tar.gz) = 341479
+TIMESTAMP = 1718580044
+SHA256 (tiledb-0.30.0.tar.gz) = 592fc8caae8fe1555e3e04d5a109dfd74fd10defbc65b215a63544b0f0743b67
+SIZE (tiledb-0.30.0.tar.gz) = 343996
diff --git a/databases/py-tiledb/files/patch-pyproject.toml b/databases/py-tiledb/files/patch-pyproject.toml
index 21d2569e7375..33510fec2c7b 100644
--- a/databases/py-tiledb/files/patch-pyproject.toml
+++ b/databases/py-tiledb/files/patch-pyproject.toml
@@ -1,9 +1,18 @@
---- pyproject.toml.orig	2024-05-10 15:15:21 UTC
+--- pyproject.toml.orig	2024-06-11 17:54:39 UTC
 +++ pyproject.toml
-@@ -1,5 +1,5 @@
+@@ -1,13 +1,13 @@ requires = [
  [build-system]
--requires = ["setuptools>=64", "wheel", "pybind11", "Cython"]
-+requires = ["setuptools>=61", "wheel", "pybind11", "Cython"]
+ requires = [
+-    "setuptools>=64",
++    "setuptools>=61",
+     "wheel",
+     "pybind11",
+     "Cython",
+     "numpy==1.17.* ; python_version == '3.8' and platform_machine not in 'arm64|aarch64'",
+     "numpy==1.19.* ; python_version == '3.8' and platform_machine == 'aarch64'",
+     "numpy==1.21.* ; python_version == '3.8' and platform_machine == 'arm64'",
+-    "numpy>=2.0.0rc2 ; python_version >= '3.9'",
++    "numpy>=1.25 ; python_version >= '3.9'",
+ ]
  build-backend = "setuptools.build_meta"
  
- [project]
diff --git a/databases/py-tiledb/files/patch-requirements_dev.txt b/databases/py-tiledb/files/patch-requirements_dev.txt
index 4dc176e29aca..2509bca3f555 100644
--- a/databases/py-tiledb/files/patch-requirements_dev.txt
+++ b/databases/py-tiledb/files/patch-requirements_dev.txt
@@ -1,6 +1,6 @@
---- requirements_dev.txt.orig	2024-03-22 14:33:47 UTC
+--- requirements_dev.txt.orig	2024-06-11 17:54:39 UTC
 +++ requirements_dev.txt
-@@ -3,14 +3,10 @@ numpy >= 1.16.5
+@@ -6,14 +6,10 @@ numpy>=1.25 ; python_version >= '3.9'
  # ------------------------------------------------
  # ** MUST sync with misc/requirements_wheel.txt **
  # ------------------------------------------------



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