Projects
osmocom:master
libosmocore
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 81
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-master -Version: 1.8.0.25.f4f5d +Version: 1.8.0.26.8200 Release: 0 Summary: The Open Source Mobile Communications Core Library License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later Group: Productivity/Telephony/Utilities Url: https://osmocom.org/projects/libosmocore/wiki/Libosmocore -Source: libosmocore_1.8.0.25.f4f5d.tar.xz +Source: libosmocore_1.8.0.26.8200.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
commit_82001ebc2a58e5c868e17b30e8c89204984d391a.txt
Added
View file
commit_f4f5d54ea2cb47a51aeaec2b5fb990664755900a.txt
Deleted
View file
libosmocore_1.8.0.25.f4f5d.dsc -> libosmocore_1.8.0.26.8200.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmocore Binary: libosmocore, libosmocodec0, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore20, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm18, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty9, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmousb0, libosmocore-dev, libosmocore-utils, libosmocore-dbg Architecture: any all -Version: 1.8.0.25.f4f5d +Version: 1.8.0.26.8200 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmocore Standards-Version: 3.9.8 @@ -33,8 +33,8 @@ libosmovty-doc deb doc optional arch=all libosmovty9 deb libs optional arch=any Checksums-Sha1: - ec8ad41e65e7d531abe177ac009d08d0519df599 1019748 libosmocore_1.8.0.25.f4f5d.tar.xz + 402942434c82722ef8c434ef22e8d8d4f19bd086 1019376 libosmocore_1.8.0.26.8200.tar.xz Checksums-Sha256: - af9c5dcb8d93ac6a7168bc93bef2682d36442d8256154c3a82162713b6c46d00 1019748 libosmocore_1.8.0.25.f4f5d.tar.xz + 7a1c997d4b2b65940d7bde4c993d629c063ae621bb5a6ba0882aea1a8c5e6dd0 1019376 libosmocore_1.8.0.26.8200.tar.xz Files: - 06a4361ac882a5ebd9ab2f38d09b35bb 1019748 libosmocore_1.8.0.25.f4f5d.tar.xz + 4c8db85d64b1070d7fa2f2e6d8abb78a 1019376 libosmocore_1.8.0.26.8200.tar.xz
View file
libosmocore_1.8.0.25.f4f5d.tar.xz/.tarball-version -> libosmocore_1.8.0.26.8200.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.8.0.25-f4f5d +1.8.0.26-8200
View file
libosmocore_1.8.0.25.f4f5d.tar.xz/debian/changelog -> libosmocore_1.8.0.26.8200.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmocore (1.8.0.25.f4f5d) unstable; urgency=medium +libosmocore (1.8.0.26.8200) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Fri, 24 Feb 2023 09:44:56 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Fri, 24 Feb 2023 12:17:25 +0000 libosmocore (1.8.0) unstable; urgency=medium
View file
libosmocore_1.8.0.25.f4f5d.tar.xz/include/osmocom/gsm/bts_features.h -> libosmocore_1.8.0.26.8200.tar.xz/include/osmocom/gsm/bts_features.h
Changed
@@ -7,7 +7,7 @@ /* N. B: always add new features to the end of the list (right before _NUM_BTS_FEAT) to avoid breaking compatibility with BTS compiled against earlier version of this header. Also make sure that the description strings - osmo_bts_features_descs in gsm_data.c are also updated accordingly! */ + osmo_bts_features_{descs,names} in bts_features.c are also updated accordingly! */ enum osmo_bts_features { BTS_FEAT_HSCSD, BTS_FEAT_GPRS,
View file
libosmocore_1.8.0.25.f4f5d.tar.xz/src/gsm/bts_features.c -> libosmocore_1.8.0.26.8200.tar.xz/src/gsm/bts_features.c
Changed
@@ -16,6 +16,7 @@ * GNU General Public License for more details. */ +#include <osmocom/core/utils.h> #include <osmocom/gsm/bts_features.h> const struct value_string osmo_bts_features_descs = { @@ -49,6 +50,9 @@ { 0, NULL } }; +/* Ensure that all BTS_FEAT_* entries are present in osmo_bts_features_descs */ +osmo_static_assert(ARRAY_SIZE(osmo_bts_features_descs) == _NUM_BTS_FEAT + 1, _bts_features_descs); + /*! return description string of a BTS feature (osmo_bts_features_descs). * To get the plain feature name, use osmo_bts_features_name() instead. */ const char *osmo_bts_feature_name(enum osmo_bts_features feature) @@ -86,3 +90,6 @@ { BTS_FEAT_VGCS, "VGCS" }, {} }; + +/* Ensure that all BTS_FEAT_* entries are present in osmo_bts_features_names */ +osmo_static_assert(ARRAY_SIZE(osmo_bts_features_names) == _NUM_BTS_FEAT + 1, _bts_features_names);
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.