Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package spdlog for openSUSE:Factory checked 
in at 2023-08-07 15:28:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/spdlog (Old)
 and      /work/SRC/openSUSE:Factory/.spdlog.new.22712 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "spdlog"

Mon Aug  7 15:28:51 2023 rev:29 rq:1102662 version:1.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/spdlog/spdlog.changes    2023-07-10 
16:39:32.218412790 +0200
+++ /work/SRC/openSUSE:Factory/.spdlog.new.22712/spdlog.changes 2023-08-07 
15:28:54.888248512 +0200
@@ -1,0 +2,6 @@
+Wed Aug  2 12:48:47 UTC 2023 - Dominique Leuenberger <[email protected]>
+
+- Add 2827.patch: Added missing square bracket to fix the
+  level_to_string_view.
+
+-------------------------------------------------------------------

New:
----
  2827.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ spdlog.spec ++++++
--- /var/tmp/diff_new_pack.DQPYG6/_old  2023-08-07 15:28:55.564252710 +0200
+++ /var/tmp/diff_new_pack.DQPYG6/_new  2023-08-07 15:28:55.572252760 +0200
@@ -26,6 +26,8 @@
 URL:            https://github.com/gabime/spdlog
 Source0:        
https://github.com/gabime/%{name}/archive/refs/tags/v%{version}.tar.gz
 Source99:       baselibs.conf
+# PATCH-FIX-UPSTREAM 2827.patch -- Added missing square bracket to fix the 
level_to_string_view
+Patch0:         
https://patch-diff.githubusercontent.com/raw/gabime/spdlog/pull/2827.patch
 BuildRequires:  cmake >= 3.10
 %if 0%{?suse_version} > 1500
 BuildRequires:  gcc-c++ >= 8

++++++ 2827.patch ++++++
>From 6a508d3d7e9af6e8b60eb00f77c2721ddf0e7ea1 Mon Sep 17 00:00:00 2001
From: Vitaly Zaitsev <[email protected]>
Date: Sun, 23 Jul 2023 10:11:37 +0200
Subject: [PATCH] Added missing square bracket to fix the level_to_string_view
 test.

---
 tests/test_misc.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_misc.cpp b/tests/test_misc.cpp
index 9f3cb1744..6199641ff 100644
--- a/tests/test_misc.cpp
+++ b/tests/test_misc.cpp
@@ -43,7 +43,7 @@ TEST_CASE("log_levels", "[log_levels]")
     REQUIRE(log_info("Hello", spdlog::level::trace) == "Hello");
 }
 
-TEST_CASE("level_to_string_view", "[convert_to_string_view")
+TEST_CASE("level_to_string_view", "[convert_to_string_view]")
 {
     REQUIRE(spdlog::level::to_string_view(spdlog::level::trace) == "trace");
     REQUIRE(spdlog::level::to_string_view(spdlog::level::debug) == "debug");

Reply via email to