[info=a974e7da03ff6419f7ecb9725f9a659a1b51932ef5dc72cde12015b00fba1946]

OBS-URL: https://build.opensuse.org/package/show/network:telephony/osmo-smlc?expand=0&rev=12
This commit is contained in:
Jan Engelhardt 2024-10-26 13:56:18 +00:00 committed by Git OBS Bridge
commit 2858cb57d0
7 changed files with 145 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
0.2.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b8bcc4d1b6329644fe6c6437c364a35534fc3ee50b2b04d8a9d11c7184ee75b
size 57970

4
_scmsync.obsinfo Normal file
View File

@ -0,0 +1,4 @@
mtime: 1698952916
commit: a974e7da03ff6419f7ecb9725f9a659a1b51932ef5dc72cde12015b00fba1946
url: https://src.opensuse.org/jengelh/osmo-smlc
revision: master

3
build.specials.obscpio Normal file
View File

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

28
osmo-smlc.changes Normal file
View File

@ -0,0 +1,28 @@
-------------------------------------------------------------------
Wed Nov 1 20:43:30 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.2.4
* Write explicit role & sctp-role fields in ASP configurations
-------------------------------------------------------------------
Thu May 18 11:36:43 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.2.3
* ctrl: take both address and port from vty config
-------------------------------------------------------------------
Wed Aug 3 18:34:44 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.2.2
* Editorial changes only
-------------------------------------------------------------------
Fri Nov 19 11:49:15 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to new upstream release 0.2.1
* Use new stat item/ctr getter APIs
-------------------------------------------------------------------
Sun Mar 14 21:24:25 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
- Initial package (version 0.2.0) for build.opensuse.org

83
osmo-smlc.spec Normal file
View File

@ -0,0 +1,83 @@
#
# spec file for package osmo-smlc
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#
Name: osmo-smlc
Version: 0.2.4
Release: 0
Summary: Osmocom Serving Mobile Location Centre
License: AGPL-3.0-or-later
Group: Productivity/Telephony/Utilities
URL: https://osmocom.org/projects/osmo-smlc
#Git-Clone: https://git.osmocom.org/osmo-smlc/
Source: https://github.com/osmocom/osmo-smlc/archive/refs/tags/%version.tar.gz
BuildRequires: autoconf-archive
BuildRequires: automake
BuildRequires: libtool >= 2
BuildRequires: lksctp-tools-devel
BuildRequires: pkg-config >= 0.20
BuildRequires: pkgconfig(libosmo-sccp) >= 1.8.0
BuildRequires: pkgconfig(libosmo-sigtran) >= 1.8.0
BuildRequires: pkgconfig(libosmocore) >= 1.9.0
BuildRequires: pkgconfig(libosmoctrl) >= 1.9.0
BuildRequires: pkgconfig(libosmogsm) >= 1.9.0
BuildRequires: pkgconfig(libosmovty) >= 1.9.0
%description
OsmoSMLC is the Osmocom Serving Mobile Location Centre. It implements
the SMLC functionality as specified in 3GPP networks
Location_Services architecture.
%prep
%autosetup -p1
%build
echo "%version" >.tarball-version
autoreconf -fi
%configure \
--with-systemdsystemunitdir="%_unitdir" \
--docdir="%_docdir/%name"
%make_build
%install
%make_install
# you should put this in usr
rm -rf "%buildroot/%_sysconfdir"
%check
%make_build check || (find . -name testsuite.log -exec cat {} +)
%preun
%service_del_preun %name.service
%postun
%service_del_postun %name.service
%pre
%service_add_pre %name.service
%post
%service_add_post %name.service
%files
%_bindir/osmo*
%_unitdir/*
%doc %_docdir/%name/
%license COPYING
%doc README.md
%changelog