forked from pool/libosmo-abis
Accepting request 669392 from home:mnhauke:osmocom:latest
- Update to new upstream release 0.6.0 * Bugfix release only. The full changelog is available via http://git.osmocom.org/libosmo-abis/plain/debian/changelog?h=0.6.0 OBS-URL: https://build.opensuse.org/request/show/669392 OBS-URL: https://build.opensuse.org/package/show/network:telephony/libosmo-abis?expand=0&rev=37
This commit is contained in:
parent
f420704397
commit
cf208b6b04
4
_service
4
_service
@ -2,8 +2,8 @@
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">git://git.osmocom.org/libosmo-abis</param>
|
||||
<param name="parent-tag">0.5.1</param>
|
||||
<param name="versionformat">0.5.1</param>
|
||||
<param name="parent-tag">0.6.0</param>
|
||||
<param name="versionformat">0.6.0</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c0c873b6dde6ced011bb18e4a15bb4231bafa7eaa917262c738fda586020731f
|
||||
size 70608
|
3
libosmo-abis-0.6.0.tar.xz
Normal file
3
libosmo-abis-0.6.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9c224a4a89525e06c277bb5b608109b19e4e3e31b5c274eafc7c79b47945ce3f
|
||||
size 71072
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 28 22:37:38 UTC 2019 - mardnh@gmx.de
|
||||
|
||||
- Update to new upstream release 0.6.0
|
||||
* Bugfix release only.
|
||||
The full changelog is available via
|
||||
http://git.osmocom.org/libosmo-abis/plain/debian/changelog?h=0.6.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 11 00:56:52 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libosmo-abis
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,14 +12,14 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define version_unconverted 0.5.1
|
||||
%define version_unconverted 0.6.0
|
||||
|
||||
Name: libosmo-abis
|
||||
Version: 0.5.1
|
||||
Version: 0.6.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
|
||||
@ -34,9 +34,9 @@ BuildRequires: automake >= 1.6
|
||||
BuildRequires: libtool >= 2
|
||||
BuildRequires: pkgconfig >= 0.20
|
||||
BuildRequires: xz
|
||||
BuildRequires: pkgconfig(libosmocore) >= 0.12.0
|
||||
BuildRequires: pkgconfig(libosmogsm) >= 0.13~git14
|
||||
BuildRequires: pkgconfig(libosmovty) >= 0.12.0
|
||||
BuildRequires: pkgconfig(libosmocore) >= 1.0.0
|
||||
BuildRequires: pkgconfig(libosmogsm) >= 1.0.0
|
||||
BuildRequires: pkgconfig(libosmovty) >= 1.0.0
|
||||
BuildRequires: pkgconfig(ortp) >= 0.22
|
||||
BuildRequires: pkgconfig(talloc)
|
||||
|
||||
@ -65,8 +65,8 @@ Summary: Development files for the Osmocom GSM A-bis library
|
||||
License: AGPL-3.0-or-later
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libosmoabis6 = %version
|
||||
Requires: libosmocore-devel >= 0.3.0
|
||||
Requires: libosmogsm-devel >= 0.3.10
|
||||
Requires: libosmocore-devel >= 1.0.0
|
||||
Requires: libosmogsm-devel >= 1.0.0
|
||||
|
||||
%description -n libosmoabis-devel
|
||||
This library contains common/shared code regarding the GSM A-bis
|
||||
|
@ -18,9 +18,9 @@ Index: libosmo-abis-0.5.1/configure.ac
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
+PKG_CHECK_MODULES([TALLOC], [talloc])
|
||||
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.12.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.12.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.12.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.0.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.0.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.0.0)
|
||||
Index: libosmo-abis-0.5.1/src/Makefile.am
|
||||
===================================================================
|
||||
--- libosmo-abis-0.5.1.orig/src/Makefile.am
|
||||
|
Loading…
Reference in New Issue
Block a user