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>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">git://git.osmocom.org/libosmo-sccp</param>
|
||||
<param name="revision">1.2.1</param>
|
||||
<param name="versionformat">1.2.1</param>
|
||||
<param name="url">https://git.osmocom.org/libosmo-sccp</param>
|
||||
<param name="revision">1.3.0</param>
|
||||
<param name="versionformat">1.3.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: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>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: libosmo-sccp
|
||||
Version: 1.2.1
|
||||
Version: 1.3.0
|
||||
Release: 0
|
||||
%define libversion %(echo "%version" | sed 's/\\./_/g')
|
||||
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
|
||||
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
|
||||
Patch1: 0001-build-fixes.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: automake >= 1.6
|
||||
BuildRequires: libtool >= 2
|
||||
BuildRequires: lksctp-tools-devel
|
||||
@ -160,12 +159,12 @@ a STP, such as Global Title Routing, Global Title Translation.
|
||||
%build
|
||||
echo "%version" >.tarball-version
|
||||
autoreconf -fiv
|
||||
%configure CFLAGS="%optflags -fcommon" \
|
||||
--disable-static \
|
||||
--includedir="%_includedir/%name" \
|
||||
# bugzilla.opensuse.org/795968 for rationale
|
||||
%configure --includedir="%_includedir/%name" \
|
||||
--docdir="%_defaultdocdir/%name" \
|
||||
--with-systemdsystemunitdir=%_unitdir
|
||||
make %{?_smp_mflags}
|
||||
--with-systemdsystemunitdir="%_unitdir" \
|
||||
--disable-static CFLAGS="%optflags -fcommon"
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@ -174,7 +173,7 @@ install -d "%buildroot/%_unitdir" "%buildroot/%_sbindir"
|
||||
ln -s service "%buildroot/%_sbindir/rcosmo-stp"
|
||||
|
||||
%check
|
||||
if ! make %{?_smp_mflags} check; then
|
||||
if ! %make_build check; then
|
||||
find . -name testsuite.log -exec cat "{}" "+"
|
||||
%ifnarch ppc64 sparc64 s390x
|
||||
# still BE problems?
|
||||
@ -204,56 +203,49 @@ fi
|
||||
%service_add_post osmo-stp.service
|
||||
|
||||
%files -n libosmo-mtp-%libversion
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libosmo-mtp-%version.so
|
||||
|
||||
%files -n libosmo-mtp-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %_includedir/%name
|
||||
%dir %_includedir/%name/osmocom
|
||||
%dir %_includedir/%name/
|
||||
%dir %_includedir/%name/osmocom/
|
||||
%_includedir/%name/osmocom/mtp/
|
||||
%_libdir/libosmo-mtp.so
|
||||
%_libdir/pkgconfig/libosmo-mtp.pc
|
||||
|
||||
%files -n libosmo-sccp-%libversion
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libosmo-sccp-%version.so
|
||||
|
||||
%files -n libosmo-sccp-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %_includedir/%name
|
||||
%dir %_includedir/%name/osmocom
|
||||
%dir %_includedir/%name/
|
||||
%dir %_includedir/%name/osmocom/
|
||||
%_includedir/%name/osmocom/sccp/
|
||||
%_libdir/libosmo-sccp.so
|
||||
%_libdir/pkgconfig/libosmo-sccp.pc
|
||||
|
||||
%files -n libosmo-sigtran5
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libosmo-sigtran.so.5*
|
||||
|
||||
%files -n libosmo-sigtran-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %_includedir/%name
|
||||
%dir %_includedir/%name/osmocom
|
||||
%dir %_includedir/%name/
|
||||
%dir %_includedir/%name/osmocom/
|
||||
%_includedir/%name/osmocom/sigtran/
|
||||
%_libdir/libosmo-sigtran.so
|
||||
%_libdir/pkgconfig/libosmo-sigtran.pc
|
||||
|
||||
%files -n libosmo-xua-%libversion
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libosmo-xua-%version.so
|
||||
|
||||
%files -n libosmo-xua-devel
|
||||
%defattr(-,root,root)
|
||||
%_libdir/libosmo-xua.so
|
||||
%_libdir/pkgconfig/libosmo-xua.pc
|
||||
|
||||
%files -n osmo-stp
|
||||
%dir %{_sysconfdir}/osmocom
|
||||
%config %{_sysconfdir}/osmocom/osmo-stp.cfg
|
||||
%dir %_sysconfdir/osmocom
|
||||
%config %_sysconfdir/osmocom/osmo-stp.cfg
|
||||
%_bindir/osmo-stp
|
||||
%_sbindir/rcosmo-stp
|
||||
%_unitdir/osmo-stp.service
|
||||
%_defaultdocdir/%name/
|
||||
%license COPYING
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user