diff --git a/recipes/libvault/all/conandata.yml b/recipes/libvault/all/conandata.yml index ea6bfc22cedd6..c828fc89b0560 100644 --- a/recipes/libvault/all/conandata.yml +++ b/recipes/libvault/all/conandata.yml @@ -1,4 +1,7 @@ sources: + "0.52.0": + url: "https://github.com/abedra/libvault/archive/refs/tags/0.52.0.zip" + sha256: 49058ac9a1d3d1d08ac165f5f7b50e3a2a2ab0d3f9b8bb8194fa7a8de36edcf8 "0.51.0": url: "https://github.com/abedra/libvault/archive/refs/tags/0.51.0.zip" sha256: 570ccc6451cf8e93b1c585bbf6ab5212ff9290b3a9b477752cf0651414b3d026 @@ -6,6 +9,10 @@ sources: url: "https://github.com/abedra/libvault/archive/0.48.0.zip" sha256: 0a42be282ff0aff77b68cb7238014aa762df5c6b62e4d3561878874ca3760489 patches: + "0.52.0": + - patch_file: "patches/fix-cmake-0.51.0.patch" + patch_type: "conan" + patch_description: "use libcurl from conan center" "0.51.0": - patch_file: "patches/fix-cmake-0.51.0.patch" patch_type: "conan" diff --git a/recipes/libvault/all/conanfile.py b/recipes/libvault/all/conanfile.py index dba2ccc1dc04b..659305c5f732b 100644 --- a/recipes/libvault/all/conanfile.py +++ b/recipes/libvault/all/conanfile.py @@ -105,6 +105,7 @@ def package(self): def package_info(self): self.cpp_info.libs = ["vault"] + self.cpp_info.system_libs = ["m"] if self.settings.compiler == "gcc" and Version(self.settings.compiler.version).major == "8": self.cpp_info.system_libs.append("stdc++fs") # TODO: Remove after Conan 2.0 diff --git a/recipes/libvault/config.yml b/recipes/libvault/config.yml index fc63bf8dfbcd0..327b1962634e5 100644 --- a/recipes/libvault/config.yml +++ b/recipes/libvault/config.yml @@ -1,4 +1,6 @@ versions: + "0.52.0": + folder: "all" "0.51.0": folder: "all" "0.48.0":