From b413ca9076bcd729f795e9cc29e4de9f3c4c77ba1b536a36eaaf897fa5813db7 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 21 Dec 2021 08:39:40 +0000 Subject: [PATCH 1/2] Accepting request 941711 from home:dirkmueller:Factory - update to 1.26.2: * The GUdev optional build/runtime requirement is now fully dropped, it's no longer used. * Implemented new link management operations, exclusively for the cdc_mbim driver for now. These new operations allow creating or deleting VLAN network interfaces in order to run multiplexed data sessions over one single physical network interface. * Added support for the Microsoft-defined SAR service, including the following operations: ** MBIM_CID_MS_SAR_CONFIG ** MBIM_CID_MS_SAR_TRANSMISSION_STATUS * libmbim-glib: ** Logic updated to make sure full packets are written at once, instead of writing them in chunks. ** Updated the "LTE attach status" APIs in order to avoid creating unneeded struct types in the interface. The older methods have been deprecated and maintained in the library for compatibility purposes only. * Bugfixes OBS-URL: https://build.opensuse.org/request/show/941711 OBS-URL: https://build.opensuse.org/package/show/network/libmbim?expand=0&rev=60 --- libmbim-1.24.6.tar.xz | 3 --- libmbim-1.26.2.tar.xz | 3 +++ libmbim.changes | 23 +++++++++++++++++++++++ libmbim.spec | 3 +-- 4 files changed, 27 insertions(+), 5 deletions(-) delete mode 100644 libmbim-1.24.6.tar.xz create mode 100644 libmbim-1.26.2.tar.xz diff --git a/libmbim-1.24.6.tar.xz b/libmbim-1.24.6.tar.xz deleted file mode 100644 index c5697f2..0000000 --- a/libmbim-1.24.6.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:760465caaa1ccd699c14290e9791da456d5300dd11ebf4c1486151033e875dfd -size 511468 diff --git a/libmbim-1.26.2.tar.xz b/libmbim-1.26.2.tar.xz new file mode 100644 index 0000000..3ae1fa1 --- /dev/null +++ b/libmbim-1.26.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c77bf5b5eb8c92ba80e9b519923ad9b898362bc8e1928e2bc9a17eeba649af +size 561096 diff --git a/libmbim.changes b/libmbim.changes index 520a3b0..551d966 100644 --- a/libmbim.changes +++ b/libmbim.changes @@ -1,3 +1,26 @@ +------------------------------------------------------------------- +Mon Dec 20 22:07:09 UTC 2021 - Dirk Müller + +- update to 1.26.2: + * The GUdev optional build/runtime requirement is now fully dropped, it's no + longer used. + * Implemented new link management operations, exclusively for the cdc_mbim + driver for now. These new operations allow creating or deleting VLAN network + interfaces in order to run multiplexed data sessions over one single physical + network interface. + * Added support for the Microsoft-defined SAR service, including the following + operations: + ** MBIM_CID_MS_SAR_CONFIG + ** MBIM_CID_MS_SAR_TRANSMISSION_STATUS + * libmbim-glib: + ** Logic updated to make sure full packets are written at once, instead of + writing them in chunks. + ** Updated the "LTE attach status" APIs in order to avoid creating unneeded + struct types in the interface. The older methods have been deprecated and + maintained in the library for compatibility purposes only. + * Bugfixes + + ------------------------------------------------------------------- Fri Jan 22 18:02:46 UTC 2021 - Martin Hauke diff --git a/libmbim.spec b/libmbim.spec index 1b677be..7b612b0 100644 --- a/libmbim.spec +++ b/libmbim.spec @@ -18,7 +18,7 @@ Name: libmbim -Version: 1.24.6 +Version: 1.26.2 Release: 0 Summary: Mobile Broadband Interface Model (MBIM) protocol License: GPL-2.0-or-later AND LGPL-2.0-or-later @@ -33,7 +33,6 @@ BuildRequires: pkgconfig(gio-unix-2.0) BuildRequires: pkgconfig(glib-2.0) >= 2.48 BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gobject-introspection-1.0) -BuildRequires: pkgconfig(gudev-1.0) >= 147 %description libmbim is a glib-based library for talking to WWAN modems and devices From 8e91d995f44f43cd15ed82a655650bbbe30ec275efdb0d9d7e23ea07bd9d1d76 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 21 Dec 2021 08:41:41 +0000 Subject: [PATCH 2/2] tweak changelog OBS-URL: https://build.opensuse.org/package/show/network/libmbim?expand=0&rev=61 --- libmbim.changes | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/libmbim.changes b/libmbim.changes index 551d966..a246c93 100644 --- a/libmbim.changes +++ b/libmbim.changes @@ -1,25 +1,26 @@ ------------------------------------------------------------------- Mon Dec 20 22:07:09 UTC 2021 - Dirk Müller -- update to 1.26.2: - * The GUdev optional build/runtime requirement is now fully dropped, it's no - longer used. - * Implemented new link management operations, exclusively for the cdc_mbim - driver for now. These new operations allow creating or deleting VLAN network - interfaces in order to run multiplexed data sessions over one single physical - network interface. - * Added support for the Microsoft-defined SAR service, including the following - operations: - ** MBIM_CID_MS_SAR_CONFIG - ** MBIM_CID_MS_SAR_TRANSMISSION_STATUS - * libmbim-glib: - ** Logic updated to make sure full packets are written at once, instead of - writing them in chunks. - ** Updated the "LTE attach status" APIs in order to avoid creating unneeded - struct types in the interface. The older methods have been deprecated and - maintained in the library for compatibility purposes only. - * Bugfixes - +- Update to version 1.26.2: + + The GUdev optional build/runtime requirement is now fully + dropped, it's no longer used. + + Implemented new link management operations, exclusively for the + cdc_mbim driver for now. These new operations allow creating or + deleting VLAN network interfaces in order to run multiplexed + data sessions over one single physical network interface. + + Added support for the Microsoft-defined SAR service, including + the following operations: + - MBIM_CID_MS_SAR_CONFIG + - MBIM_CID_MS_SAR_TRANSMISSION_STATUS + + libmbim-glib: + - Logic updated to make sure full packets are written at once, + instead of writing them in chunks. + - Updated the "LTE attach status" APIs in order to avoid + creating unneeded struct types in the interface. The older + methods have been deprecated and maintained in the library + for compatibility purposes only. + + Bugfixes. +- Drop pkgconfig(gudev-1.0) BuildRequires: no longer used. ------------------------------------------------------------------- Fri Jan 22 18:02:46 UTC 2021 - Martin Hauke