Changes of Revision 11
libosmocore.spec
Changed
x
1
2
3
Name: libosmocore
4
Requires: osmocom-master
5
-Version: 1.7.0.54.d98a
6
+Version: 1.7.0.55.6135
7
Release: 0
8
Summary: The Open Source Mobile Communications Core Library
9
License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later
10
Group: Productivity/Telephony/Utilities
11
Url: https://osmocom.org/projects/libosmocore/wiki/Libosmocore
12
-Source: libosmocore_1.7.0.54.d98a.tar.xz
13
+Source: libosmocore_1.7.0.55.6135.tar.xz
14
Source1: rpmlintrc
15
BuildRequires: automake >= 1.6
16
BuildRequires: libtool >= 2
17
commit_61359a2cdde52181808ec6d64455233a979bfd22.txt
Added
commit_d98a867743855d84c6bcf2ebcf26af211fc0317b.txt
Deleted
libosmocore_1.7.0.54.d98a.dsc -> libosmocore_1.7.0.55.6135.dsc
Changed
22
1
2
Source: libosmocore
3
Binary: libosmocore, libosmocodec0, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore19, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm18, libosmogsm-doc, libosmovty9, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmousb0, libosmocore-dev, libosmocore-utils, libosmocore-dbg
4
Architecture: any all
5
-Version: 1.7.0.54.d98a
6
+Version: 1.7.0.55.6135
7
Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
Homepage: https://projects.osmocom.org/projects/libosmocore
9
Standards-Version: 3.9.8
10
11
libosmovty-doc deb doc optional arch=all
12
libosmovty9 deb libs optional arch=any
13
Checksums-Sha1:
14
- dbff1fd545bea0d9bf3c04c35af17b9721be70aa 1001744 libosmocore_1.7.0.54.d98a.tar.xz
15
+ 258df5a2903ccb50274f3823b9898d79d28ba308 1002724 libosmocore_1.7.0.55.6135.tar.xz
16
Checksums-Sha256:
17
- 597630c7ac8a5b21b580db94109ed7815e3ebef8676ade3f5f2c75d3d5f6e3f5 1001744 libosmocore_1.7.0.54.d98a.tar.xz
18
+ 25891fb914d05516094fffe6172556b69a47d5c362b3425d7cfa14398346fe3a 1002724 libosmocore_1.7.0.55.6135.tar.xz
19
Files:
20
- 0542a8eb096101441faeeabadedd4426 1001744 libosmocore_1.7.0.54.d98a.tar.xz
21
+ 88a3b1bc5ae67b8038eedfc304e33c3c 1002724 libosmocore_1.7.0.55.6135.tar.xz
22
libosmocore_1.7.0.54.d98a.tar.xz/.tarball-version -> libosmocore_1.7.0.55.6135.tar.xz/.tarball-version
Changed
4
1
2
-1.7.0.54-d98a
3
+1.7.0.55-6135
4
libosmocore_1.7.0.54.d98a.tar.xz/debian/changelog -> libosmocore_1.7.0.55.6135.tar.xz/debian/changelog
Changed
12
1
2
-libosmocore (1.7.0.54.d98a) unstable; urgency=medium
3
+libosmocore (1.7.0.55.6135) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Mon, 17 Oct 2022 12:11:31 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Mon, 17 Oct 2022 16:06:15 +0000
9
10
libosmocore (1.7.0) unstable; urgency=medium
11
12
libosmocore_1.7.0.54.d98a.tar.xz/tests/msgb/msgb_test.c -> libosmocore_1.7.0.55.6135.tar.xz/tests/msgb/msgb_test.c
Changed
31
1
2
OSMO_ASSERT(msgb_l1len(msg) == msgb_l1len(msg2));
3
OSMO_ASSERT(msgb_l2len(msg) == msgb_l2len(msg2));
4
OSMO_ASSERT(msgb_l3len(msg) == msgb_l3len(msg2));
5
- OSMO_ASSERT(msg->tail - msg->l4h == msg2->tail - msg2->l4h);
6
+ OSMO_ASSERT(msgb_l4len(msg) == msgb_l4len(msg2));
7
8
- for (i = 0; i < msgb_length(msg2); i++)
9
- OSMO_ASSERT(msg2->datai == (uint8_t)i);
10
+ if (!msgb_eq_data_print(msg2, msg->data, msgb_length(msg)))
11
+ printf("copy test failed!\n");
12
+
13
+ if (!msgb_eq_l1_data_print(msg2, msgb_l1(msg), msgb_l1len(msg)))
14
+ printf("copy test failed at L1!\n");
15
+ if (!msgb_eq_l2_data_print(msg2, msgb_l2(msg), msgb_l2len(msg)))
16
+ printf("copy test failed at L2!\n");
17
+ if (!msgb_eq_l3_data_print(msg2, msgb_l3(msg), msgb_l3len(msg)))
18
+ printf("copy test failed at L3!\n");
19
+ if (!msgb_eq_l4_data_print(msg2, msgb_l4(msg), msgb_l4len(msg)))
20
+ printf("copy test failed at L4!\n");
21
22
printf("Src: %s\n", msgb_hexdump(msg));
23
- printf("Dst: %s\n", msgb_hexdump(msg));
24
+ printf("Dst: %s\n", msgb_hexdump(msg2));
25
+
26
+ OSMO_ASSERT(msgb_test_invariant(msg));
27
+ OSMO_ASSERT(msgb_test_invariant(msg2));
28
29
msgb_free(msg);
30
msgb_free(msg2);
31