1
0
forked from pool/libosmo-abis

Accepting request 992622 from network:telephony

- Update to release 1.3.0

OBS-URL: https://build.opensuse.org/request/show/992622
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libosmo-abis?expand=0&rev=16
This commit is contained in:
Dominique Leuenberger 2022-08-03 19:17:09 +00:00 committed by Git OBS Bridge
commit 457e9d7212
5 changed files with 26 additions and 20 deletions

View File

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

3
1.3.0.tar.gz Normal file
View File

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

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Aug 3 14:54:10 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
- Update to release 1.3.0
* input/e1d: fix a memleak in handle_ts_raw_read()
-------------------------------------------------------------------
Fri Nov 19 09:14:18 UTC 2021 - Martin Hauke <mardnh@gmx.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package libosmo-abis
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2022 SUSE LLC
#
# 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-abis
Version: 1.2.0
Version: 1.3.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
@ -31,10 +31,10 @@ BuildRequires: libtool >= 2
BuildRequires: pkgconfig >= 0.20
BuildRequires: xz
BuildRequires: pkgconfig(libosmo-e1d) >= 0.2.0
BuildRequires: pkgconfig(libosmocodec) >= 1.5.0
BuildRequires: pkgconfig(libosmocore) >= 1.5.0
BuildRequires: pkgconfig(libosmogsm) >= 1.5.0
BuildRequires: pkgconfig(libosmovty) >= 1.5.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(ortp) >= 0.22
BuildRequires: pkgconfig(talloc)
@ -128,7 +128,7 @@ fi
%postun -n libosmotrau2 -p /sbin/ldconfig
%files -n libosmoabis10
%_libdir/libosmoabis.so.10*
%_libdir/libosmoabis.so.*
%files -n libosmoabis-devel
%license COPYING
@ -139,7 +139,7 @@ fi
%_libdir/pkgconfig/libosmoabis.pc
%files -n libosmotrau2
%_libdir/libosmotrau.so.2*
%_libdir/libosmotrau.so.*
%files -n libosmotrau-devel
%license COPYING

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.1.1/configure.ac
Index: libosmo-abis-1.3.0/configure.ac
===================================================================
--- libosmo-abis-1.1.1.orig/configure.ac
+++ libosmo-abis-1.1.1/configure.ac
--- libosmo-abis-1.3.0.orig/configure.ac
+++ libosmo-abis-1.3.0/configure.ac
@@ -71,6 +71,7 @@ PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.6.0)
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.6.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0)
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.7.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.1.1/src/Makefile.am
Index: libosmo-abis-1.3.0/src/Makefile.am
===================================================================
--- libosmo-abis-1.1.1.orig/src/Makefile.am
+++ libosmo-abis-1.1.1/src/Makefile.am
@@ -7,7 +7,7 @@ TRAU_LIBVERSION=6:0:4
--- 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
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)