Accepting request 832611 from network:telephony
- Update to release 1.3.0 OBS-URL: https://build.opensuse.org/request/show/832611 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libosmo-sccp?expand=0&rev=14
This commit is contained in:
commit
6fb58e0d97
6
_service
6
_service
@ -1,9 +1,9 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">git://git.osmocom.org/libosmo-sccp</param>
|
<param name="url">https://git.osmocom.org/libosmo-sccp</param>
|
||||||
<param name="revision">1.2.1</param>
|
<param name="revision">1.3.0</param>
|
||||||
<param name="versionformat">1.2.1</param>
|
<param name="versionformat">1.3.0</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d1d8c3b58afe9ce4d0029f99826111826f6c1be2cd2135dc5cb646aa4c2784e2
|
|
||||||
size 210372
|
|
3
libosmo-sccp-1.3.0.tar.xz
Normal file
3
libosmo-sccp-1.3.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a24830860a318d0f9c0fd7d9fcc00bb9d3a0eb0e56c34cf2e06f4fb4541b5a89
|
||||||
|
size 214536
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 6 12:59:41 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.3.0
|
||||||
|
* ss7: Introduce APIs to manage asp_peer hosts
|
||||||
|
* sccp: Fix null ptr access on malformed or unsupported msg received
|
||||||
|
* sccp: Support receiving messages with no optional params
|
||||||
|
* cs7 vty: add 'show cs7 config'
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Aug 1 14:07:01 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
Sat Aug 1 14:07:01 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libosmo-sccp
|
Name: libosmo-sccp
|
||||||
Version: 1.2.1
|
Version: 1.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
%define libversion %(echo "%version" | sed 's/\\./_/g')
|
%define libversion %(echo "%version" | sed 's/\\./_/g')
|
||||||
Summary: Osmocom library for the A-bis interface between BTS and BSC
|
Summary: Osmocom library for the A-bis interface between BTS and BSC
|
||||||
@ -25,10 +25,9 @@ License: AGPL-3.0-or-later AND GPL-2.0-or-later
|
|||||||
Group: Hardware/Mobile
|
Group: Hardware/Mobile
|
||||||
URL: https://projects.osmocom.org/projects/libosmo-sccp
|
URL: https://projects.osmocom.org/projects/libosmo-sccp
|
||||||
|
|
||||||
#Git-Clone: git://git.osmocom.org/libosmo-sccp
|
#Git-Clone: https://git.osmocom.org/libosmo-sccp
|
||||||
Source: %name-%version.tar.xz
|
Source: %name-%version.tar.xz
|
||||||
Patch1: 0001-build-fixes.patch
|
Patch1: 0001-build-fixes.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: automake >= 1.6
|
BuildRequires: automake >= 1.6
|
||||||
BuildRequires: libtool >= 2
|
BuildRequires: libtool >= 2
|
||||||
BuildRequires: lksctp-tools-devel
|
BuildRequires: lksctp-tools-devel
|
||||||
@ -160,12 +159,12 @@ a STP, such as Global Title Routing, Global Title Translation.
|
|||||||
%build
|
%build
|
||||||
echo "%version" >.tarball-version
|
echo "%version" >.tarball-version
|
||||||
autoreconf -fiv
|
autoreconf -fiv
|
||||||
%configure CFLAGS="%optflags -fcommon" \
|
# bugzilla.opensuse.org/795968 for rationale
|
||||||
--disable-static \
|
%configure --includedir="%_includedir/%name" \
|
||||||
--includedir="%_includedir/%name" \
|
|
||||||
--docdir="%_defaultdocdir/%name" \
|
--docdir="%_defaultdocdir/%name" \
|
||||||
--with-systemdsystemunitdir=%_unitdir
|
--with-systemdsystemunitdir="%_unitdir" \
|
||||||
make %{?_smp_mflags}
|
--disable-static CFLAGS="%optflags -fcommon"
|
||||||
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -174,7 +173,7 @@ install -d "%buildroot/%_unitdir" "%buildroot/%_sbindir"
|
|||||||
ln -s service "%buildroot/%_sbindir/rcosmo-stp"
|
ln -s service "%buildroot/%_sbindir/rcosmo-stp"
|
||||||
|
|
||||||
%check
|
%check
|
||||||
if ! make %{?_smp_mflags} check; then
|
if ! %make_build check; then
|
||||||
find . -name testsuite.log -exec cat "{}" "+"
|
find . -name testsuite.log -exec cat "{}" "+"
|
||||||
%ifnarch ppc64 sparc64 s390x
|
%ifnarch ppc64 sparc64 s390x
|
||||||
# still BE problems?
|
# still BE problems?
|
||||||
@ -204,56 +203,49 @@ fi
|
|||||||
%service_add_post osmo-stp.service
|
%service_add_post osmo-stp.service
|
||||||
|
|
||||||
%files -n libosmo-mtp-%libversion
|
%files -n libosmo-mtp-%libversion
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libosmo-mtp-%version.so
|
%_libdir/libosmo-mtp-%version.so
|
||||||
|
|
||||||
%files -n libosmo-mtp-devel
|
%files -n libosmo-mtp-devel
|
||||||
%defattr(-,root,root)
|
%dir %_includedir/%name/
|
||||||
%dir %_includedir/%name
|
%dir %_includedir/%name/osmocom/
|
||||||
%dir %_includedir/%name/osmocom
|
|
||||||
%_includedir/%name/osmocom/mtp/
|
%_includedir/%name/osmocom/mtp/
|
||||||
%_libdir/libosmo-mtp.so
|
%_libdir/libosmo-mtp.so
|
||||||
%_libdir/pkgconfig/libosmo-mtp.pc
|
%_libdir/pkgconfig/libosmo-mtp.pc
|
||||||
|
|
||||||
%files -n libosmo-sccp-%libversion
|
%files -n libosmo-sccp-%libversion
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libosmo-sccp-%version.so
|
%_libdir/libosmo-sccp-%version.so
|
||||||
|
|
||||||
%files -n libosmo-sccp-devel
|
%files -n libosmo-sccp-devel
|
||||||
%defattr(-,root,root)
|
%dir %_includedir/%name/
|
||||||
%dir %_includedir/%name
|
%dir %_includedir/%name/osmocom/
|
||||||
%dir %_includedir/%name/osmocom
|
|
||||||
%_includedir/%name/osmocom/sccp/
|
%_includedir/%name/osmocom/sccp/
|
||||||
%_libdir/libosmo-sccp.so
|
%_libdir/libosmo-sccp.so
|
||||||
%_libdir/pkgconfig/libosmo-sccp.pc
|
%_libdir/pkgconfig/libosmo-sccp.pc
|
||||||
|
|
||||||
%files -n libosmo-sigtran5
|
%files -n libosmo-sigtran5
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libosmo-sigtran.so.5*
|
%_libdir/libosmo-sigtran.so.5*
|
||||||
|
|
||||||
%files -n libosmo-sigtran-devel
|
%files -n libosmo-sigtran-devel
|
||||||
%defattr(-,root,root)
|
%dir %_includedir/%name/
|
||||||
%dir %_includedir/%name
|
%dir %_includedir/%name/osmocom/
|
||||||
%dir %_includedir/%name/osmocom
|
|
||||||
%_includedir/%name/osmocom/sigtran/
|
%_includedir/%name/osmocom/sigtran/
|
||||||
%_libdir/libosmo-sigtran.so
|
%_libdir/libosmo-sigtran.so
|
||||||
%_libdir/pkgconfig/libosmo-sigtran.pc
|
%_libdir/pkgconfig/libosmo-sigtran.pc
|
||||||
|
|
||||||
%files -n libosmo-xua-%libversion
|
%files -n libosmo-xua-%libversion
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libosmo-xua-%version.so
|
%_libdir/libosmo-xua-%version.so
|
||||||
|
|
||||||
%files -n libosmo-xua-devel
|
%files -n libosmo-xua-devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%_libdir/libosmo-xua.so
|
%_libdir/libosmo-xua.so
|
||||||
%_libdir/pkgconfig/libosmo-xua.pc
|
%_libdir/pkgconfig/libosmo-xua.pc
|
||||||
|
|
||||||
%files -n osmo-stp
|
%files -n osmo-stp
|
||||||
%dir %{_sysconfdir}/osmocom
|
%dir %_sysconfdir/osmocom
|
||||||
%config %{_sysconfdir}/osmocom/osmo-stp.cfg
|
%config %_sysconfdir/osmocom/osmo-stp.cfg
|
||||||
%_bindir/osmo-stp
|
%_bindir/osmo-stp
|
||||||
%_sbindir/rcosmo-stp
|
%_sbindir/rcosmo-stp
|
||||||
%_unitdir/osmo-stp.service
|
%_unitdir/osmo-stp.service
|
||||||
%_defaultdocdir/%name/
|
%_defaultdocdir/%name/
|
||||||
|
%license COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user