Changes of Revision 199
libosmocore.spec
Changed
x
1
2
3
Name: libosmocore
4
Requires: osmocom-master
5
-Version: 1.8.0.215.209b
6
+Version: 1.8.0.216.39469
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.8.0.215.209b.tar.xz
13
+Source: libosmocore_1.8.0.216.39469.tar.xz
14
Source1: rpmlintrc
15
BuildRequires: automake >= 1.6
16
BuildRequires: libtool >= 2
17
commit_209bc3897434650d341e11cb76d5247cc4ce83f2.txt
Deleted
commit_39469b9fcb0551dc1cc2547bc2d5c54084ea2e9f.txt
Added
libosmocore_1.8.0.215.209b.dsc -> libosmocore_1.8.0.216.39469.dsc
Changed
22
1
2
Source: libosmocore
3
Binary: libosmocore, libosmocodec0, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore20, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm18, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty9, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg
4
Architecture: any all
5
-Version: 1.8.0.215.209b
6
+Version: 1.8.0.216.39469
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
- 8550c9e3e81ab873c3a3d0e6bafefa76425e854b 1063452 libosmocore_1.8.0.215.209b.tar.xz
15
+ 6ccc9e843610ba40a04c8da9739b32dd254dad2c 1063336 libosmocore_1.8.0.216.39469.tar.xz
16
Checksums-Sha256:
17
- 75f8dbe29aae72f946307abe0c4edc92725d2708589df7ecc31c28851b57cc52 1063452 libosmocore_1.8.0.215.209b.tar.xz
18
+ eac11666d80d6145757ccd7a790ab3daf4134dcf7469657dd253f81282f9f200 1063336 libosmocore_1.8.0.216.39469.tar.xz
19
Files:
20
- 252e7b7da8728106458358da21cf546d 1063452 libosmocore_1.8.0.215.209b.tar.xz
21
+ b7feb19fe47ededd4306b3d9e7f5a351 1063336 libosmocore_1.8.0.216.39469.tar.xz
22
libosmocore_1.8.0.215.209b.tar.xz/.tarball-version -> libosmocore_1.8.0.216.39469.tar.xz/.tarball-version
Changed
4
1
2
-1.8.0.215-209b
3
+1.8.0.216-39469
4
libosmocore_1.8.0.215.209b.tar.xz/debian/changelog -> libosmocore_1.8.0.216.39469.tar.xz/debian/changelog
Changed
12
1
2
-libosmocore (1.8.0.215.209b) unstable; urgency=medium
3
+libosmocore (1.8.0.216.39469) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Wed, 26 Jul 2023 12:55:41 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Fri, 28 Jul 2023 09:27:41 +0000
9
10
libosmocore (1.8.0) unstable; urgency=medium
11
12
libosmocore_1.8.0.215.209b.tar.xz/src/isdn/i460_mux.c -> libosmocore_1.8.0.216.39469.tar.xz/src/isdn/i460_mux.c
Changed
19
1
2
/* provide one byte of multiplexed I.460 bits */
3
static uint8_t mux_timeslot_provide_bits(struct osmo_i460_timeslot *ts)
4
{
5
- int i, count = 0;
6
uint8_t ret = 0xff; /* unused bits must be '1' as per I.460 */
7
8
- for (i = 0; i < ARRAY_SIZE(ts->schan); i++) {
9
+ for (int i = 0; i < ARRAY_SIZE(ts->schan); i++) {
10
struct osmo_i460_subchan *schan = &ts->schani;
11
uint8_t bits, mask;
12
13
if (schan->rate == OSMO_I460_RATE_NONE)
14
continue;
15
- count++;
16
bits = mux_subchan_provide_bits(schan, &mask);
17
ret &= ~mask;
18
ret |= bits;
19