git: f07f24f98d48 - main - databases/tarantool: Update to 2.11.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 May 2023 16:37:52 UTC
The branch main has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=f07f24f98d48121a985d89be64d8a0db24921716 commit f07f24f98d48121a985d89be64d8a0db24921716 Author: Pavel Balaev <balaev@tarantool.org> AuthorDate: 2023-05-25 13:14:47 +0000 Commit: Gleb Popov <arrowd@FreeBSD.org> CommitDate: 2023-05-25 16:32:53 +0000 databases/tarantool: Update to 2.11.0 The DEBUG option has been removed because backtraces do not work correctly. --- databases/tarantool/Makefile | 7 +----- databases/tarantool/distinfo | 6 ++--- .../files/patch-cmake-BuildLibUnwind.cmake | 29 ---------------------- 3 files changed, 4 insertions(+), 38 deletions(-) diff --git a/databases/tarantool/Makefile b/databases/tarantool/Makefile index 9737a5153616..cd75b536f167 100644 --- a/databases/tarantool/Makefile +++ b/databases/tarantool/Makefile @@ -1,6 +1,5 @@ PORTNAME= tarantool -PORTVERSION= 2.10.5 -PORTREVISION= 1 +PORTVERSION= 2.11.0 CATEGORIES= databases MASTER_SITES= https://download.tarantool.org/tarantool/src/ @@ -51,10 +50,6 @@ TT_DATADIR?= /var/db/tarantool TT_LOGDIR?= /var/log/tarantool TT_RUNDIR?= /var/run/tarantool -OPTIONS_DEFINE= DEBUG - -DEBUG_CMAKE_BOOL= ENABLE_BACKTRACE - post-patch: @${ECHO_CMD} ${PORTVERSION}-0 > ${WRKSRC}/VERSION @${GREP} -lr 'msgpuck/msgpuck.h' ${WRKSRC}/ | ${XARGS} ${REINPLACE_CMD} -e 's|msgpuck/msgpuck.h|msgpuck.h|' diff --git a/databases/tarantool/distinfo b/databases/tarantool/distinfo index df70beb1f374..711804b12c73 100644 --- a/databases/tarantool/distinfo +++ b/databases/tarantool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1676981388 -SHA256 (tarantool-2.10.5.tar.gz) = 9386dd01070769afd0673cfef9d528aaa23039a4102a3b69b2e55af627011136 -SIZE (tarantool-2.10.5.tar.gz) = 46943380 +TIMESTAMP = 1685009465 +SHA256 (tarantool-2.11.0.tar.gz) = 4506e7208cd20f3c1858d14b9b40fe388083592faac5c79ec30aa751e095f1f2 +SIZE (tarantool-2.11.0.tar.gz) = 41044197 diff --git a/databases/tarantool/files/patch-cmake-BuildLibUnwind.cmake b/databases/tarantool/files/patch-cmake-BuildLibUnwind.cmake deleted file mode 100644 index 2448e543e640..000000000000 --- a/databases/tarantool/files/patch-cmake-BuildLibUnwind.cmake +++ /dev/null @@ -1,29 +0,0 @@ ---- cmake/BuildLibUnwind.cmake.orig 2022-11-14 13:17:09.046425000 +0100 -+++ cmake/BuildLibUnwind.cmake 2022-11-14 13:18:30.382852000 +0100 -@@ -18,6 +18,11 @@ - The paths to the libunwind libraries. - #]========================================================================] - -+set(SYSTEM_ARCH ${CMAKE_SYSTEM_PROCESSOR}) -+if(CMAKE_SYSTEM_NAME STREQUAL FreeBSD AND SYSTEM_ARCH STREQUAL amd64) -+ set(SYSTEM_ARCH x86_64) -+endif() -+ - macro(libunwind_build) - set(LIBUNWIND_SOURCE_DIR ${PROJECT_SOURCE_DIR}/third_party/libunwind) - set(LIBUNWIND_BUILD_DIR ${PROJECT_BINARY_DIR}/build/libunwind) -@@ -91,12 +96,12 @@ - add_library(bundled-libunwind-platform STATIC IMPORTED GLOBAL) - set_target_properties(bundled-libunwind-platform PROPERTIES - IMPORTED_LOCATION -- ${LIBUNWIND_INSTALL_DIR}/lib/libunwind-${CMAKE_SYSTEM_PROCESSOR}.a) -+ ${LIBUNWIND_INSTALL_DIR}/lib/libunwind-${SYSTEM_ARCH}.a) - add_dependencies(bundled-libunwind-platform bundled-libunwind-project) - - set(LIBUNWIND_INCLUDE_DIR ${LIBUNWIND_INSTALL_DIR}/include) - set(LIBUNWIND_LIBRARIES -- ${LIBUNWIND_INSTALL_DIR}/lib/libunwind-${CMAKE_SYSTEM_PROCESSOR}.a -+ ${LIBUNWIND_INSTALL_DIR}/lib/libunwind-${SYSTEM_ARCH}.a - ${LIBUNWIND_INSTALL_DIR}/lib/libunwind.a) - - message(STATUS "Using bundled libunwind")