Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ortp for openSUSE:Leap:16.0 checked 
in at 2025-06-11 22:14:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:16.0/ortp (Old)
 and      /work/SRC/openSUSE:Leap:16.0/.ortp.new.19631 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ortp"

Wed Jun 11 22:14:20 2025 rev:2 rq:1284709 version:5.3.105

Changes:
--------
--- /work/SRC/openSUSE:Leap:16.0/ortp/ortp.changes      2025-03-19 
11:53:23.418489778 +0100
+++ /work/SRC/openSUSE:Leap:16.0/.ortp.new.19631/ortp.changes   2025-06-11 
22:14:28.430822719 +0200
@@ -1,0 +2,15 @@
+Mon Feb 17 07:46:20 UTC 2025 - Paolo Stivanin <i...@paolostivanin.com>
+
+- Update to 5.3.105 (no changelog).
+
+-------------------------------------------------------------------
+Mon Nov 11 08:30:24 UTC 2024 - ecsos <ec...@opensuse.org>
+
+- Update to 5.3.95 (no changelog).
+
+-------------------------------------------------------------------
+Sun Oct 13 08:40:08 UTC 2024 - ecsos <ec...@opensuse.org>
+
+- Update to 5.3.89 (no changelog).
+
+-------------------------------------------------------------------

Old:
----
  ortp-5.3.37.tar.bz2

New:
----
  ortp-5.3.105.tar.bz2

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

Other differences:
------------------
++++++ ortp.spec ++++++
--- /var/tmp/diff_new_pack.ENJCzn/_old  2025-06-11 22:14:28.710834319 +0200
+++ /var/tmp/diff_new_pack.ENJCzn/_new  2025-06-11 22:14:28.710834319 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ortp
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 # Copyright (c) 2014 Mariusz Fik <fi...@opensuse.org>.
 #
 # All modifications and additions to the file contributed by third parties
@@ -21,7 +21,7 @@
 %define sover   15
 
 Name:           ortp
-Version:        5.3.37
+Version:        5.3.105
 Release:        0
 Summary:        Real-time Transport Protocol Stack
 License:        AGPL-3.0-or-later

++++++ ortp-5.3.37.tar.bz2 -> ortp-5.3.105.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ortp-5.3.37/src/CMakeLists.txt 
new/ortp-5.3.105/src/CMakeLists.txt
--- old/ortp-5.3.37/src/CMakeLists.txt  2024-03-07 09:49:00.000000000 +0100
+++ new/ortp-5.3.105/src/CMakeLists.txt 2024-07-18 10:21:48.000000000 +0200
@@ -125,12 +125,11 @@
                set_target_properties(ortp PROPERTIES SOVERSION 
${ORTP_SO_VERSION})
        endif()
        if(MSVC)
-               if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE 
STREQUAL "RelWithDebInfo")
-                       install(FILES $<TARGET_PDB_FILE:ortp>
-                               DESTINATION ${CMAKE_INSTALL_BINDIR}
-                               PERMISSIONS OWNER_READ OWNER_WRITE 
OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
-                       )
-               endif()
+               install(FILES $<TARGET_PDB_FILE:ortp>
+                       DESTINATION ${CMAKE_INSTALL_BINDIR}
+                       PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE 
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
+                       CONFIGURATIONS Debug RelWithDebInfo
+               )
        endif()
 endif()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ortp-5.3.37/src/rtpsession_inet.c 
new/ortp-5.3.105/src/rtpsession_inet.c
--- old/ortp-5.3.37/src/rtpsession_inet.c       2024-03-07 09:49:00.000000000 
+0100
+++ new/ortp-5.3.105/src/rtpsession_inet.c      2024-07-18 10:21:48.000000000 
+0200
@@ -84,7 +84,9 @@
 /* http://source.winehq.org/git/wine.git/blob/HEAD:/include/mswsock.h */
 #define WSAID_WSARECVMSG                                                       
                                        \
        {                                                                       
                                           \
-               0xf689d7c8, 0x6f1f, 0x436b, { 0x8a, 0x53, 0xe5, 0x4f, 0xe3, 
0x51, 0xc3, 0x22 }                                 \
+               0xf689d7c8, 0x6f1f, 0x436b, {                                   
                                               \
+                       0x8a, 0x53, 0xe5, 0x4f, 0xe3, 0x51, 0xc3, 0x22          
                                                   \
+               }                                                               
                                               \
        }
 #ifndef MAX_NATURAL_ALIGNMENT
 #define MAX_NATURAL_ALIGNMENT sizeof(DWORD)
@@ -1330,7 +1332,8 @@
                        m->reserved1 = is_rtp;
                        using_simulator = TRUE;
                        ortp_mutex_lock(&session->main_mutex);
-                       putq(&session->net_sim_ctx->send_q, m);
+                       if (session->net_sim_ctx) 
putq(&session->net_sim_ctx->send_q, m);
+                       else freemsg(m);
                }
                ortp_mutex_unlock(&session->main_mutex);
        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ortp-5.3.37/tester/CMakeLists.txt 
new/ortp-5.3.105/tester/CMakeLists.txt
--- old/ortp-5.3.37/tester/CMakeLists.txt       2024-03-07 09:49:00.000000000 
+0100
+++ new/ortp-5.3.105/tester/CMakeLists.txt      2024-07-18 10:21:48.000000000 
+0200
@@ -55,12 +55,11 @@
        # TODO : implement tester-runtime like bellesip
        #install(FILES 
"${CMAKE_CURRENT_BINARY_DIR}/BelledonneCommunications.ortp.Tester.winmd" 
DESTINATION lib)
 
-       #if(CMAKE_BUILD_TYPE STREQUAL "Debug")
-       #       install(FILES 
${CMAKE_CURRENT_BINARY_DIR}/Debug/BelledonneCommunications.ortp.Tester.pdb
-       #               DESTINATION ${CMAKE_INSTALL_LIBDIR}
-       #               PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE 
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
-       #       )
-       #endif()
+       #install(FILES 
${CMAKE_CURRENT_BINARY_DIR}/Debug/BelledonneCommunications.ortp.Tester.pdb
+       #       DESTINATION ${CMAKE_INSTALL_LIBDIR}
+       #       PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ 
GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
+       #       CONFIGURATIONS Debug RelWithDebInfo
+       #)
 else()
        if(IOS)
                set_source_files_properties(${IOS_RESOURCES_FILES} PROPERTIES 
MACOSX_PACKAGE_LOCATION Resources)
@@ -77,11 +76,6 @@
 
        set_target_properties(ortp-tester PROPERTIES LINKER_LANGUAGE CXX)
        target_link_libraries(ortp-tester PRIVATE ${ORTP_LIBS_FOR_TESTER} 
${BCToolbox_tester_TARGET})
-       string(REPLACE ";" " " LINK_FLAGS_STR "${LINK_FLAGS}")
-
-       if(LINK_FLAGS_STR)
-               set_target_properties(ortp-tester PROPERTIES LINK_FLAGS 
"${LINK_FLAGS_STR}")
-       endif()
 
        if(NOT IOS)
                install(TARGETS ortp-tester

++++++ set_current_version.patch ++++++
--- /var/tmp/diff_new_pack.ENJCzn/_old  2025-06-11 22:14:28.918842935 +0200
+++ /var/tmp/diff_new_pack.ENJCzn/_new  2025-06-11 22:14:28.922843101 +0200
@@ -7,7 +7,7 @@
  cmake_minimum_required(VERSION 3.22)
  
 -project(Ortp VERSION 5.3.0)
-+project(Ortp VERSION 5.3.37)
++project(Ortp VERSION 5.3.105)
  
  
  set(ORTP_MAJOR_VERSION ${PROJECT_VERSION_MAJOR})

Reply via email to