From 76207cc3b2a154090c913069391bf5a9324afbd7710361208548393eab0f846b Mon Sep 17 00:00:00 2001 From: Luigi Baldoni Date: Wed, 24 Mar 2021 22:24:03 +0000 Subject: [PATCH 1/3] Accepting request 881222 from home:alois:branches:devel:libraries:c_c++ - Update to version 1.8.3 * New hourly file sink . Creates new file every hour. Can be limited to retain only the last N files. * New daily sink filename custom formatting. Users now can pass custom strftime pattern to the log filename. For example: daily_logger_format_mt. * Add SPDLOG_DISABLE_DEFAULT_LOGGER as a CMake option. * Improve color terminal detection. * Ensure SPDLOG_FMT_EXTERNAL is honored in the bench program. * Skip CMake module mode when finding fmt. * Open files with "ab" mode even if truncating to better support logrotate. * Fix compiling error and typo in hourly file sink. * Add constexpr to SPDLOG_LEVEL_NAMES declaration. * Initializer list style consistency. * Fix call to non-constexpr function. * Better numeric_limits<>::max/min fix when SPDLOG_WCHAR_TO_UTF8_SUPPORT is defined. * Simplified wincolor sink code and intensify the red and yellow colors. * Set default value to registry::err_handler_ to resolve Klocwork warning. * Formatter bench: Fix compilation by avoiding function name decay mechanics. * Fix warning whe the compilation flag -Wswitch-default is present. OBS-URL: https://build.opensuse.org/request/show/881222 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/spdlog?expand=0&rev=42 --- spdlog-1.8.2.tar.gz | 3 --- spdlog-1.8.3.tar.gz | 3 +++ spdlog.changes | 30 ++++++++++++++++++++++++++++++ spdlog.spec | 4 ++-- 4 files changed, 35 insertions(+), 5 deletions(-) delete mode 100644 spdlog-1.8.2.tar.gz create mode 100644 spdlog-1.8.3.tar.gz diff --git a/spdlog-1.8.2.tar.gz b/spdlog-1.8.2.tar.gz deleted file mode 100644 index 20ac216..0000000 --- a/spdlog-1.8.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e20e6bd8f57e866eaf25a5417f0a38a116e537f1a77ac7b5409ca2b180cec0d5 -size 319010 diff --git a/spdlog-1.8.3.tar.gz b/spdlog-1.8.3.tar.gz new file mode 100644 index 0000000..b27e5d1 --- /dev/null +++ b/spdlog-1.8.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5b88ca4c9b96264e6c961716fec6f1a7b94c80a5edce667c3e42507caa8a82 +size 321144 diff --git a/spdlog.changes b/spdlog.changes index e750711..41c025f 100644 --- a/spdlog.changes +++ b/spdlog.changes @@ -1,3 +1,33 @@ +------------------------------------------------------------------- +Wed Mar 24 21:58:14 UTC 2021 - Luigi Baldoni + +- Update to version 1.8.3 + * New hourly file sink . Creates new file every hour. Can be + limited to retain only the last N files. + * New daily sink filename custom formatting. Users now can + pass custom strftime pattern to the log filename. For + example: daily_logger_format_mt. + * Add SPDLOG_DISABLE_DEFAULT_LOGGER as a CMake option. + * Improve color terminal detection. + * Ensure SPDLOG_FMT_EXTERNAL is honored in the bench program. + * Skip CMake module mode when finding fmt. + * Open files with "ab" mode even if truncating to better + support logrotate. + * Fix compiling error and typo in hourly file sink. + * Add constexpr to SPDLOG_LEVEL_NAMES declaration. + * Initializer list style consistency. + * Fix call to non-constexpr function. + * Better numeric_limits<>::max/min fix when + SPDLOG_WCHAR_TO_UTF8_SUPPORT is defined. + * Simplified wincolor sink code and intensify the red and + yellow colors. + * Set default value to registry::err_handler_ to resolve + Klocwork warning. + * Formatter bench: Fix compilation by avoiding function name + decay mechanics. + * Fix warning whe the compilation flag -Wswitch-default is + present. + ------------------------------------------------------------------- Fri Dec 11 15:16:25 UTC 2020 - Luigi Baldoni diff --git a/spdlog.spec b/spdlog.spec index 5f603f6..77cba77 100644 --- a/spdlog.spec +++ b/spdlog.spec @@ -1,7 +1,7 @@ # # spec file for package spdlog # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %define _sover 1 Name: spdlog -Version: 1.8.2 +Version: 1.8.3 Release: 0 Summary: C++ logging library License: MIT From 5d819b453798d6589b4fa8b49d318bb7c4441c639d05cc01f02b399f717acc08 Mon Sep 17 00:00:00 2001 From: Luigi Baldoni Date: Thu, 25 Mar 2021 19:13:07 +0000 Subject: [PATCH 2/3] Accepting request 881376 from home:alois:branches:devel:libraries:c_c++ - Update to version 1.8.4 * Remove version requirement from find_package when searching external fmt. OBS-URL: https://build.opensuse.org/request/show/881376 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/spdlog?expand=0&rev=43 --- spdlog-1.8.3.tar.gz | 3 --- spdlog-1.8.4.tar.gz | 3 +++ spdlog.changes | 7 +++++++ spdlog.spec | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 spdlog-1.8.3.tar.gz create mode 100644 spdlog-1.8.4.tar.gz diff --git a/spdlog-1.8.3.tar.gz b/spdlog-1.8.3.tar.gz deleted file mode 100644 index b27e5d1..0000000 --- a/spdlog-1.8.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6f5b88ca4c9b96264e6c961716fec6f1a7b94c80a5edce667c3e42507caa8a82 -size 321144 diff --git a/spdlog-1.8.4.tar.gz b/spdlog-1.8.4.tar.gz new file mode 100644 index 0000000..9ab4e48 --- /dev/null +++ b/spdlog-1.8.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19cff06a3d235efcb451e04193a925bebc6ef7e7bd4a56ca27096acbab3cf3b +size 321245 diff --git a/spdlog.changes b/spdlog.changes index 41c025f..a2f7b32 100644 --- a/spdlog.changes +++ b/spdlog.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Mar 25 18:58:40 UTC 2021 - Luigi Baldoni + +- Update to version 1.8.4 + * Remove version requirement from find_package when searching + external fmt. + ------------------------------------------------------------------- Wed Mar 24 21:58:14 UTC 2021 - Luigi Baldoni diff --git a/spdlog.spec b/spdlog.spec index 77cba77..775e476 100644 --- a/spdlog.spec +++ b/spdlog.spec @@ -18,7 +18,7 @@ %define _sover 1 Name: spdlog -Version: 1.8.3 +Version: 1.8.4 Release: 0 Summary: C++ logging library License: MIT From 18d7f7e4e356c20756b47bc444c85968ccbb2a9e046052094ca4482d3c605f41 Mon Sep 17 00:00:00 2001 From: Luigi Baldoni Date: Thu, 25 Mar 2021 19:49:03 +0000 Subject: [PATCH 3/3] Accepting request 881380 from home:alois:branches:devel:libraries:c_c++ - Update to version 1.8.5 * Fix compiling with C++17: remove constexpr on level_string_views. OBS-URL: https://build.opensuse.org/request/show/881380 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/spdlog?expand=0&rev=44 --- spdlog-1.8.4.tar.gz | 3 --- spdlog-1.8.5.tar.gz | 3 +++ spdlog.changes | 7 +++++++ spdlog.spec | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 spdlog-1.8.4.tar.gz create mode 100644 spdlog-1.8.5.tar.gz diff --git a/spdlog-1.8.4.tar.gz b/spdlog-1.8.4.tar.gz deleted file mode 100644 index 9ab4e48..0000000 --- a/spdlog-1.8.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d19cff06a3d235efcb451e04193a925bebc6ef7e7bd4a56ca27096acbab3cf3b -size 321245 diff --git a/spdlog-1.8.5.tar.gz b/spdlog-1.8.5.tar.gz new file mode 100644 index 0000000..891fbea --- /dev/null +++ b/spdlog-1.8.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944d0bd7c763ac721398dca2bb0f3b5ed16f67cef36810ede5061f35a543b4b8 +size 321229 diff --git a/spdlog.changes b/spdlog.changes index a2f7b32..bc6d77d 100644 --- a/spdlog.changes +++ b/spdlog.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Mar 25 19:43:50 UTC 2021 - Luigi Baldoni + +- Update to version 1.8.5 + * Fix compiling with C++17: remove constexpr on + level_string_views. + ------------------------------------------------------------------- Thu Mar 25 18:58:40 UTC 2021 - Luigi Baldoni diff --git a/spdlog.spec b/spdlog.spec index 775e476..836ee25 100644 --- a/spdlog.spec +++ b/spdlog.spec @@ -18,7 +18,7 @@ %define _sover 1 Name: spdlog -Version: 1.8.4 +Version: 1.8.5 Release: 0 Summary: C++ logging library License: MIT