Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libosmo-netif for openSUSE:Factory 
checked in at 2026-02-05 18:01:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libosmo-netif (Old)
 and      /work/SRC/openSUSE:Factory/.libosmo-netif.new.1670 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libosmo-netif"

Thu Feb  5 18:01:18 2026 rev:16 rq:1331054 version:1.7.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libosmo-netif/libosmo-netif.changes      
2025-02-13 18:40:51.612674208 +0100
+++ /work/SRC/openSUSE:Factory/.libosmo-netif.new.1670/libosmo-netif.changes    
2026-02-05 18:07:05.072432718 +0100
@@ -1,0 +2,15 @@
+Wed Feb  4 18:05:39 UTC 2026 - Jan Engelhardt <[email protected]>
+
+- Update to release 1.7.0
+  * stream: Support configuring TCP keep-alive pars
+  * stream: Support configuring TCP_USER_TIMEOUT parameter
+  * Bring twjit and twrtp into libosmo-netif
+  * stream: Support overwriting tx_queue_max_length per srv conn
+
+-------------------------------------------------------------------
+Sun Oct 12 09:04:40 UTC 2025 - Jan Engelhardt <[email protected]>
+
+- Update to release 1.6.1
+  * Fix time_t prints for debian 13 armv7l, and use %zu for size_t.
+
+-------------------------------------------------------------------

Old:
----
  1.6.0.tar.gz

New:
----
  1.7.0.tar.gz

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

Other differences:
------------------
++++++ libosmo-netif.spec ++++++
--- /var/tmp/diff_new_pack.MxLNnc/_old  2026-02-05 18:07:05.768461958 +0100
+++ /var/tmp/diff_new_pack.MxLNnc/_new  2026-02-05 18:07:05.772462126 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libosmo-netif
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           libosmo-netif
-Version:        1.6.0
+Version:        1.7.0
 Release:        0
 Summary:        Osmocom library for muxed audio
 License:        GPL-2.0-or-later
@@ -29,9 +29,10 @@
 BuildRequires:  libtool >= 2
 BuildRequires:  lksctp-tools-devel
 BuildRequires:  pkg-config >= 0.20
-BuildRequires:  pkgconfig(libosmocodec) >= 1.11.0
-BuildRequires:  pkgconfig(libosmocore) >= 1.11.0
-BuildRequires:  pkgconfig(libosmogsm) >= 1.11.0
+BuildRequires:  pkgconfig(libosmocodec) >= 1.12.0
+BuildRequires:  pkgconfig(libosmocore) >= 1.12.0
+BuildRequires:  pkgconfig(libosmogsm) >= 1.12.0
+BuildRequires:  pkgconfig(libosmovty) >= 1.12.0
 BuildRequires:  pkgconfig(talloc)
 
 %description

++++++ 1.6.0.tar.gz -> 1.7.0.tar.gz ++++++
++++ 6458 lines of diff (skipped)

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.MxLNnc/_old  2026-02-05 18:07:06.220480947 +0100
+++ /var/tmp/diff_new_pack.MxLNnc/_new  2026-02-05 18:07:06.252482292 +0100
@@ -1,5 +1,5 @@
-mtime: 1739453897
-commit: 147bedd19d7572410e66ab642c3019c42093fd76626658d25909ebeb306c4f99
+mtime: 1770228517
+commit: fa9312380ea37d5d66b5562912effa1fffd2cc98d63fd32a5f4ab70ea8f90b69
 url: https://src.opensuse.org/jengelh/libosmo-netif
 revision: master
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-02-04 19:08:45.000000000 +0100
@@ -0,0 +1 @@
+.osc

++++++ osmo-talloc.diff ++++++
--- /var/tmp/diff_new_pack.MxLNnc/_old  2026-02-05 18:07:06.556495064 +0100
+++ /var/tmp/diff_new_pack.MxLNnc/_new  2026-02-05 18:07:06.560495231 +0100
@@ -4,11 +4,11 @@
  src/Makefile.am      |    2 +-
  3 files changed, 15 insertions(+), 14 deletions(-)
 
-Index: libosmo-netif-1.6.0/configure.ac
+Index: libosmo-netif-1.7.0/configure.ac
 ===================================================================
---- libosmo-netif-1.6.0.orig/configure.ac
-+++ libosmo-netif-1.6.0/configure.ac
-@@ -112,6 +112,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
+--- libosmo-netif-1.7.0.orig/configure.ac
++++ libosmo-netif-1.7.0/configure.ac
+@@ -113,6 +113,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
        LIBS=$old_LIBS
  ])
  
@@ -16,10 +16,10 @@
  found_pcap=yes
  AC_CHECK_HEADERS(pcap.h,,found_pcap=no)
  AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes)
-Index: libosmo-netif-1.6.0/examples/Makefile.am
+Index: libosmo-netif-1.7.0/examples/Makefile.am
 ===================================================================
---- libosmo-netif-1.6.0.orig/examples/Makefile.am
-+++ libosmo-netif-1.6.0/examples/Makefile.am
+--- libosmo-netif-1.7.0.orig/examples/Makefile.am
++++ libosmo-netif-1.7.0/examples/Makefile.am
 @@ -1,5 +1,5 @@
  AM_CPPFLAGS = -I$(top_srcdir)/include
 -AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) 
$(COVERAGE_CFLAGS)
@@ -84,16 +84,16 @@
  osmux_test_output_LDADD = $(top_builddir)/src/libosmonetif.la \
 -                        $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
 +                        $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
-Index: libosmo-netif-1.6.0/src/Makefile.am
+Index: libosmo-netif-1.7.0/src/Makefile.am
 ===================================================================
---- libosmo-netif-1.6.0.orig/src/Makefile.am
-+++ libosmo-netif-1.6.0/src/Makefile.am
-@@ -3,7 +3,7 @@
- LIBVERSION=14:0:3
+--- libosmo-netif-1.7.0.orig/src/Makefile.am
++++ libosmo-netif-1.7.0/src/Makefile.am
+@@ -4,7 +4,7 @@ LIBVERSION=15:0:4
  
  AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
--AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) 
$(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
-+AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) 
$(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS) $(TALLOC_CFLAGS)
+ AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) \
+-      $(LIBOSMOVTY_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
++      $(LIBOSMOVTY_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS) 
$(TALLOC_CFLAGS)
  AM_LDFLAGS = $(COVERAGE_LDFLAGS)
  
  lib_LTLIBRARIES = libosmonetif.la

Reply via email to