Changes of Revision 399

libosmocore.spec Changed
x
 
1
@@ -14,13 +14,13 @@
2
 
3
 Name:           libosmocore
4
 Requires: osmocom-master
5
-Version: 1.11.0.1.6f11
6
+Version: 1.11.0.2.4150
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.11.0.1.6f11.tar.xz
13
+Source: libosmocore_1.11.0.2.4150.tar.xz
14
 Source1: rpmlintrc
15
 BuildRequires:  automake >= 1.6
16
 BuildRequires:  libtool >= 2
17
commit_4150c2e6b010aee1e087b206ed43a29d569ebd3d.txt Added
commit_6f11de68aef14c2e22bff106bc46a729f29dbb01.txt Deleted
libosmocore_1.11.0.1.6f11.dsc -> libosmocore_1.11.0.2.4150.dsc Changed
22
 
1
@@ -2,7 +2,7 @@
2
 Source: libosmocore
3
 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
4
 Architecture: any all
5
-Version: 1.11.0.1.6f11
6
+Version: 1.11.0.2.4150
7
 Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
 Homepage: https://projects.osmocom.org/projects/libosmocore
9
 Standards-Version: 3.9.8
10
@@ -35,8 +35,8 @@
11
  libosmovty-doc deb doc optional arch=all
12
  libosmovty13 deb libs optional arch=any
13
 Checksums-Sha1:
14
- 33f03200805f0699987dd61c9c8c38a80d247315 1125724 libosmocore_1.11.0.1.6f11.tar.xz
15
+ 1f857ff4c9947cb7aa8de98855a63fe7168b8ce1 1125916 libosmocore_1.11.0.2.4150.tar.xz
16
 Checksums-Sha256:
17
- 9f7aa0917b3afb5159596d47a361827efad83cff12dd9fa1212d84bc1197a37d 1125724 libosmocore_1.11.0.1.6f11.tar.xz
18
+ 87f0e97e07293eb349fbfd06fb7d3c593577a8c25519a41a8844f9603b906ae5 1125916 libosmocore_1.11.0.2.4150.tar.xz
19
 Files:
20
- a9fe13348e0c4417e129a74ab09d3563 1125724 libosmocore_1.11.0.1.6f11.tar.xz
21
+ 47f5fb8f4d180e001075bbbfea296774 1125916 libosmocore_1.11.0.2.4150.tar.xz
22
libosmocore_1.11.0.1.6f11.tar.xz/.tarball-version -> libosmocore_1.11.0.2.4150.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-1.11.0.1-6f11
3
+1.11.0.2-4150
4
libosmocore_1.11.0.1.6f11.tar.xz/debian/changelog -> libosmocore_1.11.0.2.4150.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-libosmocore (1.11.0.1.6f11) unstable; urgency=medium
3
+libosmocore (1.11.0.2.4150) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Fri, 14 Feb 2025 13:57:36 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Sat, 15 Feb 2025 19:47:44 +0000
9
 
10
 libosmocore (1.11.0) unstable; urgency=medium
11
 
12
libosmocore_1.11.0.1.6f11.tar.xz/tests/soft_uart/soft_uart_test.c -> libosmocore_1.11.0.2.4150.tar.xz/tests/soft_uart/soft_uart_test.c Changed
18
 
1
@@ -389,14 +389,14 @@
2
    g_tx_cb_cfg.data = (void *)"\x55";
3
    g_tx_cb_cfg.data_len = 1;
4
 
5
-   printf("======== pulling %lu bits (%u at a time)\n", sizeof(tx_buf), n);
6
+   printf("======== pulling %zu bits (%u at a time)\n", sizeof(tx_buf), n);
7
    for (unsigned int i = 0; i < sizeof(tx_buf); i += n) {
8
        rc = osmo_soft_uart_tx_ubits(suart, &tx_bufi, n);
9
        OSMO_ASSERT(rc == n);
10
    }
11
    printf("%s\n", osmo_ubit_dump(&tx_buf0, sizeof(tx_buf)));
12
 
13
-   printf("======== feeding %lu bits into the receiver\n", sizeof(tx_buf));
14
+   printf("======== feeding %zu bits into the receiver\n", sizeof(tx_buf));
15
    rc = osmo_soft_uart_rx_ubits(suart, &tx_buf0, sizeof(tx_buf));
16
    OSMO_ASSERT(rc == 0);
17
    osmo_soft_uart_flush_rx(suart);
18