Projects
osmocom:latest
libosmocore
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 14
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-latest -Version: 1.11.1 +Version: 1.11.2 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.1.tar.xz +Source: libosmocore_1.11.2.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
libosmocore_1.11.1.dsc -> libosmocore_1.11.2.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.1 +Version: 1.11.2 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: - a128194c573a747aec159d651a6caf37d74bef17 1125744 libosmocore_1.11.1.tar.xz + bd05122130528a18a65592fdcd295d3d55f54b92 1126108 libosmocore_1.11.2.tar.xz Checksums-Sha256: - 13b34fb3e916f40c72d691c6572973e568e2126cba35359a32434953c8df7012 1125744 libosmocore_1.11.1.tar.xz + 3d72d7d34704b3900d2cef5d6bcd8af2bb1311e46000b5b4e6030cafa57be751 1126108 libosmocore_1.11.2.tar.xz Files: - 5806f9abe8673961a5ceed263ba04247 1125744 libosmocore_1.11.1.tar.xz + 2b0147a9c8c0f1ee07d8943e92442a63 1126108 libosmocore_1.11.2.tar.xz
View file
libosmocore_1.11.1.tar.xz/.tarball-version -> libosmocore_1.11.2.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.11.1 +1.11.2
View file
libosmocore_1.11.1.tar.xz/Makefile.am -> libosmocore_1.11.2.tar.xz/Makefile.am
Changed
@@ -115,6 +115,7 @@ $(top_srcdir)/src/vty/*.c rm -rf $(top_builddir)/doc/vty/html $(top_builddir)/doc/vty/latex rm -rf $(top_builddir)/doc/libosmovty.map + mkdir -p $(top_builddir)/doc/vty -$(DOXYGEN) $(top_builddir)/Doxyfile.vty touch "$@"
View file
libosmocore_1.11.1.tar.xz/debian/changelog -> libosmocore_1.11.2.tar.xz/debian/changelog
Changed
@@ -1,3 +1,14 @@ +libosmocore (1.11.2) unstable; urgency=medium + + Oliver Smith + * Makefile: fix doc/vty race condition + * tests: fix for debian 13 armv7l + + Andreas Eversberg + * VTY: Initialize fields of struct cmd_element in order of declaration + + -- Oliver Smith <osmith@sysmocom.de> Tue, 26 Aug 2025 15:31:46 +0200 + libosmocore (1.11.1) unstable; urgency=medium Pau Espin Pedrol
View file
libosmocore_1.11.1.tar.xz/include/osmocom/vty/command.h -> libosmocore_1.11.2.tar.xz/include/osmocom/vty/command.h
Changed
@@ -218,8 +218,8 @@ .string = cmdstr, \ .func = funcname, \ .doc = helpstr, \ - .attr = attrs, \ .daemon = dnum, \ + .attr = attrs, \ }; /* global (non static) cmd_element */ @@ -229,8 +229,8 @@ .string = cmdstr, \ .func = funcname, \ .doc = helpstr, \ - .attr = attrs, \ .daemon = dnum, \ + .attr = attrs, \ }; #define DEFUN_CMD_ELEMENT_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, attrs, usrattrs) \
View file
libosmocore_1.11.1.tar.xz/tests/iuup/iuup_test.c -> libosmocore_1.11.2.tar.xz/tests/iuup/iuup_test.c
Changed
@@ -163,8 +163,8 @@ { osmo_gettimeofday_override_time.tv_sec = sec + usec / (1000*1000); osmo_gettimeofday_override_time.tv_usec = usec % (1000*1000); - printf("sys={%lu.%06lu}, %s\n", osmo_gettimeofday_override_time.tv_sec, - osmo_gettimeofday_override_time.tv_usec, __func__); + printf("sys={%lu.%06lu}, %s\n", (unsigned int long) osmo_gettimeofday_override_time.tv_sec, + (unsigned int long) osmo_gettimeofday_override_time.tv_usec, __func__); } void test_crc(void)
View file
libosmocore_1.11.1.tar.xz/tests/tdef/tdef_test.c -> libosmocore_1.11.2.tar.xz/tests/tdef/tdef_test.c
Changed
@@ -335,7 +335,8 @@ } osmo_timer_remaining(&fi->timer, &osmo_gettimeofday_override_time, &remaining); - printf(", %lu.%06lu s remaining\n", remaining.tv_sec, remaining.tv_usec); + printf(", %lu.%06lu s remaining\n", (unsigned int long) remaining.tv_sec, + (unsigned int long) remaining.tv_usec); }
View file
libosmocore_1.11.1.tar.xz/tests/time_cc/time_cc_test.c -> libosmocore_1.11.2.tar.xz/tests/time_cc/time_cc_test.c
Changed
@@ -165,7 +165,7 @@ osmo_clock_override_add(CLOCK_MONOTONIC, ms / 1000, (uint64_t)(ms % 1000) * 1000000); \ osmo_gettimeofday_override_add(ms / 1000, (uint64_t)(ms % 1000) * 1000); \ printf("%d ADD_MILLISECS(" #ms ") --> %ld.%03ld", my_obj.flag_cc_round.flag_state, \ - now->tv_sec, now->tv_nsec/1000000); \ + (unsigned int long) now->tv_sec, now->tv_nsec/1000000); \ printf("\n"); \ } while (0)
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
.