You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by sz...@apache.org on 2022/08/25 15:35:49 UTC

[nifi-minifi-cpp] 03/03: MINIFICPP-1924 Upgrade ranges lib version and fetch source archive

This is an automated email from the ASF dual-hosted git repository.

szaszm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git

commit 13f2bd2b02c20e4f036ad64f2add1f354ff8a095
Author: Gabor Gyimesi <ga...@gmail.com>
AuthorDate: Thu Aug 25 16:57:16 2022 +0200

    MINIFICPP-1924 Upgrade ranges lib version and fetch source archive
    
    Upgrading to the latest release version of the range-v3 library
    (v0.12.0) and using tar.gz archive to fetch source instead of fetching
    the git repository as it was much slower and caused problems by hanging
    and making CI jobs fail.
    
    Closes #1407
    Signed-off-by: Marton Szasz <sz...@apache.org>
---
 cmake/RangeV3.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmake/RangeV3.cmake b/cmake/RangeV3.cmake
index 800ebcc33..6def37776 100644
--- a/cmake/RangeV3.cmake
+++ b/cmake/RangeV3.cmake
@@ -18,8 +18,8 @@
 include(FetchContent)
 
 FetchContent_Declare(range-v3_src
-    GIT_REPOSITORY https://github.com/ericniebler/range-v3.git
-    GIT_TAG 0487cca29e352e8f16bbd91fda38e76e39a0ed28
+    URL      https://github.com/ericniebler/range-v3/archive/refs/tags/0.12.0.tar.gz
+    URL_HASH SHA256=015adb2300a98edfceaf0725beec3337f542af4915cec4d0b89fa0886f4ba9cb
 )
 FetchContent_MakeAvailable(range-v3_src)