1
0
forked from pool/libosmo-abis

- Update to release 1.5.0

OBS-URL: https://build.opensuse.org/package/show/network:telephony/libosmo-abis?expand=0&rev=59
This commit is contained in:
Jan Engelhardt 2023-11-01 18:44:35 +00:00 committed by Git OBS Bridge
parent f6ae4f5cef
commit 716bc020fa
5 changed files with 33 additions and 24 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c31611651bfce6bd450c110ca9b9373ea4ae2f41feb020e4f95274adf89951e9
size 345208

3
1.5.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fac0eea22a53a52b37a3d9efe10b1e744a43be483e5cc11f7971aebd36434ea6
size 354682

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Nov 1 18:24:27 UTC 2023 - Jan Engelhardt <jengelh@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
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 18 10:15:24 UTC 2023 - Jan Engelhardt <jengelh@inai.de> Thu May 18 10:15:24 UTC 2023 - Jan Engelhardt <jengelh@inai.de>

View File

@ -17,7 +17,7 @@
Name: libosmo-abis Name: libosmo-abis
Version: 1.4.1 Version: 1.5.0
Release: 0 Release: 0
Summary: Osmocom library for A-bis interface between BTS and BSC Summary: Osmocom library for A-bis interface between BTS and BSC
License: AGPL-3.0-or-later AND GPL-2.0-or-later License: AGPL-3.0-or-later AND GPL-2.0-or-later
@ -27,13 +27,13 @@ Source: https://github.com/osmocom/libosmo-abis/archive/%version.tar.gz
Patch1: osmo-talloc.diff Patch1: osmo-talloc.diff
BuildRequires: automake >= 1.6 BuildRequires: automake >= 1.6
BuildRequires: libtool >= 2 BuildRequires: libtool >= 2
BuildRequires: pkgconfig >= 0.20 BuildRequires: pkg-config >= 0.20
BuildRequires: xz BuildRequires: xz
BuildRequires: pkgconfig(libosmo-e1d) >= 0.5.0 BuildRequires: pkgconfig(libosmo-e1d) >= 0.5.0
BuildRequires: pkgconfig(libosmocodec) >= 1.8.0 BuildRequires: pkgconfig(libosmocodec) >= 1.9.0
BuildRequires: pkgconfig(libosmocore) >= 1.8.0 BuildRequires: pkgconfig(libosmocore) >= 1.9.0
BuildRequires: pkgconfig(libosmogsm) >= 1.8.0 BuildRequires: pkgconfig(libosmogsm) >= 1.9.0
BuildRequires: pkgconfig(libosmovty) >= 1.8.0 BuildRequires: pkgconfig(libosmovty) >= 1.9.0
BuildRequires: pkgconfig(ortp) >= 0.22 BuildRequires: pkgconfig(ortp) >= 0.22
BuildRequires: pkgconfig(talloc) BuildRequires: pkgconfig(talloc)
@ -42,12 +42,12 @@ In GSM, A-bis is a BSS-internal interface link between the BTS and
BSC. This interface allows control of the radio equipment and radio BSC. This interface allows control of the radio equipment and radio
frequency allocation in the BTS. frequency allocation in the BTS.
%package -n libosmoabis10 %package -n libosmoabis13
Summary: Osmocom GSM A-bis interface library Summary: Osmocom GSM A-bis interface library
License: AGPL-3.0-or-later License: AGPL-3.0-or-later
Group: System/Libraries Group: System/Libraries
%description -n libosmoabis10 %description -n libosmoabis13
In the GSM system architecture, A-bis is a Base Station In the GSM system architecture, A-bis is a Base Station
System-internal interface linking the Base Transceiver Stations (BTS) System-internal interface linking the Base Transceiver Stations (BTS)
and Base Station Controller (BSC). This interface allows control of and Base Station Controller (BSC). This interface allows control of
@ -61,7 +61,7 @@ cards, as well as some A-bis/IP dialects.
Summary: Development files for the Osmocom GSM A-bis library Summary: Development files for the Osmocom GSM A-bis library
License: AGPL-3.0-or-later License: AGPL-3.0-or-later
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Requires: libosmoabis10 = %version Requires: libosmoabis13 = %version
Requires: libosmocore-devel >= 1.4.0 Requires: libosmocore-devel >= 1.4.0
Requires: libosmogsm-devel >= 1.4.0 Requires: libosmogsm-devel >= 1.4.0
@ -121,12 +121,12 @@ if ! %make_build check; then
%endif %endif
fi fi
%post -n libosmoabis10 -p /sbin/ldconfig %post -n libosmoabis13 -p /sbin/ldconfig
%postun -n libosmoabis10 -p /sbin/ldconfig %postun -n libosmoabis13 -p /sbin/ldconfig
%post -n libosmotrau2 -p /sbin/ldconfig %post -n libosmotrau2 -p /sbin/ldconfig
%postun -n libosmotrau2 -p /sbin/ldconfig %postun -n libosmotrau2 -p /sbin/ldconfig
%files -n libosmoabis10 %files -n libosmoabis13
%_libdir/libosmoabis.so.* %_libdir/libosmoabis.so.*
%files -n libosmoabis-devel %files -n libosmoabis-devel

View File

@ -9,23 +9,23 @@ The source files use talloc, so link to talloc.
src/Makefile.am | 2 +- src/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-) 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.5.0.orig/configure.ac
+++ libosmo-abis-1.4.1/configure.ac +++ libosmo-abis-1.5.0/configure.ac
@@ -71,6 +71,7 @@ PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty @@ -71,6 +71,7 @@ PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.8.0) PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.9.0)
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.8.0) PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.9.0)
PKG_CHECK_MODULES(ORTP, ortp >= 0.22.0) PKG_CHECK_MODULES(ORTP, ortp >= 0.22.0)
+PKG_CHECK_MODULES([TALLOC], [talloc]) +PKG_CHECK_MODULES([TALLOC], [talloc])
AC_ARG_ENABLE([dahdi], AC_ARG_ENABLE([dahdi],
AC_HELP_STRING([--disable-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.5.0.orig/src/Makefile.am
+++ libosmo-abis-1.4.1/src/Makefile.am +++ libosmo-abis-1.5.0/src/Makefile.am
@@ -7,7 +7,7 @@ TRAU_LIBVERSION=8:0:6 @@ -7,7 +7,7 @@ TRAU_LIBVERSION=9:0:7
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir) 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_CFLAGS= -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOE1D_CFLAGS) $(LIBOSMOCODEC_CFLAGS) $(COVERAGE_CFLAGS)
AM_LDFLAGS = $(COVERAGE_LDFLAGS) AM_LDFLAGS = $(COVERAGE_LDFLAGS)