From a8e91ee8dba0a030b78b48bee97b4df37b5ff1ee Mon Sep 17 00:00:00 2001 From: Vidya Silai Date: Tue, 9 Jun 2026 13:46:10 -0400 Subject: [PATCH 1/2] Initial commit --- conan.lock | 2 +- conanfile.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/conan.lock b/conan.lock index 18597a4..e098a8c 100644 --- a/conan.lock +++ b/conan.lock @@ -1,7 +1,7 @@ { "version": "0.5", "requires": [ - "batteries/0.70.3", + "batteries/0.71.0", "boost/1.88.0", "bzip2/1.0.8", "cli11/2.5.0", diff --git a/conanfile.py b/conanfile.py index a41ef60..043fe04 100644 --- a/conanfile.py +++ b/conanfile.py @@ -62,6 +62,8 @@ class LlfsConan(ConanFile): _is_header_only = (platform.system() != "Linux") + package_id_non_embed_mode = "full_mode" + #+++++++++++-+-+--+----- --- -- - - - - def configure(self): @@ -76,7 +78,7 @@ def requirements(self): VISIBLE = self.cor.VISIBLE OVERRIDE = self.cor.OVERRIDE - self.requires("batteries/[>=0.65.0 <1]", **VISIBLE) + self.requires("batteries/[>=0.71.0 <1]", **VISIBLE) self.requires("boost/[>=1.88.0 <2]", **VISIBLE) self.requires("cli11/[>=2.5.0 <3]", **VISIBLE) self.requires("glog/[>=0.7.1 <1]", **VISIBLE) From 4968f469872dc65936f263cb8530775776ed155f Mon Sep 17 00:00:00 2001 From: Vidya Silai Date: Wed, 10 Jun 2026 09:38:50 -0400 Subject: [PATCH 2/2] Fix batteries version --- conan.lock | 2 +- conanfile.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/conan.lock b/conan.lock index e098a8c..5e9d42e 100644 --- a/conan.lock +++ b/conan.lock @@ -1,7 +1,7 @@ { "version": "0.5", "requires": [ - "batteries/0.71.0", + "batteries/0.71.1", "boost/1.88.0", "bzip2/1.0.8", "cli11/2.5.0", diff --git a/conanfile.py b/conanfile.py index 043fe04..03effd1 100644 --- a/conanfile.py +++ b/conanfile.py @@ -62,7 +62,9 @@ class LlfsConan(ConanFile): _is_header_only = (platform.system() != "Linux") + package_id_embed_mode = "full_mode" package_id_non_embed_mode = "full_mode" + package_id_unknown_mode = "full_mode" #+++++++++++-+-+--+----- --- -- - - - - @@ -78,7 +80,7 @@ def requirements(self): VISIBLE = self.cor.VISIBLE OVERRIDE = self.cor.OVERRIDE - self.requires("batteries/[>=0.71.0 <1]", **VISIBLE) + self.requires("batteries/[>=0.71.1 <1]", **VISIBLE) self.requires("boost/[>=1.88.0 <2]", **VISIBLE) self.requires("cli11/[>=2.5.0 <3]", **VISIBLE) self.requires("glog/[>=0.7.1 <1]", **VISIBLE)