1
0
forked from pool/libosmo-abis

- Update to release 1.4.1

OBS-URL: https://build.opensuse.org/package/show/network:telephony/libosmo-abis?expand=0&rev=57
This commit is contained in:
Jan Engelhardt 2023-05-18 11:26:21 +00:00 committed by Git OBS Bridge
parent a0fad94a57
commit f6ae4f5cef
5 changed files with 28 additions and 20 deletions

View File

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

3
1.4.1.tar.gz Normal file
View File

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

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Thu May 18 10:15:24 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Update to release 1.4.1
* trau_sync: Add the V.110 sync pattern
* trau_sync: add Ericsson RBS GPRS TRAU synchronization pattern
(16 & 64kbps)
* Add missing functions to send HDLC/RAW data
-------------------------------------------------------------------
Wed Aug 3 14:54:10 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package libosmo-abis
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,24 +17,23 @@
Name: libosmo-abis
Version: 1.3.0
Version: 1.4.1
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
Group: Productivity/Telephony/Utilities
URL: https://osmocom.org/projects/libosmo-abis/wiki/Libosmo-abis
Source: https://github.com/osmocom/libosmo-abis/archive/%version.tar.gz
Patch1: osmo-talloc.diff
BuildRequires: automake >= 1.6
BuildRequires: libtool >= 2
BuildRequires: pkgconfig >= 0.20
BuildRequires: xz
BuildRequires: pkgconfig(libosmo-e1d) >= 0.2.0
BuildRequires: pkgconfig(libosmocodec) >= 1.7.0
BuildRequires: pkgconfig(libosmocore) >= 1.7.0
BuildRequires: pkgconfig(libosmogsm) >= 1.7.0
BuildRequires: pkgconfig(libosmovty) >= 1.7.0
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(ortp) >= 0.22
BuildRequires: pkgconfig(talloc)

View File

@ -9,23 +9,23 @@ The source files use talloc, so link to talloc.
src/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
Index: libosmo-abis-1.3.0/configure.ac
Index: libosmo-abis-1.4.1/configure.ac
===================================================================
--- libosmo-abis-1.3.0.orig/configure.ac
+++ libosmo-abis-1.3.0/configure.ac
--- libosmo-abis-1.4.1.orig/configure.ac
+++ libosmo-abis-1.4.1/configure.ac
@@ -71,6 +71,7 @@ PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0)
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.7.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.8.0)
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.8.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.3.0/src/Makefile.am
Index: libosmo-abis-1.4.1/src/Makefile.am
===================================================================
--- libosmo-abis-1.3.0.orig/src/Makefile.am
+++ libosmo-abis-1.3.0/src/Makefile.am
@@ -7,7 +7,7 @@ TRAU_LIBVERSION=7:0:5
--- 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
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)