555b67004c
- Update to version 1.10.0: + API break: Flag values in 'MbimRegistrationFlag' were updated to match the ones in the MBIM documentation. + Implemented a new 'mbim-proxy', which allows sharing a single MBIM control port among different processes. The usage of the proxy is optional, and can be requested by specifying the MBIM_DEVICE_OPEN_FLAGS_PROXY flag in the new mbim_device_open_full() method. The 'mbimcli' command line tool was also extended with a new '--device-open-proxy,-p' option, to allow requesting the use of the proxy process. + New 'removed' signal added to the MbimDevice, to notify when the underlying connection to the device is lost (e.g. lost connection to the mbim-proxy, or lost access to the MBIM control port). + Added support for registering and using custom services. + Added additional GMM cause codes to MbimNwError. + Transactions are now matched not only by ID but also by type. + Several other minor improvements and fixes. - Changes from version 1.8.0: + Added support for additional MBIM messages: - MBIM_CID_MS_FIRMWARE_ID_GET - MBIM_CID_MS_HOST_SHUTDOWN_NOTIFY + Updated mbimcli with new commands: - --set-radio-state - --ms-query-firmware-id - --ms-notify-host-shutdown - --dss-connect - --dss-disconnect + Several enums and functions were renamed, and marked as deprecated. A small layer is given to provide backwards OBS-URL: https://build.opensuse.org/request/show/261389 OBS-URL: https://build.opensuse.org/package/show/network/libmbim?expand=0&rev=7
94 lines
2.9 KiB
RPMSpec
94 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package libmbim
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2013 Dominique Leuenberger, Amsterdam, The Netherlands
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: libmbim
|
|
Version: 1.10.0
|
|
Release: 0
|
|
Summary: Mobile Interface Broadband Model (MBIM) protocol
|
|
License: GPL-2.0+ and LGPL-2.0+
|
|
Group: Productivity/Networking/System
|
|
Url: http://www.freedesktop.org/wiki/Software/libmbim/
|
|
Source: http://www.freedesktop.org/software/libmbim/libmbim-%{version}.tar.xz
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.32
|
|
BuildRequires: pkgconfig(gobject-2.0)
|
|
BuildRequires: pkgconfig(gudev-1.0) >= 147
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Interface Broadband Model (MBIM) protocol.
|
|
|
|
%package -n libmbim-glib4
|
|
Summary: Mobile Interface Broadband Model (MBIM) protocol
|
|
License: LGPL-2.1+
|
|
Group: System/Libraries
|
|
|
|
%description -n libmbim-glib4
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Interface Broadband Model (MBIM) protocol.
|
|
|
|
%package devel
|
|
Summary: Mobile Interface Broadband Model (MBIM) protocol - Development files
|
|
License: LGPL-2.1+
|
|
Group: Development/Languages/C and C++
|
|
Requires: libmbim-glib4 = %{version}
|
|
|
|
%description devel
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Interface Broadband Model (MBIM) protocol.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure \
|
|
--disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot}%{_libdir} -type f -name '*.la' -delete -print
|
|
|
|
%post -n libmbim-glib4 -p /sbin/ldconfig
|
|
|
|
%postun -n libmbim-glib4 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README COPYING
|
|
%{_bindir}/mbim-network
|
|
%{_bindir}/mbimcli
|
|
%{_libexecdir}/mbim-proxy
|
|
%{_mandir}/man1/mbim-network.1%{?ext_man}
|
|
%{_mandir}/man1/mbimcli.1%{?ext_man}
|
|
|
|
%files -n libmbim-glib4
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libmbim-glib.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%doc %{_datadir}/gtk-doc/html/libmbim-glib/
|
|
%{_includedir}/libmbim-glib/
|
|
%{_libdir}/libmbim-glib.so
|
|
%{_libdir}/pkgconfig/mbim-glib.pc
|
|
|
|
%changelog
|