Change in osmo-cbc[master]: Add RPM spec file

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Fri Jan 22 19:16:29 UTC 2021


laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-cbc/+/22389 )


Change subject: Add RPM spec file
......................................................................

Add RPM spec file

Change-Id: I79e04228e8034e0d50a44f54c36363074fc01995
---
M .gitignore
M Makefile.am
M configure.ac
A contrib/osmo-cbc.spec.in
4 files changed, 96 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-cbc refs/changes/89/22389/1

diff --git a/.gitignore b/.gitignore
index 925f48d..d2b3af9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -58,3 +58,5 @@
 doc/manuals/common
 doc/manuals/build
 doc/manuals/vty/cbc_vty_reference.xml
+
+contrib/osmo-cbc.spec
diff --git a/Makefile.am b/Makefile.am
index d292296..7a549f2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,7 @@
 AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
 SUBDIRS = src doc contrib tests
 
-EXTRA_DIST = .version git-version-gen
+EXTRA_DIST = .version git-version-gen contrib/osmo-cbc.spec.in
 
 AM_DISTCHECK_CONFIGURE_FLAGS = \
 	--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
diff --git a/configure.ac b/configure.ac
index 342eb84..2a141a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -168,6 +168,7 @@
 AC_OUTPUT(
     src/Makefile
     contrib/Makefile
+    contrib/osmo-cbc.spec
     tests/Makefile
     doc/Makefile
     doc/examples/Makefile
diff --git a/contrib/osmo-cbc.spec.in b/contrib/osmo-cbc.spec.in
new file mode 100644
index 0000000..ca876c8
--- /dev/null
+++ b/contrib/osmo-cbc.spec.in
@@ -0,0 +1,92 @@
+#
+# spec file for package osmo-cbc
+#
+# Copyright (c) 2021, Harald Welte <laforge at gnumonks.org>
+#
+# 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.
+
+## Disable LTO for now since it breaks compilation of the tests
+## https://osmocom.org/issues/4113
+%define _lto_cflags %{nil}
+
+Name:           osmo-cbc
+Version:        @VERSION@
+Release:        0
+Summary:        OsmoCBC: Osmocom's Cell Broadcast Centre for 3GPP mobile networks
+License:        AGPL-3.0-or-later AND GPL-2.0-or-later
+Group:          Hardware/Mobile
+URL:            https://osmocom.org/projects/osmo-cbc
+Source:         %{name}-%{version}.tar.xz
+BuildRequires:  automake >= 1.9
+BuildRequires:  libtool >= 2
+BuildRequires:  pkgconfig >= 0.20
+%if 0%{?suse_version}
+BuildRequires:  systemd-rpm-macros
+%endif
+BuildRequires:  pkgconfig(libcrypto) >= 0.9.5
+BuildRequires:  pkgconfig(libosmo-mgcp-client) >= 1.5.0
+BuildRequires:  pkgconfig(libosmo-netif) >= 0.6.0
+BuildRequires:  pkgconfig(libosmo-sccp) >= 0.10.0
+BuildRequires:  pkgconfig(libosmo-sigtran) >= 0.10.0
+BuildRequires:  pkgconfig(libosmoabis) >= 0.6.0
+BuildRequires:  pkgconfig(libosmocore) >= 1.2.0
+BuildRequires:  pkgconfig(libosmoctrl) >= 1.2.0
+BuildRequires:  pkgconfig(libosmogb)
+BuildRequires:  pkgconfig(libosmogsm) >= 1.2.0
+BuildRequires:  pkgconfig(libosmovty) >= 1.2.0
+BuildRequires:  pkgconfig(talloc)
+%{?systemd_requires}
+
+%description
+OsmoCBC: Osmocom's Cell Broadcast Centre for 3GPP mobile networks.
+
+%prep
+%setup -q
+
+%build
+echo "%{version}" >.tarball-version
+autoreconf -fi
+%configure \
+  --docdir=%{_docdir}/%{name} \
+  --with-systemdsystemunitdir=%{_unitdir}
+make %{?_smp_mflags}
+
+%install
+%make_install
+
+%if 0%{?suse_version}
+%preun
+%service_del_preun %{name}.service
+
+%postun
+%service_del_postun %{name}.service
+
+%pre
+%service_add_pre %{name}.service
+
+%post
+%service_add_post %{name}.service
+%endif
+
+%check
+make %{?_smp_mflags} check || (find . -name testsuite.log -exec cat {} +)
+
+%files
+%license COPYING
+%doc AUTHORS README
+%{_bindir}/osmo-cbc
+%dir %{_docdir}/%{name}/examples
+%dir %{_docdir}/%{name}/examples/osmo-cbc
+%{_docdir}/%{name}/examples/osmo-cbc/osmo-cbc*.cfg
+%dir %{_sysconfdir}/osmocom
+%config(noreplace) %{_sysconfdir}/osmocom/osmo-cbc.cfg
+%{_unitdir}/%{name}.service
+
+%changelog

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-cbc/+/22389
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-cbc
Gerrit-Branch: master
Gerrit-Change-Id: I79e04228e8034e0d50a44f54c36363074fc01995
Gerrit-Change-Number: 22389
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210122/6eb24c14/attachment.htm>


More information about the gerrit-log mailing list