From cead39efed319221fe2387e5360cad0f46c1a93c Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 5 Nov 2024 18:37:22 +0100 Subject: [PATCH] Fix #5281 - Use rebuilt E+ with correct entitlements --- CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05fe5faf2f..cec0c0541e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -638,11 +638,15 @@ endif() if(UNIX) if(APPLE) + # TODO: temp for #5281 - Resigned with a different entitlements to avoid an issue when we pip install stuff into the E+ dir with native comps (numpy for eg) + set(ENERGYPLUS_REPO "jmarrec") + set(ENERGYPLUS_RELEASE_NAME "v24.2.0a-entitlements") + if (ARCH MATCHES "arm64") - set(ENERGYPLUS_EXPECTED_HASH f36afc055a675ae95523d6f41ec478c0) + set(ENERGYPLUS_EXPECTED_HASH 29616d6aa23e2fc0f71362da9794ef08) set(ENERGYPLUS_PLATFORM "Darwin-macOS13-arm64") else() - set(ENERGYPLUS_EXPECTED_HASH b2003c461277c0bd4e91a4c003b350ac) + set(ENERGYPLUS_EXPECTED_HASH 21bdad40fbc560b4b382469ef9f96936) set(ENERGYPLUS_PLATFORM "Darwin-macOS12.1-x86_64") endif() elseif(LSB_RELEASE_ID_SHORT MATCHES "CentOS")