Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qpid-proton for openSUSE:Factory 
checked in at 2024-03-28 13:52:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qpid-proton (Old)
 and      /work/SRC/openSUSE:Factory/.qpid-proton.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qpid-proton"

Thu Mar 28 13:52:36 2024 rev:28 rq:1162875 version:0.38.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/qpid-proton/qpid-proton.changes  2023-03-09 
17:45:17.666765618 +0100
+++ /work/SRC/openSUSE:Factory/.qpid-proton.new.1905/qpid-proton.changes        
2024-03-28 14:03:45.242149025 +0100
@@ -1,0 +2,7 @@
+Wed Mar 27 11:16:12 UTC 2024 - Fridrich Strba <[email protected]>
+
+- Added patch:
+  * qpid-proton-fix_linking.patch
+    + fix linking with older cmake versions. Fixed build on SLE15
+
+-------------------------------------------------------------------
@@ -192,0 +200 @@
+  * Fixes bsc#1133158 (CVE-2019-0223)

New:
----
  qpid-proton-fix_linking.patch

BETA DEBUG BEGIN:
  New:- Added patch:
  * qpid-proton-fix_linking.patch
    + fix linking with older cmake versions. Fixed build on SLE15
BETA DEBUG END:

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

Other differences:
------------------
++++++ qpid-proton.spec ++++++
--- /var/tmp/diff_new_pack.b7NLBo/_old  2024-03-28 14:03:45.662164458 +0100
+++ /var/tmp/diff_new_pack.b7NLBo/_new  2024-03-28 14:03:45.662164458 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qpid-proton
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,7 @@
 #
 
 
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%define oldpython python
+%define skip_python2 1
 %global         qpid_proton_soversion 11
 %global         qpid_proton_core_soversion 10
 %global         qpid_proton_cpp_soversion 12
@@ -37,8 +36,9 @@
 # devel files in test package
 Source99:       qpid-proton-rpmlintrc
 Patch0:         qpid-proton-openssl-3.0.0.patch
-# PATCH-FIX-OPENSUSE qpid-oythonbuild.patch -- disable compiling with wrong 
interpreter
+# PATCH-FIX-OPENSUSE qpid-pythonbuild.patch -- disable compiling with wrong 
interpreter
 Patch1:         qpid-pythonbuild.patch
+Patch2:         qpid-proton-fix_linking.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module xml}
@@ -259,5 +259,5 @@
 %{python_sitearch}/cproton.py*
 %pycache_only %{python_sitearch}/__pycache__/cproton*
 %{python_sitearch}/proton
-%{python_sitearch}/python_qpid_proton-%{version}*-info
+%{python_sitearch}/python_qpid_proton-*-info
 

++++++ qpid-proton-fix_linking.patch ++++++
--- qpid-proton-0.38.0/cpp/CMakeLists.txt       2024-03-27 09:19:01.190206114 
+0100
+++ qpid-proton-0.38.0/cpp/CMakeLists.txt       2024-03-27 09:58:05.402371516 
+0100
@@ -59,6 +59,7 @@
   "${PN_C_INCLUDE_DIR}"
   "${CMAKE_CURRENT_BINARY_DIR}"
   )
+link_directories("${CMAKE_BINARY_DIR}/c")
 
 add_definitions(${CXX_STANDARD} ${CXX_WARNING_FLAGS} 
"-DPN_CPP_USE_DEPRECATED_API=1")
 
--- qpid-proton-0.38.0/cpp/examples/CMakeLists.txt      2024-03-27 
09:19:01.196872826 +0100
+++ qpid-proton-0.38.0/cpp/examples/CMakeLists.txt      2024-03-27 
09:50:10.489229529 +0100
@@ -79,7 +79,7 @@
     scheduled_send
     service_bus)
   add_executable(${example} ${example}.cpp)
-  target_link_libraries(${example} Proton::cpp)
+  target_link_libraries(${example} Proton::cpp qpid-proton-core 
qpid-proton-proactor)
 endforeach()
 
 # Tracing examples
@@ -97,5 +97,5 @@
     multithreaded_client
     multithreaded_client_flow_control)
   add_executable(${example} ${example}.cpp)
-  target_link_libraries(${example} Proton::cpp Threads::Threads)
+  target_link_libraries(${example} Proton::cpp Threads::Threads 
qpid-proton-core qpid-proton-proactor)
 endforeach()
--- qpid-proton-0.38.0/cpp/tests.cmake  2024-03-27 09:19:01.190206114 +0100
+++ qpid-proton-0.38.0/cpp/tests.cmake  2024-03-27 09:39:56.201833370 +0100
@@ -41,7 +41,7 @@
 
 macro(add_cpp_test test)
   add_executable (${test} src/${test}.cpp)
-  target_link_libraries (${test} qpid-proton-cpp ${PLATFORM_LIBS})
+  target_link_libraries (${test} qpid-proton-cpp qpid-proton-core 
qpid-proton-proactor ${PLATFORM_LIBS})
   pn_add_test(
     EXECUTABLE
     NAME cpp-${test}
@@ -82,10 +82,10 @@
 
 include_directories(${CMAKE_SOURCE_DIR}/tests/include)
 add_executable(cpp-test src/cpp-test.cpp src/url_test.cpp)
-target_link_libraries(cpp-test qpid-proton-cpp ${PLATFORM_LIBS})
+target_link_libraries(cpp-test qpid-proton-cpp qpid-proton-core 
qpid-proton-proactor ${PLATFORM_LIBS})
 # tests that require access to pn_ functions in qpid-proton-core
 add_executable(cpp-core-test src/cpp-test.cpp src/object_test.cpp)
-target_link_libraries(cpp-core-test qpid-proton-cpp qpid-proton-core 
${PLATFORM_LIBS})
+target_link_libraries(cpp-core-test qpid-proton-cpp qpid-proton-core 
qpid-proton-proactor ${PLATFORM_LIBS})
 
 macro(add_catch_test tag)
   pn_add_test(

Reply via email to