Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mediastreamer2 for openSUSE:Factory 
checked in at 2021-07-28 19:19:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mediastreamer2 (Old)
 and      /work/SRC/openSUSE:Factory/.mediastreamer2.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mediastreamer2"

Wed Jul 28 19:19:32 2021 rev:41 rq:908564 version:5.0.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/mediastreamer2/mediastreamer2.changes    
2021-06-25 15:01:22.968154860 +0200
+++ /work/SRC/openSUSE:Factory/.mediastreamer2.new.1899/mediastreamer2.changes  
2021-07-28 19:19:51.191650226 +0200
@@ -1,0 +2,13 @@
+Wed Jul 14 08:34:37 UTC 2021 - Paolo Stivanin <i...@paolostivanin.com>
+
+- Update to 5.0.0:
+  * added API to change media encryption in the fly
+  * refactoring and simplifications for the MSOgl filter
+    (video OpenGL rendering)
+  * fixed absence of dummy stun packets when DTLS is used with
+    "encryption_mandatory" preventing DTLS handshare to take place
+- Add dependency on bcmatroska2 >= 0.23.1 since this release introduces
+  a new method required by mediastreamer 5.0
+- Add fix-srtp2-linphone.patch
+
+-------------------------------------------------------------------

Old:
----
  mediastreamer2-4.5.20.tar.gz

New:
----
  fix-srtp2-linphone.patch
  mediastreamer2-5.0.0.tar.gz

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

Other differences:
------------------
++++++ mediastreamer2.spec ++++++
--- /var/tmp/diff_new_pack.R76aI4/_old  2021-07-28 19:19:52.831648075 +0200
+++ /var/tmp/diff_new_pack.R76aI4/_new  2021-07-28 19:19:52.835648070 +0200
@@ -19,7 +19,7 @@
 %define sobase  libmediastreamer
 %define sover   11
 Name:           mediastreamer2
-Version:        4.5.20
+Version:        5.0.0
 Release:        0
 Summary:        Audio/Video real-time streaming
 License:        GPL-2.0-or-later
@@ -30,7 +30,8 @@
 Patch0:         mediastreamer2-fix-pkgconfig.patch
 # PATCH-FIX-UPSTREAM
 Patch1:         0001-Fix-build-with-GCC-11.patch
-BuildRequires:  bcmatroska2-devel
+Patch2:         fix-srtp2-linphone.patch
+BuildRequires:  bcmatroska2-devel >= 0.23.1
 BuildRequires:  cmake
 BuildRequires:  doxygen
 BuildRequires:  gawk
@@ -40,6 +41,7 @@
 BuildRequires:  libjpeg-turbo >= 2.0.0
 BuildRequires:  libpcap-devel
 BuildRequires:  libsrtp-devel
+BuildRequires:  libsrtp2-linphone-devel
 BuildRequires:  libv4l-devel
 BuildRequires:  libvpx-devel
 BuildRequires:  libxml2-devel
@@ -126,7 +128,7 @@
 %cmake_install
 
 mkdir -p %{buildroot}%{_docdir}/%{name}/
-mv -T %{buildroot}%{_datadir}/doc/%{name}-4.5.0/ \
+mv -T %{buildroot}%{_datadir}/doc/%{name}-5.0.0/ \
   %{buildroot}%{_docdir}/%{name}/
 
 %post -n %{sobase}%{sover} -p /sbin/ldconfig
@@ -149,7 +151,26 @@
 %{_datadir}/images/nowebcamCIF.jpg
 
 %files devel
+%dir %{_includedir}/OpenGL
+%dir %{_includedir}/OpenGL/EGL
+%dir %{_includedir}/OpenGL/GLES2
+%dir %{_includedir}/OpenGL/GLES3
+%dir %{_includedir}/OpenGL/KHR
 %{_includedir}/mediastreamer2/
+%{_includedir}/OpenGL/EGL/egl.h
+%{_includedir}/OpenGL/EGL/eglext.h
+%{_includedir}/OpenGL/EGL/eglplatform.h
+%{_includedir}/OpenGL/GLES2/gl2.h
+%{_includedir}/OpenGL/GLES2/gl2ext.h
+%{_includedir}/OpenGL/GLES2/gl2platform.h
+%{_includedir}/OpenGL/GLES3/gl3.h
+%{_includedir}/OpenGL/GLES3/gl31.h
+%{_includedir}/OpenGL/GLES3/gl32.h
+%{_includedir}/OpenGL/GLES3/gl3platform.h
+%{_includedir}/OpenGL/KHR/khrplatform.h
+%{_includedir}/OpenGL/LICENSE
+%{_includedir}/OpenGL/README.md
+%{_includedir}/OpenGL/angle_windowsstore.h
 %{_bindir}/mediastreamer2_tester
 %{_libdir}/libmediastreamer.so
 %{_datadir}/mediastreamer2_tester/

++++++ fix-srtp2-linphone.patch ++++++
diff -ru a/cmake/FindSRTP.cmake b/cmake/FindSRTP.cmake
--- a/cmake/FindSRTP.cmake      2021-07-14 14:31:46.031361567 +0200
+++ b/cmake/FindSRTP.cmake      2021-07-14 14:32:38.611583565 +0200
@@ -31,7 +31,7 @@
 )
 
 find_path(SRTP2_INCLUDE_DIRS
-       NAMES srtp2/srtp.h
+       NAMES srtp2-linphone/srtp.h
        HINTS _SRTP_ROOT_PATHS
        PATH_SUFFIXES include
 )
diff -ru a/src/utils/srtp_prefix.h b/src/utils/srtp_prefix.h
--- a/src/utils/srtp_prefix.h   2021-07-14 14:31:46.047361634 +0200
+++ b/src/utils/srtp_prefix.h   2021-07-14 14:32:24.935525820 +0200
@@ -29,7 +29,7 @@
 #elif SRTP_VERSION==1
 #include <srtp/srtp.h>
 #else
-#include <srtp2/srtp.h>
+#include <srtp2-linphone/srtp.h>
 #define err_status_t srtp_err_status_t
 #define err_status_ok srtp_err_status_ok
 #define crypto_policy_t srtp_crypto_policy_t
++++++ mediastreamer2-4.5.20.tar.gz -> mediastreamer2-5.0.0.tar.gz ++++++
/work/SRC/openSUSE:Factory/mediastreamer2/mediastreamer2-4.5.20.tar.gz 
/work/SRC/openSUSE:Factory/.mediastreamer2.new.1899/mediastreamer2-5.0.0.tar.gz 
differ: char 13, line 1

Reply via email to