Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add logr v0.7.0 #21575

Merged
merged 21 commits into from
May 29, 2024
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update recipes/logr/v0.7/conanfile.py
Co-authored-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
ngrodzitski and uilianries authored Feb 15, 2024
commit 9714560c33d95a0af269377af6b52ff91e366337
2 changes: 1 addition & 1 deletion recipes/logr/v0.7/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
self.requires("boost/1.83.0")

def package_id(self):
self.info.clear()
self.info.settings.clear()

def validate(self):
minimal_cpp_standard = "17"
Expand Down Expand Up @@ -84,16 +84,16 @@
copy(self, "*.*pp", src=os.path.join(self.source_folder, "logr", "include"), dst=os.path.join(self.package_folder, "include"))

if not self.options.with_spdlog_backend:
rm(self, f"include/logr/spdlog_backend.hpp", self.package_folder)

Check warning on line 87 in recipes/logr/v0.7/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Using an f-string that does not have any interpolated variables

if not self.options.with_glog_backend:
rm(self, f"include/logr/glog_backend.hpp", self.package_folder)

Check warning on line 90 in recipes/logr/v0.7/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Using an f-string that does not have any interpolated variables

if not self.options.with_log4cplus_backend:
rm(self, f"include/logr/log4cplus_backend.hpp", self.package_folder)

Check warning on line 93 in recipes/logr/v0.7/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Using an f-string that does not have any interpolated variables

if not self.options.with_boostlog_backend:
rm(self, f"include/logr/boostlog_backend.hpp", self.package_folder)

Check warning on line 96 in recipes/logr/v0.7/conanfile.py

View workflow job for this annotation

GitHub Actions / Lint changed conanfile.py (v2 migration)

Using an f-string that does not have any interpolated variables

def package_info(self):
self.cpp_info.bindirs = []
Expand Down
Loading