svn commit: r562732 - head/databases/tiledb

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Tue Jan 26 17:21:15 UTC 2021


Author: sunpoet
Date: Tue Jan 26 17:21:10 2021
New Revision: 562732
URL: https://svnweb.freebsd.org/changeset/ports/562732

Log:
  Disable TBB
  
  - Bump PORTREVISION for dependency change
  
  Upstream has disabled the use of TBB by default and will likely be removing
  support for it in the an upcoming release over the next couple months. They
  also replaced the use of TBB with their own internal threadpool implementation
  that uses standard C++ threading.
  
  Reference:	https://github.com/TileDB-Inc/TileDB/issues/2039

Modified:
  head/databases/tiledb/Makefile

Modified: head/databases/tiledb/Makefile
==============================================================================
--- head/databases/tiledb/Makefile	Tue Jan 26 17:21:06 2021	(r562731)
+++ head/databases/tiledb/Makefile	Tue Jan 26 17:21:10 2021	(r562732)
@@ -3,6 +3,7 @@
 
 PORTNAME=	tiledb
 PORTVERSION=	2.1.6
+PORTREVISION=	1
 CATEGORIES=	databases
 
 MAINTAINER=	sunpoet at FreeBSD.org
@@ -14,7 +15,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BUILD_DEPENDS=	${RUN_DEPENDS}
 LIB_DEPENDS=	libfmt.so:devel/libfmt \
 		liblz4.so:archivers/liblz4 \
-		libtbb.so:devel/tbb \
 		libzstd.so:archivers/zstd
 RUN_DEPENDS=	catch>=0:devel/catch \
 		clipp>=0:devel/clipp \
@@ -24,8 +24,8 @@ USES=		cmake compiler:c++11-lang localbase:ldflags ssl
 
 CFLAGS+=	-DSPDLOG_FMT_EXTERNAL=1
 CMAKE_ARGS=	-DCATCH_INCLUDE_DIR=${LOCALBASE}/include/catch2
-CMAKE_OFF=	TILEDB_CMAKE_IDE TILEDB_FORCE_ALL_DEPS TILEDB_HDFS TILEDB_S3 TILEDB_SUPERBUILD TILEDB_TESTS_AWS_S3_CONFIG TILEDB_VERBOSE TILEDB_WERROR
-CMAKE_ON=	TILEDB_CPP_API TILEDB_STATIC TILEDB_STATS TILEDB_TBB TILEDB_TBB_SHARED TILEDB_TESTS TILEDB_TOOLS
+CMAKE_OFF=	TILEDB_CMAKE_IDE TILEDB_FORCE_ALL_DEPS TILEDB_HDFS TILEDB_S3 TILEDB_SUPERBUILD TILEDB_TBB TILEDB_TBB_SHARED TILEDB_TESTS_AWS_S3_CONFIG TILEDB_VERBOSE TILEDB_WERROR
+CMAKE_ON=	TILEDB_CPP_API TILEDB_STATIC TILEDB_STATS TILEDB_TESTS TILEDB_TOOLS
 LDFLAGS+=	-lfmt
 
 GH_ACCOUNT=	TileDB-Inc


More information about the svn-ports-all mailing list