science/spheral: Update 2023.03.1 → 2023.03.2

Reported by:	portscout
This commit is contained in:
Yuri Victorovich 2023-07-06 12:16:16 -07:00
parent fa5d97e70c
commit 6582c3e25c
3 changed files with 21 additions and 6 deletions

View file

@ -1,6 +1,6 @@
PORTNAME= spheral
DISTVERSIONPREFIX= v
DISTVERSION= 2023.03.1
DISTVERSION= 2023.03.2
CATEGORIES= science # physics
MAINTAINER= yuri@FreeBSD.org
@ -44,9 +44,11 @@ CMAKE_ARGS= -Daneos_DIR=${LOCALBASE} \
-Dsilo_DIR=${LOCALBASE} \
-Dzlib_DIR=/usr
CMAKE_OFF= ENABLE_TESTS ENABLE_DOCS \
ENABLE_ANEOS
ENABLE_ANEOS \
ENABLE_CUDA
CMAKE_ON= ENABLE_CXXONLY # disable Python support which is still for Python-2.7, see https://github.com/LLNL/spheral/issues/183
CMAKE_TESTING_ON= ENABLE_TESTS # tests fail to configure, see https://github.com/LLNL/spheral/issues/207
CMAKE_ON+= ENABLE_OPENMP
CMAKE_TESTING_ON= ENABLE_TESTS # tests fail to build, see https://github.com/LLNL/spheral/issues/230
CXXFLAGS+= -I${LOCALBASE}/include/eigen3

View file

@ -1,6 +1,6 @@
TIMESTAMP = 1687453540
SHA256 (LLNL-spheral-v2023.03.1_GH0.tar.gz) = a4e818fdb7d5d1fa9b67247ef2a0e5b80f3346a87da166112a4b1944f79df211
SIZE (LLNL-spheral-v2023.03.1_GH0.tar.gz) = 6652948
TIMESTAMP = 1688627887
SHA256 (LLNL-spheral-v2023.03.2_GH0.tar.gz) = 1f20c382d86dfdeed8bce338ef54bc5b855315adac37f52dd42412d630eeab56
SIZE (LLNL-spheral-v2023.03.2_GH0.tar.gz) = 6653174
SHA256 (llnl-blt-ddd5a0c_GH0.tar.gz) = 5c235a9b160f1cc3f6ce4d7c80bf72772ac10839909f4f96075d08b3edd8f540
SIZE (llnl-blt-ddd5a0c_GH0.tar.gz) = 1220052
SHA256 (llnl-uberenv-126f8de_GH0.tar.gz) = 6a403e722dc023d87dd69f8235fa631ab96a7b1ff328929b9c969e7c113ce9f7

View file

@ -0,0 +1,13 @@
- eliminate the need to use git
--- cmake/SetupSpheral.cmake.orig 2023-07-06 16:44:17 UTC
+++ cmake/SetupSpheral.cmake
@@ -176,7 +176,7 @@ if (ENABLE_TESTS)
# Find the test files we want to install
execute_process(
- COMMAND git ls-files tests
+ COMMAND find tests -type f
WORKING_DIRECTORY ${SPHERAL_ROOT_DIR}
OUTPUT_VARIABLE test_files1)
string(REPLACE "\n" " " test_files ${test_files1})