databases/foundationdb: Update to 7.1.29, fix build

PR:		269236
Approved by:	maintainer timeout
This commit is contained in:
Dmitry Wagin 2023-09-27 07:59:35 +08:00 committed by Li-Wen Hsu
parent 8f1a257aa7
commit 9f94a37075
No known key found for this signature in database
GPG key ID: 82B261B14D3BC7AF
4 changed files with 10 additions and 12 deletions

View file

@ -1,6 +1,5 @@
PORTNAME= foundationdb
DISTVERSION= 7.1.25
PORTREVISION= 1
DISTVERSION= 7.1.29
CATEGORIES= databases
# PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/pull/
@ -12,7 +11,6 @@ WWW= https://www.foundationdb.org/
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN= fails to configure
BROKEN_aarch64= invalid asm rdtsc
ONLY_FOR_ARCHS= aarch64 amd64
ONLY_FOR_ARCHS_REASON= not yet ported to anything else
@ -24,7 +22,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/msgpack.hpp:devel/msgpack-cxx \
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
libeio.so:devel/libeio
USES= cmake compiler:c++17-lang mono:build python:build shebangfix \
USES= cmake compiler:c++20-lang mono:build python:build shebangfix \
ssl
USE_GITHUB= yes
GH_ACCOUNT= apple

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1668350492
SHA256 (apple-foundationdb-7.1.25_GH0.tar.gz) = 0c4679afb982932dfa37cbb7544eee4c8efc2409864af55743345c153407cb2c
SIZE (apple-foundationdb-7.1.25_GH0.tar.gz) = 11657831
TIMESTAMP = 1679567621
SHA256 (apple-foundationdb-7.1.29_GH0.tar.gz) = ad608ddb781eea3ef4607ab9abb41282ca93383814d8149346bf3440cc9f46d5
SIZE (apple-foundationdb-7.1.29_GH0.tar.gz) = 11676677

View file

@ -1,6 +1,6 @@
--- cmake/FDBComponents.cmake.orig 2022-09-19 11:42:41 UTC
--- cmake/FDBComponents.cmake.orig 2023-03-14 19:59:33 UTC
+++ cmake/FDBComponents.cmake
@@ -24,7 +24,7 @@ else()
@@ -24,7 +24,7 @@ set(DISABLE_TLS OFF CACHE BOOL "Don't try to find Open
if(DISABLE_TLS)
set(WITH_TLS OFF)
else()
@ -9,7 +9,7 @@
if(WIN32)
set(OPENSSL_MSVC_STATIC_RT ON)
endif()
@@ -198,6 +198,13 @@ endif()
@@ -201,6 +201,13 @@ else()
endif()
################################################################################
@ -23,7 +23,7 @@
# Coroutine implementation
################################################################################
@@ -242,6 +249,8 @@ function(print_components)
@@ -245,6 +252,8 @@ function(print_components)
message(STATUS "Build Documentation (make html): ${WITH_DOCUMENTATION}")
message(STATUS "Build Python sdist (make package): ${WITH_PYTHON_BINDING}")
message(STATUS "Configure CTest (depends on Python): ${WITH_PYTHON}")

View file

@ -2,7 +2,7 @@
+++ cmake/GetMsgpack.cmake
@@ -1,20 +1,7 @@
-find_package(msgpack 3.3.0 EXACT QUIET CONFIG)
+find_package(msgpack REQUIRED QUIET CONFIG)
+find_package(msgpack-cxx REQUIRED QUIET CONFIG)
add_library(msgpack INTERFACE)