Changes of Revision 247

libosmocore.spec Changed
x
 
1
@@ -14,13 +14,13 @@
2
 
3
 Name:           libosmocore
4
 Requires: osmocom-master
5
-Version: 1.9.0.20.4ca0f
6
+Version: 1.9.0.21.11a41
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.9.0.20.4ca0f.tar.xz
13
+Source: libosmocore_1.9.0.21.11a41.tar.xz
14
 Source1: rpmlintrc
15
 BuildRequires:  automake >= 1.6
16
 BuildRequires:  libtool >= 2
17
commit_11a416827dd9f2da6b7c1db0e1e83adb1e6e5cc8.txt Added
commit_4ca0f62cc4d556a01089726919e9314791a11bfd.txt Deleted
libosmocore_1.9.0.20.4ca0f.dsc -> libosmocore_1.9.0.21.11a41.dsc Changed
22
 
1
@@ -2,7 +2,7 @@
2
 Source: libosmocore
3
 Binary: libosmocore, libosmocodec4, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore21, 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.9.0.20.4ca0f
6
+Version: 1.9.0.21.11a41
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
- 6c3af82a6db2d27a1442add26dcb29fd6aac06e4 1073600 libosmocore_1.9.0.20.4ca0f.tar.xz
15
+ 0c302781d444f02ef36a00ebb24b50cae6c9a3f2 1073916 libosmocore_1.9.0.21.11a41.tar.xz
16
 Checksums-Sha256:
17
- 7149c8c4603f599a0adaae01df30d7fb22270e16449e1b0b9c4641201fab3580 1073600 libosmocore_1.9.0.20.4ca0f.tar.xz
18
+ 0600a0c9ac4cef225c56cd338a6633c67e5ea67835757ec13cb4e8873c8982cc 1073916 libosmocore_1.9.0.21.11a41.tar.xz
19
 Files:
20
- c0572235fb93303dbd667ac5af959421 1073600 libosmocore_1.9.0.20.4ca0f.tar.xz
21
+ 53bd4f8e4cbd61a540132e8c16d85186 1073916 libosmocore_1.9.0.21.11a41.tar.xz
22
libosmocore_1.9.0.20.4ca0f.tar.xz/.tarball-version -> libosmocore_1.9.0.21.11a41.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-1.9.0.20-4ca0f
3
+1.9.0.21-11a41
4
libosmocore_1.9.0.20.4ca0f.tar.xz/debian/changelog -> libosmocore_1.9.0.21.11a41.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-libosmocore (1.9.0.20.4ca0f) unstable; urgency=medium
3
+libosmocore (1.9.0.21.11a41) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Fri, 27 Oct 2023 07:02:22 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Tue, 07 Nov 2023 16:55:09 +0000
9
 
10
 libosmocore (1.9.0) unstable; urgency=medium
11
 
12
libosmocore_1.9.0.20.4ca0f.tar.xz/src/core/logging.c -> libosmocore_1.9.0.21.11a41.tar.xz/src/core/logging.c Changed
18
 
1
@@ -616,7 +616,15 @@
2
    }
3
 
4
    if (target->use_color && c_subsys) {
5
-       ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
6
+       /* Ensure the last color escape is sent before the newline
7
+       * (to not clobber journald, which works on single-lines only) */
8
+       if (offset > 0 && bufoffset - 1 == '\n') {
9
+           offset--; rem++;
10
+           ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END "\n");
11
+       } else {
12
+           ret = snprintf(buf + offset, rem, OSMO_LOGCOLOR_END);
13
+       }
14
+
15
        if (ret < 0)
16
            goto err;
17
        OSMO_SNPRINTF_RET(ret, rem, offset, len);
18
libosmocore_1.9.0.20.4ca0f.tar.xz/tests/loggingrb/logging_test.err -> libosmocore_1.9.0.21.11a41.tar.xz/tests/loggingrb/logging_test.err Changed
8
 
1
@@ -1,3 +1,2 @@
2
-&#x1b;1;31mYou should see this
3
-&#x1b;0;m&#x1b;1;32mYou should see this
4
-&#x1b;0;m
5
\ No newline at end of file
6
+&#x1b;1;31mYou should see this&#x1b;0;m
7
+&#x1b;1;32mYou should see this&#x1b;0;m
8