Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package spdlog for openSUSE:Factory checked 
in at 2021-08-11 11:47:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/spdlog (Old)
 and      /work/SRC/openSUSE:Factory/.spdlog.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "spdlog"

Wed Aug 11 11:47:05 2021 rev:21 rq:910461 version:1.9.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/spdlog/spdlog.changes    2021-07-28 
19:19:58.359640823 +0200
+++ /work/SRC/openSUSE:Factory/.spdlog.new.1899/spdlog.changes  2021-08-11 
11:47:17.497741126 +0200
@@ -1,0 +2,5 @@
+Fri Aug  6 09:42:32 UTC 2021 - Luigi Baldoni <aloi...@gmx.com>
+
+- Add spdlog-1.9.1-use_system_catch2.patch (fixes boo#1189103)
+
+-------------------------------------------------------------------

New:
----
  spdlog-1.9.1-use_system_catch2.patch

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

Other differences:
------------------
++++++ spdlog.spec ++++++
--- /var/tmp/diff_new_pack.wJVMyW/_old  2021-08-11 11:47:19.373738869 +0200
+++ /var/tmp/diff_new_pack.wJVMyW/_new  2021-08-11 11:47:19.373738869 +0200
@@ -24,6 +24,8 @@
 License:        MIT
 URL:            https://github.com/gabime/spdlog
 Source0:        
https://github.com/gabime/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE spdlog-1.9.1-use_system_catch2.patch use system catch2 to 
fix problem with glibc 2.3.4 -- aloi...@gmx.com
+Patch0:         spdlog-1.9.1-use_system_catch2.patch
 BuildRequires:  benchmark-devel >= 1.4.0
 BuildRequires:  cmake >= 3.10
 %if 0%{?suse_version} > 1500
@@ -33,6 +35,7 @@
 %endif
 BuildRequires:  ninja
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(catch2) >= 2.13.4
 BuildRequires:  pkgconfig(fmt) >= 8.0.0
 BuildRequires:  pkgconfig(libsystemd)
 

++++++ spdlog-1.9.1-use_system_catch2.patch ++++++
Index: spdlog-1.9.1/tests/includes.h
===================================================================
--- spdlog-1.9.1.orig/tests/includes.h
+++ spdlog-1.9.1/tests/includes.h
@@ -1,6 +1,6 @@
 #pragma once
 
-#include "catch.hpp"
+#include <catch2/catch.hpp>
 #include "utils.h"
 #include <chrono>
 #include <cstdio>
@@ -23,4 +23,4 @@
 #include "spdlog/sinks/ostream_sink.h"
 #include "spdlog/sinks/rotating_file_sink.h"
 #include "spdlog/sinks/stdout_color_sinks.h"
-#include "spdlog/pattern_formatter.h"
\ No newline at end of file
+#include "spdlog/pattern_formatter.h"
Index: spdlog-1.9.1/tests/main.cpp
===================================================================
--- spdlog-1.9.1.orig/tests/main.cpp
+++ spdlog-1.9.1/tests/main.cpp
@@ -1,2 +1,2 @@
 #define CATCH_CONFIG_MAIN
-#include "catch.hpp"
\ No newline at end of file
+#include <catch2/catch.hpp>
Index: spdlog-1.9.1/tests/CMakeLists.txt
===================================================================
--- spdlog-1.9.1.orig/tests/CMakeLists.txt
+++ spdlog-1.9.1/tests/CMakeLists.txt
@@ -10,7 +10,7 @@ include(../cmake/utils.cmake)
 
 find_package(PkgConfig)
 if(PkgConfig_FOUND)
-    pkg_check_modules(systemd libsystemd)
+    pkg_check_modules(systemd libsystemd catch2>=2.13.4)
 endif()
 
 set(SPDLOG_UTESTS_SOURCES

Reply via email to