Projects
osmocom:master
libosmocore
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 417
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-master -Version: 1.11.0.29.c585 +Version: 1.11.0.30.c17053 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.11.0.29.c585.tar.xz +Source: libosmocore_1.11.0.30.c17053.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
commit_c17053a56275b2c38fa63c9038edddabbe0f296b.txt
Added
View file
commit_c585ad3f2c77f232c927359b7e3a731de175b0c0.txt
Deleted
View file
libosmocore_1.11.0.29.c585.dsc -> libosmocore_1.11.0.30.c17053.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmocore Binary: libosmocore, libosmocodec4, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore22, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm20, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty13, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg Architecture: any all -Version: 1.11.0.29.c585 +Version: 1.11.0.30.c17053 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmocore Standards-Version: 3.9.8 @@ -35,8 +35,8 @@ libosmovty-doc deb doc optional arch=all libosmovty13 deb libs optional arch=any Checksums-Sha1: - 520dbd6274ded1ee2705f2e6dd1e3d98784289bd 1128520 libosmocore_1.11.0.29.c585.tar.xz + 70a423a098cb8fdaf70bb04e1a69271dddd6ca20 1129288 libosmocore_1.11.0.30.c17053.tar.xz Checksums-Sha256: - 4cc52117c3b488cdaaf6f328be4aebdbba30c231c1d37eb641c9c9fd1c8cb8e5 1128520 libosmocore_1.11.0.29.c585.tar.xz + a56325ffb8c8554f19983a8430c33ab932146287022e0f95f705e19a7ef8a6a2 1129288 libosmocore_1.11.0.30.c17053.tar.xz Files: - 35112b4bfc487b1e59af38b128a64e3c 1128520 libosmocore_1.11.0.29.c585.tar.xz + 14d2b9fb6aa0bda24992bd1990e4c1d9 1129288 libosmocore_1.11.0.30.c17053.tar.xz
View file
libosmocore_1.11.0.29.c585.tar.xz/.tarball-version -> libosmocore_1.11.0.30.c17053.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.11.0.29-c585 +1.11.0.30-c17053
View file
libosmocore_1.11.0.29.c585.tar.xz/debian/changelog -> libosmocore_1.11.0.30.c17053.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmocore (1.11.0.29.c585) unstable; urgency=medium +libosmocore (1.11.0.30.c17053) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Mon, 02 Jun 2025 10:32:26 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Mon, 16 Jun 2025 14:26:08 +0000 libosmocore (1.11.0) unstable; urgency=medium
View file
libosmocore_1.11.0.29.c585.tar.xz/include/osmocom/core/Makefile.am -> libosmocore_1.11.0.30.c17053.tar.xz/include/osmocom/core/Makefile.am
Changed
@@ -59,6 +59,7 @@ timer_compat.h \ tun.h \ utils.h \ + version.h \ write_queue.h \ sockaddr_str.h \ soft_uart.h \ @@ -101,4 +102,13 @@ $(AM_V_GEN)$(MKDIR_P) $(dir $@) $(AM_V_GEN)sed -e's/XX/$(HAVE_SYS_SOCKET_H)/g' $< > $@ -EXTRA_DIST = socket_compat.h.tpl +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + +EXTRA_DIST = socket_compat.h.tpl version.h.tpl
View file
libosmocore_1.11.0.30.c17053.tar.xz/include/osmocom/core/version.h.tpl
Added
@@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMOCORE_VERSION {{VERSION}} +#define LIBOSMOCORE_VERSION_STR "{{VERSION}}" + +#define LIBOSMOCORE_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMOCORE_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMOCORE_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMOCORE_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMOCORE_VERSION_MAJOR > (major) || \ + (LIBOSMOCORE_VERSION_MAJOR == (major) && \ + LIBOSMOCORE_VERSION_MINOR > (minor)) || \ + (LIBOSMOCORE_VERSION_MAJOR == (major) && \ + LIBOSMOCORE_VERSION_MINOR == (minor) && \ + LIBOSMOCORE_VERSION_PATCH >= (patch)))
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
.