mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 16:53:02 +08:00
[cgns] Update to 4.3.0 (#24531)
* [cgns] update to 4.3.0 * [cgns] update CI baseline * Fix version database. * CMake nitpicks * Use rename rather than copy and remove * Add quotes * Guard explicit references to debug in case the user is using a release-only triplet. * Use in lists * Convert hdf5.patch from CRLF to LF * update version * LIOSTS => LISTS * Revert cgnstools feature * update version Co-authored-by: Billy Robert O'Neal <bion@microsoft.com> Co-authored-by: Jonliu1993 <13720414433@163.com>
This commit is contained in:
parent
74ff2a0441
commit
a563603129
@ -1,8 +1,8 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index d871a9dc8..d2c631023 100644
|
||||
index 60f9de4..e980ef7 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -232,46 +232,12 @@ if (CGNS_ENABLE_HDF5)
|
||||
@@ -261,51 +261,12 @@ if (CGNS_ENABLE_HDF5)
|
||||
cmake_policy(SET CMP0074 NEW)
|
||||
endif()
|
||||
|
||||
@ -10,79 +10,52 @@ index d871a9dc8..d2c631023 100644
|
||||
- message (STATUS "HDF5 C libs:${HDF5_FOUND} static:${HDF5_static_C_FOUND} and shared:${HDF5_shared_C_FOUND}")
|
||||
- if (HDF5_FOUND)
|
||||
- if (NOT HDF5_static_C_FOUND AND NOT HDF5_shared_C_FOUND)
|
||||
- set (FIND_HDF_COMPONENTS C)
|
||||
- if (CG_HDF5_LINK_TYPE STREQUAL "shared")
|
||||
- set(CG_HDF5_LINK_TYPE "static")
|
||||
- set(CG_HDF5_LINK_TYPE_UPPER "STATIC")
|
||||
- else()
|
||||
- set(CG_HDF5_LINK_TYPE "shared")
|
||||
- set(CG_HDF5_LINK_TYPE_UPPER "SHARED")
|
||||
- endif()
|
||||
-
|
||||
- find_package (HDF5 NAMES ${SEARCH_PACKAGE_NAME} COMPONENTS ${FIND_HDF_COMPONENTS})
|
||||
- message (STATUS "HDF5 libs:${HDF5_FOUND} C:${HDF5_C_FOUND}")
|
||||
- set (LINK_LIBS ${LINK_LIBS} ${HDF5_LIBRARIES})
|
||||
- if (HDF5_BUILD_SHARED_LIBS)
|
||||
- add_definitions (-DH5_BUILT_AS_DYNAMIC_LIB)
|
||||
- else (HDF5_BUILD_SHARED_LIBS)
|
||||
- add_definitions (-DH5_BUILT_AS_STATIC_LIB)
|
||||
- endif (HDF5_BUILD_SHARED_LIBS)
|
||||
- else (NOT HDF5_static_C_FOUND AND NOT HDF5_shared_C_FOUND)
|
||||
- if (CGNS_BUILD_SHARED AND HDF5_shared_C_FOUND)
|
||||
- set (LINK_LIBS ${LINK_LIBS} ${HDF5_C_SHARED_LIBRARY})
|
||||
- else (CGNS_BUILD_SHARED AND HDF5_shared_C_FOUND)
|
||||
- set (LINK_LIBS ${LINK_LIBS} ${HDF5_C_STATIC_LIBRARY})
|
||||
- endif (CGNS_BUILD_SHARED AND HDF5_shared_C_FOUND)
|
||||
- endif (NOT HDF5_static_C_FOUND AND NOT HDF5_shared_C_FOUND)
|
||||
- set (FIND_HDF_COMPONENTS C ${CG_HDF5_LINK_TYPE})
|
||||
-
|
||||
- else (HDF5_FOUND)
|
||||
- find_package (HDF5 NAMES ${SEARCH_PACKAGE_NAME} COMPONENTS ${FIND_HDF_COMPONENTS} REQUIRED)
|
||||
- message (STATUS "HDF5 libs:${HDF5_FOUND} C:${HDF5_C_${CG_HDF5_LINK_TYPE_UPPER}_LIBRARY}")
|
||||
- endif()
|
||||
-
|
||||
- set(LINK_LIBS ${HDF5_C_${CG_HDF5_LINK_TYPE_UPPER}_LIBRARY})
|
||||
- else ()
|
||||
- find_package (HDF5) # Legacy find
|
||||
-
|
||||
- #Legacy find_package does not set HDF5_TOOLS_DIR, so we set it here
|
||||
- set(HDF5_TOOLS_DIR ${HDF5_LIBRARY}/../bin)
|
||||
-
|
||||
- #Legacy find_package does not set HDF5_BUILD_SHARED_LIBS, so we set it here
|
||||
- if (CGNS_BUILD_SHARED AND EXISTS "${HDF5_LIBRARY}/libhdf5${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
||||
- set(GUESS_SHARED "${HDF5_LIBRARY}/libhdf5${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
||||
- foreach (ITEM ${HDF5_LIBRARIES})
|
||||
- if (ITEM MATCHES "(.*)hdf5${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
||||
- set(GUESS_SHARED "${ITEM}")
|
||||
- break()
|
||||
- endif()
|
||||
- endforeach()
|
||||
- if (CGNS_BUILD_SHARED AND EXISTS "${GUESS_SHARED}")
|
||||
- set (HDF5_BUILD_SHARED_LIBS 1)
|
||||
- add_definitions (-DH5_BUILT_AS_DYNAMIC_LIB)
|
||||
- set (CG_HDF5_LINK_TYPE "shared")
|
||||
- set (CG_HDF5_LINK_TYPE_UPPER "SHARED")
|
||||
- else ()
|
||||
- set (HDF5_BUILD_SHARED_LIBS 0)
|
||||
- add_definitions (-DH5_BUILT_AS_STATIC_LIB)
|
||||
- set (CG_HDF5_LINK_TYPE "static")
|
||||
- set (CG_HDF5_LINK_TYPE_UPPER "STATIC")
|
||||
- endif ()
|
||||
- set (LINK_LIBS ${LINK_LIBS} ${HDF5_LIBRARIES})
|
||||
-
|
||||
- endif (HDF5_FOUND)
|
||||
- set (HDF5_PACKAGE_NAME ${SEARCH_PACKAGE_NAME})
|
||||
- set (LINK_LIBS ${HDF5_LIBRARIES})
|
||||
+ find_package (HDF5 CONFIG REQUIRED)
|
||||
+ if (TARGET hdf5::hdf5-shared)
|
||||
+ set (LINK_LIBS ${LINK_LIBS} hdf5::hdf5-shared)
|
||||
+ else ()
|
||||
+ set (LINK_LIBS ${LINK_LIBS} hdf5::hdf5-static)
|
||||
+ endif ()
|
||||
endif ()
|
||||
- set (HDF5_PACKAGE_NAME ${SEARCH_PACKAGE_NAME})
|
||||
|
||||
if (HDF5_FOUND)
|
||||
if (NOT DEFINED HDF5_INCLUDE_DIRS)
|
||||
@@ -289,20 +255,10 @@ if (CGNS_ENABLE_HDF5)
|
||||
endif (HDF5_FOUND)
|
||||
|
||||
set(HDF5_NEED_ZLIB "OFF" CACHE BOOL "Does the HDF5 library require linking to zlib?")
|
||||
- if(HDF5_NEED_ZLIB)
|
||||
- find_library(ZLIB_LIBRARY z)
|
||||
- mark_as_advanced(CLEAR ZLIB_LIBRARY)
|
||||
- else (HDF5_NEED_ZLIB)
|
||||
- mark_as_advanced(FORCE ZLIB_LIBRARY)
|
||||
- endif(HDF5_NEED_ZLIB)
|
||||
+ set(HDF5_NEED_ZLIB ${HDF5_ENABLE_Z_LIB_SUPPORT} CACHE INTERNAL "" FORCE)
|
||||
|
||||
set(HDF5_NEED_SZIP "OFF" CACHE BOOL "Does the HDF5 library require linking to szip?")
|
||||
- if (HDF5_NEED_SZIP)
|
||||
- find_library(SZIP_LIBRARY szip)
|
||||
- mark_as_advanced(CLEAR SZIP_LIBRARY)
|
||||
- else (HDF5_NEED_SZIP)
|
||||
- mark_as_advanced(FORCE SZIP_LIBRARY)
|
||||
- endif (HDF5_NEED_SZIP)
|
||||
+ set(HDF5_NEED_SZIP ${HDF5_ENABLE_SZIP_SUPPORT} CACHE INTERNAL "" FORCE)
|
||||
|
||||
# Check if HDF5 version is 1.8 or greater
|
||||
if (HDF5_VERSION VERSION_LESS "1.8.0")
|
||||
@@ -310,6 +266,7 @@ if (CGNS_ENABLE_HDF5)
|
||||
endif (HDF5_VERSION VERSION_LESS "1.8.0")
|
||||
|
||||
set(HDF5_NEED_MPI "OFF" CACHE BOOL "Does the HDF5 library require linking to mpi? (Only true if using parallel HDF5)")
|
||||
+ set(HDF5_NEED_MPI ${HDF5_ENABLE_PARALLEL} CACHE INTERNAL "" FORCE)
|
||||
set(MPI_INC)
|
||||
set(MPI_LIBS)
|
||||
if (HDF5_NEED_MPI)
|
||||
|
@ -2,11 +2,11 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 46446da8a..a3d8cd98f 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -82,6 +82,7 @@ if (CGNS_ENABLE_LFS)
|
||||
else (WIN32)
|
||||
@@ -116,6 +116,7 @@ if (CGNS_ENABLE_LFS)
|
||||
else ()
|
||||
check_symbol_exists(open64 "sys/types.h;sys/stat.h;unistd.h" HAVE_OPEN64)
|
||||
check_symbol_exists(lseek64 "sys/types.h;unistd.h" HAVE_LSEEK64)
|
||||
+ add_definitions(-D_FILE_OFFSET_BITS=64 -D__LARGEFILE64_SOURCE -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE)
|
||||
endif (WIN32)
|
||||
endif ()
|
||||
if (HAVE_OPEN64)
|
||||
add_definitions(-DHAVE_OPEN64)
|
||||
add_compile_definitions(HAVE_OPEN64)
|
||||
|
@ -2,8 +2,8 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO CGNS/CGNS
|
||||
REF 86b686bce292eef7782cfb56b6acdb5123c96f49 # v4.2.0
|
||||
SHA512 88df741acc1b650724bcbeb82ab0f7e593bf01e0a30c04b14b9915f4ea4331725cc24b87715dd08d93d5a3708660ca7f7874bc0a9c5505b76471802cf033e35d
|
||||
REF ec538ac11dbaff510464a831ef094b0d6bf7216c # v4.3.0
|
||||
SHA512 3c04829ff99c0f4f1cd705f0807fda0a65f970c7eecd23ec624cf09fb6fa2a566c63fc94d46c1d0754910bbff8f98c3723e4f32ef66c3e7e41930313454fa10b
|
||||
HEAD_REF develop
|
||||
PATCHES
|
||||
hdf5.patch
|
||||
@ -12,13 +12,14 @@ vcpkg_from_github(
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
fortran CGNS_ENABLE_FORTRAN
|
||||
tests CGNS_ENABLE_TESTS
|
||||
hdf5 CGNS_ENABLE_HDF5
|
||||
lfs CGNS_ENABLE_LFS
|
||||
legacy CGNS_ENABLE_LEGACY
|
||||
"fortran" CGNS_ENABLE_FORTRAN
|
||||
"tests" CGNS_ENABLE_TESTS
|
||||
"hdf5" CGNS_ENABLE_HDF5
|
||||
"lfs" CGNS_ENABLE_LFS
|
||||
"legacy" CGNS_ENABLE_LEGACY
|
||||
)
|
||||
|
||||
set(CGNS_BUILD_OPTS "")
|
||||
if(VCPKG_TARGET_ARCHITECTURE MATCHES "64")
|
||||
list(APPEND CGNS_BUILD_OPTS "-DCGNS_ENABLE_64BIT=ON")
|
||||
endif()
|
||||
@ -29,54 +30,54 @@ else()
|
||||
list(APPEND CGNS_BUILD_OPTS "-DCGNS_BUILD_SHARED=OFF;-DCGNS_USE_SHARED=OFF")
|
||||
endif()
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA # Disable this option if project cannot be built with Ninja
|
||||
OPTIONS
|
||||
# By default, when possible, vcpkg_cmake_configure uses ninja-build as its build system
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
${FEATURE_OPTIONS}
|
||||
${CGNS_BUILD_OPTS}
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
file(INSTALL ${CURRENT_PACKAGES_DIR}/include/cgnsBuild.defs DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/include/cgnsBuild.defs ${CURRENT_PACKAGES_DIR}/include/cgnsconfig.h)
|
||||
# Moves all *.cmake files from /debug/lib/cmake/cgns/ to /share/cgns/
|
||||
# See /docs/maintainers/ports/vcpkg-cmake-config/vcpkg_cmake_config_fixup.md for more details
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/cgns")
|
||||
|
||||
file(INSTALL ${CURRENT_PORT_DIR}/cgnsconfig.h DESTINATION ${CURRENT_PACKAGES_DIR}/include) # the include is all that is needed
|
||||
vcpkg_copy_tools(
|
||||
TOOL_NAMES
|
||||
cgnscheck
|
||||
cgnscompress
|
||||
cgnsconvert
|
||||
cgnsdiff
|
||||
cgnslist
|
||||
cgnsnames
|
||||
AUTO_CLEAN
|
||||
)
|
||||
|
||||
set(TOOLS cgnscheck cgnscompress cgnsconvert cgnsdiff cgnslist cgnsnames)
|
||||
if(VCPKG_TARGET_IS_WINDOWS)
|
||||
set(TOOLS "adf2hdf.bat" "hdf2adf.bat" "cgnsupdate.bat")
|
||||
elseif(VCPKG_TARGET_IS_LINUX)
|
||||
set(TOOLS "adf2hdf" "hdf2adf" "cgnsupdate")
|
||||
endif()
|
||||
|
||||
foreach(tool ${TOOLS})
|
||||
set(suffix ${VCPKG_TARGET_EXECUTABLE_SUFFIX})
|
||||
if(EXISTS "${CURRENT_PACKAGES_DIR}/debug/bin/${tool}${suffix}")
|
||||
file(REMOVE "${CURRENT_PACKAGES_DIR}/debug/bin/${tool}${suffix}")
|
||||
endif()
|
||||
if(EXISTS "${CURRENT_PACKAGES_DIR}/bin/${tool}${suffix}")
|
||||
file(INSTALL "${CURRENT_PACKAGES_DIR}/bin/${tool}${suffix}"
|
||||
DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
||||
file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/${tool}${suffix}")
|
||||
endif()
|
||||
foreach(TOOL ${TOOLS})
|
||||
file(INSTALL "${CURRENT_PACKAGES_DIR}/bin/${TOOL}" DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
||||
file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/${TOOL}")
|
||||
endforeach()
|
||||
|
||||
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
||||
|
||||
IF(EXISTS ${CURRENT_PACKAGES_DIR}/debug)
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/include/cgnsBuild.defs ${CURRENT_PACKAGES_DIR}/debug/include/cgnsconfig.h)
|
||||
endif()
|
||||
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/include/cgnsBuild.defs ${CURRENT_PACKAGES_DIR}/include/cgnsconfig.h)
|
||||
file(GLOB_RECURSE BATCH_FILES ${CURRENT_PACKAGES_DIR}/bin/*.bat)
|
||||
|
||||
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/bin" "${CURRENT_PACKAGES_DIR}/bin")
|
||||
endif()
|
||||
|
||||
# # Moves all .cmake files from /debug/share/cgns/ to /share/cgns/
|
||||
# # See /docs/maintainers/vcpkg_fixup_cmake_targets.md for more details
|
||||
# vcpkg_fixup_cmake_targets(CONFIG_PATH cmake TARGET_PATH share/cgns)
|
||||
if (EXISTS "${CURRENT_PACKAGES_DIR}/debug")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
endif()
|
||||
|
||||
# # Handle copyright
|
||||
file(INSTALL ${SOURCE_PATH}/license.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
||||
file(REMOVE "${CURRENT_PACKAGES_DIR}/include/cgnsBuild.defs" "${CURRENT_PACKAGES_DIR}/include/cgnsconfig.h")
|
||||
file(INSTALL "${CURRENT_PORT_DIR}/cgnsconfig.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include") # the include is all that is needed
|
||||
|
||||
# Handle copyright
|
||||
configure_file("${SOURCE_PATH}/license.txt" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cgns",
|
||||
"version-semver": "4.2.0",
|
||||
"version-semver": "4.3.0",
|
||||
"description": "The CFD General Notation System (CGNS) provides a standard for recording and recovering computer data associated with the numerical solution of fluid dynamics equations.",
|
||||
"homepage": "http://cgns.org/",
|
||||
"default-features": [
|
||||
@ -20,6 +20,14 @@
|
||||
"features": [
|
||||
"tools"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -58,7 +66,7 @@
|
||||
"description": "Build tests"
|
||||
},
|
||||
"tools": {
|
||||
"description": "Build tools"
|
||||
"description": "No effects, preserved for upgrade compatibility"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1329,7 +1329,7 @@
|
||||
"port-version": 0
|
||||
},
|
||||
"cgns": {
|
||||
"baseline": "4.2.0",
|
||||
"baseline": "4.3.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"chaiscript": {
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "0d2c412303ae38864d8ff36777cc22bfc404b9b6",
|
||||
"version-semver": "4.3.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "9d33908ce58fbfa6e823c937716e57d84d1cb2a5",
|
||||
"version-semver": "4.2.0",
|
||||
|
Loading…
Reference in New Issue
Block a user