From 910c2e1f75170d75708e98cc025e56e6858c6c05 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Thu, 9 Dec 2021 11:22:35 +0100 Subject: [PATCH] Fix building of the range-v3 dependency. The conan remote URL for this dependency changed and we have to use the new URL. This broke the homebrew build as well. --- ChangeLog.txt | 5 +++++ conanfile.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 7429e223..98803bc2 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,8 @@ +Version 0.11.1 (unreleased) +--------------- +Bugfix: +* Fix building of the range-v3 dependency. The conan remote URL for this dependency changed and we have to use the new URL. See https://github.com/cryfs/cryfs/issues/398 + Version 0.11.0 --------------- Backwards Compatibility: diff --git a/conanfile.py b/conanfile.py index c9dac7d5..567c8678 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ from conans import ConanFile, CMake class CryFSConan(ConanFile): settings = "os", "compiler", "build_type", "arch" requires = [ - "range-v3/0.11.0@ericniebler/stable", + "range-v3/0.11.0", "spdlog/1.8.5", "boost/1.75.0", ]