Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libosmo-abis for openSUSE:Factory checked in at 2023-11-02 20:21:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libosmo-abis (Old) and /work/SRC/openSUSE:Factory/.libosmo-abis.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libosmo-abis" Thu Nov 2 20:21:50 2023 rev:18 rq:1121718 version:1.5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libosmo-abis/libosmo-abis.changes 2023-05-19 11:56:04.527453330 +0200 +++ /work/SRC/openSUSE:Factory/.libosmo-abis.new.17445/libosmo-abis.changes 2023-11-02 20:22:02.993116121 +0100 @@ -1,0 +2,9 @@ +Wed Nov 1 18:24:27 UTC 2023 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 1.5.0 + * Add more L1 signals to common part + * Add function to set Sa bits to common part + * Add L1 signals to misdn driver + * Add setting of Sa bits to misdn driver + +------------------------------------------------------------------- Old: ---- 1.4.1.tar.gz New: ---- 1.5.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libosmo-abis.spec ++++++ --- /var/tmp/diff_new_pack.7lbLKq/_old 2023-11-02 20:22:03.781145117 +0100 +++ /var/tmp/diff_new_pack.7lbLKq/_new 2023-11-02 20:22:03.785145265 +0100 @@ -17,7 +17,7 @@ Name: libosmo-abis -Version: 1.4.1 +Version: 1.5.0 Release: 0 Summary: Osmocom library for A-bis interface between BTS and BSC License: AGPL-3.0-or-later AND GPL-2.0-or-later @@ -27,13 +27,13 @@ Patch1: osmo-talloc.diff BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2 -BuildRequires: pkgconfig >= 0.20 +BuildRequires: pkg-config >= 0.20 BuildRequires: xz BuildRequires: pkgconfig(libosmo-e1d) >= 0.5.0 -BuildRequires: pkgconfig(libosmocodec) >= 1.8.0 -BuildRequires: pkgconfig(libosmocore) >= 1.8.0 -BuildRequires: pkgconfig(libosmogsm) >= 1.8.0 -BuildRequires: pkgconfig(libosmovty) >= 1.8.0 +BuildRequires: pkgconfig(libosmocodec) >= 1.9.0 +BuildRequires: pkgconfig(libosmocore) >= 1.9.0 +BuildRequires: pkgconfig(libosmogsm) >= 1.9.0 +BuildRequires: pkgconfig(libosmovty) >= 1.9.0 BuildRequires: pkgconfig(ortp) >= 0.22 BuildRequires: pkgconfig(talloc) @@ -42,12 +42,12 @@ BSC. This interface allows control of the radio equipment and radio frequency allocation in the BTS. -%package -n libosmoabis10 +%package -n libosmoabis13 Summary: Osmocom GSM A-bis interface library License: AGPL-3.0-or-later Group: System/Libraries -%description -n libosmoabis10 +%description -n libosmoabis13 In the GSM system architecture, A-bis is a Base Station System-internal interface linking the Base Transceiver Stations (BTS) and Base Station Controller (BSC). This interface allows control of @@ -61,7 +61,7 @@ Summary: Development files for the Osmocom GSM A-bis library License: AGPL-3.0-or-later Group: Development/Libraries/C and C++ -Requires: libosmoabis10 = %version +Requires: libosmoabis13 = %version Requires: libosmocore-devel >= 1.4.0 Requires: libosmogsm-devel >= 1.4.0 @@ -121,12 +121,12 @@ %endif fi -%post -n libosmoabis10 -p /sbin/ldconfig -%postun -n libosmoabis10 -p /sbin/ldconfig +%post -n libosmoabis13 -p /sbin/ldconfig +%postun -n libosmoabis13 -p /sbin/ldconfig %post -n libosmotrau2 -p /sbin/ldconfig %postun -n libosmotrau2 -p /sbin/ldconfig -%files -n libosmoabis10 +%files -n libosmoabis13 %_libdir/libosmoabis.so.* %files -n libosmoabis-devel ++++++ 1.4.1.tar.gz -> 1.5.0.tar.gz ++++++ ++++ 3665 lines of diff (skipped) ++++++ osmo-talloc.diff ++++++ --- /var/tmp/diff_new_pack.7lbLKq/_old 2023-11-02 20:22:03.897149386 +0100 +++ /var/tmp/diff_new_pack.7lbLKq/_new 2023-11-02 20:22:03.901149533 +0100 @@ -9,23 +9,23 @@ src/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -Index: libosmo-abis-1.4.1/configure.ac +Index: libosmo-abis-1.5.0/configure.ac =================================================================== ---- libosmo-abis-1.4.1.orig/configure.ac -+++ libosmo-abis-1.4.1/configure.ac +--- libosmo-abis-1.5.0.orig/configure.ac ++++ libosmo-abis-1.5.0/configure.ac @@ -71,6 +71,7 @@ PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty - PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.8.0) - PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.8.0) + PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.9.0) + PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.9.0) PKG_CHECK_MODULES(ORTP, ortp >= 0.22.0) +PKG_CHECK_MODULES([TALLOC], [talloc]) AC_ARG_ENABLE([dahdi], AC_HELP_STRING([--disable-dahdi], -Index: libosmo-abis-1.4.1/src/Makefile.am +Index: libosmo-abis-1.5.0/src/Makefile.am =================================================================== ---- libosmo-abis-1.4.1.orig/src/Makefile.am -+++ libosmo-abis-1.4.1/src/Makefile.am -@@ -7,7 +7,7 @@ TRAU_LIBVERSION=8:0:6 +--- libosmo-abis-1.5.0.orig/src/Makefile.am ++++ libosmo-abis-1.5.0/src/Makefile.am +@@ -7,7 +7,7 @@ TRAU_LIBVERSION=9:0:7 AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS= -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOE1D_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(COVERAGE_CFLAGS) AM_LDFLAGS = $(COVERAGE_LDFLAGS)