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:
commit
457e9d7212
@ -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
3
1.3.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:30abd32b8607426fc42f3b52b3a275c063dfda69d155f30da60eecf71f9432fa
|
||||||
|
size 325948
|
@ -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>
|
Fri Nov 19 09:14:18 UTC 2021 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libosmo-abis
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libosmo-abis
|
Name: libosmo-abis
|
||||||
Version: 1.2.0
|
Version: 1.3.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
|
||||||
@ -31,10 +31,10 @@ BuildRequires: libtool >= 2
|
|||||||
BuildRequires: pkgconfig >= 0.20
|
BuildRequires: pkgconfig >= 0.20
|
||||||
BuildRequires: xz
|
BuildRequires: xz
|
||||||
BuildRequires: pkgconfig(libosmo-e1d) >= 0.2.0
|
BuildRequires: pkgconfig(libosmo-e1d) >= 0.2.0
|
||||||
BuildRequires: pkgconfig(libosmocodec) >= 1.5.0
|
BuildRequires: pkgconfig(libosmocodec) >= 1.7.0
|
||||||
BuildRequires: pkgconfig(libosmocore) >= 1.5.0
|
BuildRequires: pkgconfig(libosmocore) >= 1.7.0
|
||||||
BuildRequires: pkgconfig(libosmogsm) >= 1.5.0
|
BuildRequires: pkgconfig(libosmogsm) >= 1.7.0
|
||||||
BuildRequires: pkgconfig(libosmovty) >= 1.5.0
|
BuildRequires: pkgconfig(libosmovty) >= 1.7.0
|
||||||
BuildRequires: pkgconfig(ortp) >= 0.22
|
BuildRequires: pkgconfig(ortp) >= 0.22
|
||||||
BuildRequires: pkgconfig(talloc)
|
BuildRequires: pkgconfig(talloc)
|
||||||
|
|
||||||
@ -128,7 +128,7 @@ fi
|
|||||||
%postun -n libosmotrau2 -p /sbin/ldconfig
|
%postun -n libosmotrau2 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n libosmoabis10
|
%files -n libosmoabis10
|
||||||
%_libdir/libosmoabis.so.10*
|
%_libdir/libosmoabis.so.*
|
||||||
|
|
||||||
%files -n libosmoabis-devel
|
%files -n libosmoabis-devel
|
||||||
%license COPYING
|
%license COPYING
|
||||||
@ -139,7 +139,7 @@ fi
|
|||||||
%_libdir/pkgconfig/libosmoabis.pc
|
%_libdir/pkgconfig/libosmoabis.pc
|
||||||
|
|
||||||
%files -n libosmotrau2
|
%files -n libosmotrau2
|
||||||
%_libdir/libosmotrau.so.2*
|
%_libdir/libosmotrau.so.*
|
||||||
|
|
||||||
%files -n libosmotrau-devel
|
%files -n libosmotrau-devel
|
||||||
%license COPYING
|
%license COPYING
|
||||||
|
@ -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.1.1/configure.ac
|
Index: libosmo-abis-1.3.0/configure.ac
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-abis-1.1.1.orig/configure.ac
|
--- libosmo-abis-1.3.0.orig/configure.ac
|
||||||
+++ libosmo-abis-1.1.1/configure.ac
|
+++ libosmo-abis-1.3.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.6.0)
|
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0)
|
||||||
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.6.0)
|
PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.7.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.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.3.0.orig/src/Makefile.am
|
||||||
+++ libosmo-abis-1.1.1/src/Makefile.am
|
+++ libosmo-abis-1.3.0/src/Makefile.am
|
||||||
@@ -7,7 +7,7 @@ TRAU_LIBVERSION=6:0:4
|
@@ -7,7 +7,7 @@ TRAU_LIBVERSION=7:0:5
|
||||||
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user