Blame SPECS/ModemManager.spec

d064b8
%global snapshot .git20130913
d064b8
%global glib2_version 2.32
d064b8
%global systemd_dir %{_prefix}/lib/systemd/system
d064b8
f8eb03
%global _hardened_build 1
d064b8
d064b8
Summary: Mobile broadband modem management service
d064b8
Name: ModemManager
d064b8
Version: 1.1.0
334fdc
Release: 8%{snapshot}%{?dist}
d064b8
#
d064b8
# Source from git://anongit.freedesktop.org/ModemManager/ModemManager
d064b8
# tarball built with:
d064b8
#    ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var
d064b8
#    make distcheck
d064b8
#
d064b8
Source: %{name}-%{version}%{snapshot}.tar.xz
d064b8
License: GPLv2+
d064b8
Group: System Environment/Base
d064b8
d064b8
URL: http://www.gnome.org/projects/NetworkManager/
d064b8
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
d064b8
Requires: glib2 >= %{glib2_version}
d064b8
Requires: %{name}-glib%{?_isa} = %{version}-%{release}
d064b8
BuildRequires: glib2-devel >= %{glib2_version}
d064b8
BuildRequires: libgudev1-devel >= 143
d064b8
BuildRequires: automake autoconf intltool libtool
d064b8
BuildRequires: intltool
d064b8
BuildRequires: libxslt gtk-doc
d064b8
BuildRequires: libqmi-devel >= 1.6
d064b8
BuildRequires: libmbim-devel >= 1.5
d064b8
BuildRequires: gobject-introspection-devel >= 0.10.3
d064b8
BuildRequires: vala-tools vala-devel
d064b8
d064b8
Patch0: buildsys-hates-openpty.patch
334fdc
Patch1: rh1200958-fix-MODEM_STATE_IS_INTERMEDIATE-macro.patch
334fdc
Patch2: rh1251954-ignore-unconnected-rfcomm.patch
d064b8
d064b8
%description
d064b8
The ModemManager service manages WWAN modems and provides a consistent API for
d064b8
interacting with these devices to client applications.
d064b8
d064b8
%package devel
d064b8
Summary: Libraries and headers for adding ModemManager support to applications
d064b8
Group: Development/Libraries
d064b8
Requires: %{name}%{?_isa} = %{version}-%{release}
d064b8
Requires: pkgconfig
d064b8
d064b8
%description devel
d064b8
This package contains various headers for accessing some ModemManager functionality
d064b8
from applications.
d064b8
d064b8
%package glib
d064b8
Summary: Libraries for adding ModemManager support to applications that use glib.
d064b8
Group: Development/Libraries
d064b8
Requires: glib2 >= %{glib2_version}
d064b8
d064b8
%description glib
d064b8
This package contains the libraries that make it easier to use some ModemManager
d064b8
functionality from applications that use glib.
d064b8
d064b8
%package glib-devel
d064b8
Summary: Libraries and headers for adding ModemManager support to applications that use glib.
d064b8
Group: Development/Libraries
d064b8
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
d064b8
Requires: %{name}-glib%{?_isa} = %{version}-%{release}
d064b8
Requires: glib2-devel >= %{glib2_version}
d064b8
Requires: pkgconfig
d064b8
d064b8
%description glib-devel
d064b8
This package contains various headers for accessing some ModemManager functionality
d064b8
from glib applications.
d064b8
d064b8
%package vala
d064b8
Summary: Vala bindings for ModemManager
d064b8
Group: Development/Libraries
d064b8
Requires: vala
d064b8
Requires: %{name}-glib%{?_isa} = %{version}-%{release}
d064b8
d064b8
%description vala
d064b8
Vala bindings for ModemManager
d064b8
d064b8
%prep
d064b8
%setup -q
d064b8
%patch0 -p1 -b .pty
334fdc
%patch1 -p1 -b .rh1200958-fix-MODEM_STATE_IS_INTERMEDIATE-macro
334fdc
%patch2 -p1 -b .rh1251954-ignore-unconnected-rfcomm
d064b8
d064b8
%build
d064b8
d064b8
autoreconf -i --force
d064b8
intltoolize --force
d064b8
%configure \
d064b8
	--enable-more-warnings=error \
d064b8
	--with-udev-base-dir=%{_prefix}/lib/udev \
d064b8
	--enable-gtk-doc=yes \
d064b8
	--with-qmi=yes \
d064b8
	--with-mbim=yes \
d064b8
	--disable-static \
d064b8
	--with-polkit=no \
d064b8
	--with-dist-version=%{version}-%{release}
d064b8
d064b8
make %{?_smp_mflags}
d064b8
d064b8
%check
d064b8
make check
d064b8
d064b8
%install
d064b8
make install DESTDIR=$RPM_BUILD_ROOT
d064b8
d064b8
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
d064b8
rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/*.la
d064b8
d064b8
%post
d064b8
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
d064b8
%systemd_post ModemManager.service
d064b8
d064b8
%preun
d064b8
%systemd_preun ModemManager.service
d064b8
d064b8
%postun
d064b8
/sbin/ldconfig
d064b8
if [ $1 -eq 0 ] ; then
d064b8
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
d064b8
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
d064b8
fi
d064b8
%systemd_postun
d064b8
d064b8
%posttrans
d064b8
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
d064b8
d064b8
%post	glib -p /sbin/ldconfig
d064b8
%postun	glib -p /sbin/ldconfig
d064b8
d064b8
%files
d064b8
%doc COPYING README
d064b8
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.ModemManager1.conf
d064b8
%{_datadir}/dbus-1/system-services/org.freedesktop.ModemManager1.service
d064b8
%attr(0755,root,root) %{_sbindir}/ModemManager
d064b8
%attr(0755,root,root) %{_bindir}/mmcli
d064b8
%dir %{_libdir}/%{name}
d064b8
%attr(0755,root,root) %{_libdir}/%{name}/*.so*
d064b8
%{_udevrulesdir}/*
d064b8
%{_datadir}/dbus-1/interfaces/*.xml
d064b8
%{systemd_dir}/ModemManager.service
d064b8
%{_datadir}/icons/hicolor/22x22/apps/*.png
d064b8
%{_mandir}/man8/*
d064b8
d064b8
%files devel
d064b8
%{_includedir}/ModemManager/*.h
d064b8
%dir %{_datadir}/gtk-doc/html/%{name}
d064b8
%{_datadir}/gtk-doc/html/%{name}/*
d064b8
%{_libdir}/pkgconfig/%{name}.pc
d064b8
d064b8
%files glib
d064b8
%{_libdir}/libmm-glib.so.*
d064b8
%{_libdir}/girepository-1.0/*.typelib
d064b8
d064b8
%files glib-devel
d064b8
%{_libdir}/libmm-glib.so
d064b8
%dir %{_includedir}/libmm-glib
d064b8
%{_includedir}/libmm-glib/*.h
d064b8
%{_libdir}/pkgconfig/mm-glib.pc
d064b8
%dir %{_datadir}/gtk-doc/html/libmm-glib
d064b8
%{_datadir}/gtk-doc/html/libmm-glib/*
d064b8
%{_datadir}/gir-1.0/*.gir
d064b8
d064b8
%files vala
d064b8
%{_datadir}/vala/vapi/libmm-glib.*
d064b8
d064b8
%changelog
334fdc
* Thu Aug 13 2015 Lubomir Rintel <lrintel@redhat.com> - 1.1.0-8.git20130913
334fdc
- rfcomm: don't open the ttys until NetworkManager connects them (rh #1251954)
334fdc
334fdc
* Thu Jul  9 2015 Jiří Klimeš <jklimes@redhat.com> - 1.1.0-7.git20130913
334fdc
- iface-modem: fix MODEM_STATE_IS_INTERMEDIATE macro (rh #1200958)
334fdc
f8eb03
* Wed Mar 12 2014 Dan Williams <dcbw@redhat.com> - 1.1.0-6.git20130913
f8eb03
- Fix hardened build (rh #1065046)
f8eb03
f8eb03
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.1.0-5.git20130913
f8eb03
- Mass rebuild 2014-01-24
f8eb03
f8eb03
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.1.0-4.git20130913
f8eb03
- Mass rebuild 2013-12-27
f8eb03
d064b8
* Fri Oct 11 2013 Dan Williams <dcbw@redhat.com> - 1.1.0-3.git20130913
d064b8
- Main RPM requires ModemManager-glib
d064b8
- Vala RPM does not require main ModemManager RPM
d064b8
d064b8
* Fri Sep 13 2013 Dan Williams <dcbw@redhat.com> - 1.1.0-2.git20130913
d064b8
- Build with MBIM support
d064b8
- Enable Vala bindings
d064b8
d064b8
* Fri Sep  6 2013 Dan Williams <dcbw@redhat.com> - 1.1.0-1.git20130906
d064b8
- Update to latest git snapshot
d064b8
d064b8
* Mon Aug 26 2013 Dan Williams <dcbw@redhat.com> - 1.0.1-2.git20130723
d064b8
- Fix udev rules file paths
d064b8
- Remove 'dia' from BuildRequires
d064b8
d064b8
* Tue Jul 23 2013 Dan Williams <dcbw@redhat.com> - 1.0.1-1.git20130723
d064b8
- Update to 1.0.1 release
d064b8
- Enable QMI support
d064b8
d064b8
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 0.7.991-2.git20130710
d064b8
- Handle PNP connected devices
d064b8
- Fall back to AT for messaging if QMI modem doesn't support the WMS service
d064b8
- Fix IPv6 bearer creation for HSO devices
d064b8
- Fix detection of supported modes on Icera-based modems
d064b8
- Fix handling of some Icera-based modems with limited capability ports
d064b8
- Add support for Olivetti Olicard 200
d064b8
d064b8
* Fri Jun  7 2013 Dan Williams <dcbw@redhat.com> - 0.7.991-1.git20130607
d064b8
- Update to 0.7.991 snapshot
d064b8
- Fix SMS validity parsing
d064b8
- Allow registration changes to 'searching' without disconnecting
d064b8
- Fix reading SMS messages from some QMI-based devices
d064b8
- Increase connection timeout for Novatel E362
d064b8
- Fix PIN retries checking when unlocking Ericsson devices
d064b8
- Better handling of supported and preferred modes (eg 2G, 3G, 4G preference)
d064b8
d064b8
* Wed May 22 2013 Kalev Lember <kalevlember@gmail.com> - 0.7.990-3.git20130515
d064b8
- Install the libmm-glib.so symlink in -glib-devel
d064b8
- Include the /usr/share/libmm-glib directory in -glib-devel
d064b8
- Make sure -glib-devel subpackage depends on the base -glib package
d064b8
d064b8
* Thu May 16 2013 Bruno Wolff III <bruno@wolff.to> - 0.7.990-2.git20130515
d064b8
- Removed epoch macro references
d064b8
d064b8
* Wed May 15 2013 Dan Williams <dcbw@redhat.com> - 0.7.990-1.git20130515
d064b8
- Update to 0.8 snapshot
d064b8
d064b8
* Thu Jan 31 2013 Tom Callaway <spot@fedoraproject.org> - 0.6.0.0-3
d064b8
- blacklist common arduino devices (rh #861620)
d064b8
d064b8
* Tue Nov 27 2012 Jiří Klimeš <jklimes@redhat.com> - 0.6.0.0-2
d064b8
- core: fix a crash in g_utf8_validate() (rh #862341)
d064b8
d064b8
* Tue Sep  4 2012 Dan Williams <dcbw@redhat.com> - 0.6.0.0-1
d064b8
- Update to 0.6.0
d064b8
- core: fix SMS notifications on many Qualcomm devices
d064b8
- core: use SMS PDU mode by default (more compatible)
d064b8
- novatel: fix CDMA roaming indication
d064b8
- zte: support more devices
d064b8
- zte: power down modems when disabled
d064b8
- mbm: power down modems when disabled
d064b8
- mbm: add support for Ericsson H5321
d064b8
- sierra: fix detection of secondary ports
d064b8
- sierra: more reliable connections with USB 305/AT&T Lightning
d064b8
d064b8
* Fri Jul 20 2012 Dan Williams <dcbw@redhat.com> - 0.5.3.96-1
d064b8
- Update to 0.5.3.96 (0.5.4-rc2)
d064b8
- core: fix SMS handling on a number of devices
d064b8
- zte: support for devices that use Icera chipsets
d064b8
- core: ignore unsupported QMI WWAN ports (rh #835153)
d064b8
d064b8
* Wed Mar 14 2012 Dan Williams <dcbw@redhat.com> - 0.5.2.0-1
d064b8
- Update to 0.5.2
d064b8
- core: retry sending SMS in PDU mode if text fails
d064b8
- hso: fix connection regression due to Nokia device fixes
d064b8
d064b8
* Sat Feb 25 2012 Dan Williams <dcbw@redhat.com> - 0.5.1.97-1
d064b8
- Update to 0.5.2-rc1
d064b8
- core: fix a few crashes
d064b8
- nokia: fix issues with various Nokia devices
d064b8
- huawei: fix modem crashes with older Huawei devices (like E220)
d064b8
d064b8
* Tue Feb  7 2012 Dan Williams <dcbw@redhat.com> - 0.5.1.96-1
d064b8
- Update to git snapshot of 0.5.2
d064b8
- option: fix handling of access technology reporting
d064b8
- cdma: fix handling of EVDO registration states
d064b8
- mbm: fix problems reconnecting on Ericsson F5521gw modems
d064b8
- gsm: fix connections using the Motorola Flipout
d064b8
- gsm: better detection of registration state when connecting
d064b8
- mbm: add support for more Ericsson modems
d064b8
- gobi: ensure rebranded Gobi devices are driven by Gobi
d064b8
- gsm: fix SMS multipart messages, PDU-only mode, and text-mode message listing
d064b8
- huawei: fix USSD handling
d064b8
- nokia: add support for Nokia Internet Sticks
d064b8
- gsm: fix registration response handling on some newer devices
d064b8
- sierra: add support for Icera-based devices (USB305, AT&T Lightning)
d064b8
d064b8
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.998-2.git20110706
d064b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d064b8
d064b8
* Thu Jul  7 2011 Dan Williams <dcbw@redhat.com> - 0.4.998-1.git20110706
d064b8
- Update to 0.5-beta4
d064b8
- gsm: various USSD fixes
d064b8
- samsung: support for Y3400 module and various other fixes
d064b8
- gobi: support access technology reporting while disconnected
d064b8
- nokia: fix issues with N900 USB connected operation (rh #583691)
d064b8
d064b8
* Mon Jun  6 2011 Dan Williams <dcbw@redhat.com> - 0.4.997-1
d064b8
- Update to 0.5-beta3
d064b8
- samsung: only support Y3300 (fixes issues with other Samsung modems)
d064b8
- longcheer: restrict to only supported devices
d064b8
- simtech: add support for Prolink PH-300
d064b8
- gsm: various SMS cleanups and fixes
d064b8
- x22x: add support for access technology reporting and the Alcatel X200 modem
d064b8
d064b8
* Wed Apr 27 2011 Dan Williams <dcbw@redhat.com> 0.4-8.git20110427
d064b8
- samsung: add support for Samsung Y3300 GSM modem
d064b8
- huawei: fixes for probing and handling various Huawei devices
d064b8
- wavecom: add support for some Wavecom modems
d064b8
- zte: fix crashes with Icera-based devices
d064b8
- mbm: add support for Lenovo F5521gw module
d064b8
- core: add support for basic SMS reception
d064b8
- core: faster probing for devices that support it (option, samsung)
d064b8
d064b8
* Fri Feb 25 2011 Rex Dieter <rdieter@fedoraproejct.org> 0.4-7.git20110201.1
d064b8
- hack around FTBFS on sparc
d064b8
d064b8
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-7.git20110201
d064b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d064b8
d064b8
* Tue Feb  1 2011 Dan Williams <dcbw@redhat.com> - 0.4-6.git20110201
d064b8
- Attempt to fix Icera plugin crash on second dial
d064b8
d064b8
* Tue Feb  1 2011 Dan Williams <dcbw@redhat.com> - 0.4-5.git20110201
d064b8
- core: add device and SIM identifier properties
d064b8
- dbus: fix property access permissions via D-Bus (rh #58594)
d064b8
- cdma: better detection of EVDO registration
d064b8
- cdma: recognize dual-mode devices as CDMA instead of GSM
d064b8
- gsm: better handling of wrong PIN entry
d064b8
- gsm: allow usage of older GSM character encoding schemes
d064b8
- gsm: preliminary USSD support
d064b8
- gsm: fix handling of modems that report signal strength via +CIND
d064b8
- sierra: fix handling of Sierra CnS ports mistakenly recognized as QCDM
d064b8
- sierra: ensure packet-switched network attachment before dialing
d064b8
- zte: add support for T-Mobile Rocket 2.0
d064b8
- mbm: add support for HP-branded Ericsson devices
d064b8
- linktop: add support for Linktop/Teracom LW273
d064b8
- x22x: add support for various Alcatel devices (like the X220D)
d064b8
d064b8
* Tue Jul 20 2010 Dan Williams <dcbw@redhat.com> - 0.4-4.git20100720
d064b8
- gsm: fix location services API signals
d064b8
- gsm: fix issue with invalid operator names (rh #597088)
d064b8
- novatel: fix S720 signal strength reporting
d064b8
- novatel: detect CDMA home/roaming status
d064b8
d064b8
* Wed Jun 30 2010 Dan Williams <dcbw@redhat.com> - 0.4-3.git20100630
d064b8
- gsm: enable the location services API
d064b8
d064b8
* Mon Jun 28 2010 Dan Williams <dcbw@redhat.com> - 0.4-2.git20100628
d064b8
- core: fix crash during probing when a plugin doesn't support all ports (rh #603294)
d064b8
- gsm: better registration state checking when devices don't support AT+CREG (Blackberries)
d064b8
- gsm: add support for getting remaining unlock retry counts
d064b8
d064b8
* Tue Jun 22 2010 Dan Williams <dcbw@redhat.com> - 0.4-1.git20100622
d064b8
- core: fix occasional crash when device is unplugged (rh #591728)
d064b8
- core: ensure errors are correctly returned when device is unplugged
d064b8
- core: ensure claimed ports don't fall back to Generic (rh #597296)
d064b8
- gsm: better compatibility with various phones
d064b8
- mbm: better detection of connection errors
d064b8
- simtech: add plugin for Simtech devices (like Airlink 3GU)
d064b8
- sierra: fix CDMA roaming detection
d064b8
d064b8
* Fri May  7 2010 Dan Williams <dcbw@redhat.com> - 0.3-13.git20100507
d064b8
- core: fix crash when plugging in some Sierra and Option NV devices (rh #589798)
d064b8
- gsm: better compatibility with various Sony Ericsson phones
d064b8
- longcheer: better support for Alcatel X060s modems
d064b8
d064b8
* Tue May  4 2010 Dan Williams <dcbw@redhat.com> - 0.3-12.git20100504
d064b8
- core: fix data port assignments (rh #587400)
d064b8
d064b8
* Sun May  2 2010 Dan Williams <dcbw@redhat.com> - 0.3-11.git20100502
d064b8
- core: ignore some failures on disconnect (rh #578280)
d064b8
- core: add support for platform serial devices
d064b8
- gsm: better Blackberry DUN support
d064b8
- gsm: periodically poll access technology
d064b8
- cdma: prevent crash on modem removal (rh #571921)
d064b8
- mbm: add support for Sony Ericsson MD400, Dell 5541, and Dell 5542 modems
d064b8
- novatel: better signal strength reporting on CDMA cards
d064b8
- novatel: add access technology and mode preference support on GSM cards
d064b8
- zte: fix mode preference retrieval
d064b8
- longcheer: add support for Zoom modems (4595, 4596, etc)
d064b8
- longcheer: add access technology and mode preference support
d064b8
d064b8
* Fri Apr 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.3-10.git20100409
d064b8
- Silence %%post
d064b8
- Update scripts
d064b8
d064b8
* Fri Apr  9 2010 Dan Williams <dcbw@redhat.com> - 0.3-9.git20100409
d064b8
- gsm: fix parsing Blackberry supported character sets response
d064b8
d064b8
* Thu Apr  8 2010 Dan Williams <dcbw@redhat.com> - 0.3-8.git20100408
d064b8
- mbm: fix retrieval of current allowed mode
d064b8
- gsm: fix initialization issues with some devices (like Blackberries)
d064b8
d064b8
* Mon Apr  5 2010 Dan Williams <dcbw@redhat.com> - 0.3-7.git20100405
d064b8
- core: fix detection of some generic devices (rh #579247)
d064b8
- core: fix detection regression of some Huawei devices in 0.3-5
d064b8
- cdma: periodically poll registration state and signal quality
d064b8
- cdma: really fix registration detection on various devices (rh #569067)
d064b8
d064b8
* Wed Mar 31 2010 Dan Williams <dcbw@redhat.com> - 0.3-6.git20100331
d064b8
- core: fix PPC/SPARC/etc builds
d064b8
d064b8
* Wed Mar 31 2010 Dan Williams <dcbw@redhat.com> - 0.3-5.git20100331
d064b8
- core: only export a modem when all its ports are handled (rh #540438, rh #569067, rh #552121)
d064b8
- cdma: handle signal quality requests while connected for more devices
d064b8
- cdma: handle serving system requests while connected for more devices
d064b8
- gsm: determine current access technology earlier
d064b8
- huawei: work around automatic registration issues on some devices
d064b8
d064b8
* Tue Mar 23 2010 Dan Williams <dcbw@redhat.com> - 0.3-4.git20100323
d064b8
- core: ensure enabled modems are disabled when MM stops
d064b8
- core: better capability detection for Blackberry devices (rh #573510)
d064b8
- cdma: better checking of registration states (rh #540438, rh #569067, rh #552121)
d064b8
- gsm: don't block modem when it requires PIN2
d064b8
- option: fix access technology updates
d064b8
d064b8
* Wed Mar 17 2010 Dan Williams <dcbw@redhat.com> - 0.3-3.git20100317
d064b8
- mbm: add device IDs for C3607w
d064b8
- mbm: fail earlier during connection failures
d064b8
- mbm: fix username/password authentication when checked by the network
d064b8
- hso: implement asynchronous signal quality updates
d064b8
- option: implement asynchronous signal quality updates
d064b8
- novatel: correctly handle CDMA signal quality
d064b8
- core: basic PolicyKit support
d064b8
- core: fix direct GSM registration information requests
d064b8
- core: general GSM PIN/PUK unlock fixes
d064b8
- core: poll GSM registration state internally for quicker status updates
d064b8
- core: implement GSM 2G/3G preference
d064b8
- core: implement GSM roaming allowed/disallowed preference
d064b8
- core: emit signals on access technology changes
d064b8
- core: better handling of disconnections
d064b8
- core: fix simple CDMA status requests
d064b8
d064b8
* Thu Feb 11 2010 Dan Williams <dcbw@redhat.com> - 0.3-2.git20100211
d064b8
- core: startup speed improvements
d064b8
- core: GSM PIN checking improvements
d064b8
- huawei: fix EVDO-only connections on various devices (rh #553199)
d064b8
- longcheer: add support for more devices
d064b8
d064b8
* Tue Jan 19 2010 Dan Williams <dcbw@redhat.com> - 0.3-1.git20100119
d064b8
- anydata: new plugin for AnyData CDMA modems (rh #547294)
d064b8
- core: fix crashes when devices are unplugged during operation (rh #553953)
d064b8
- cdma: prefer primary port for status/registration queries
d064b8
- core: fix probing/detection of some PIN-locked devices (rh #551376)
d064b8
- longcheer: add plugin for Alcatel (X020, X030, etc) and other devices
d064b8
- gsm: fix Nokia N80 network scan parsing
d064b8
d064b8
* Fri Jan  1 2010 Dan Williams <dcbw@redhat.com> - 0.2.997-5.git20100101
d064b8
- core: fix apparent hangs by limiting retried serial writes
d064b8
- gsm: ensure modem state is reset when disabled
d064b8
d064b8
* Fri Dec 18 2009 Dan Williams <dcbw@redhat.com> - 0.2.997-4.git20091218
d064b8
- sierra: fix CDMA registration detection in some cases (rh #547513)
d064b8
d064b8
* Wed Dec 16 2009 Dan Williams <dcbw@redhat.com> - 0.2.997-3.git20091216
d064b8
- sierra: ensure CDMA device is powered up when trying to use it
d064b8
- cdma: better signal quality parsing (fixes ex Huawei EC168C)
d064b8
- zte: handle unsolicited messages better during probing
d064b8
d064b8
* Mon Dec 14 2009 Dan Williams <dcbw@redhat.com> - 0.2.997-2.git20091214
d064b8
- cdma: fix signal strength reporting on some devices
d064b8
- cdma: better registration state detection when dialing (ex Sierra 5275)
d064b8
- option: always use the correct tty for dialing commands
d064b8
d064b8
* Mon Dec  7 2009 Dan Williams <dcbw@redhat.com> - 0.2.997-1
d064b8
- core: fix reconnect after manual disconnect (rh #541314)
d064b8
- core: fix various segfaults during registration
d064b8
- core: fix probing of various modems on big-endian architectures (ie PPC)
d064b8
- core: implement modem states to avoid duplicate operations
d064b8
- hso: fix authentication for Icera-based devices like iCON 505
d064b8
- zte: use correct port for new devices
d064b8
- nozomi: fix detection
d064b8
d064b8
* Thu Nov  5 2009 Dan Williams <dcbw@redhat.com> - 0.2-4.20091105
d064b8
- Update to latest git
d064b8
- core: fix pppd 2.4.5 errors about 'baudrate 0'
d064b8
- cdma: wait for network registration before trying to connect
d064b8
- gsm: add cell access technology reporting
d064b8
- gsm: allow longer-running network scans
d064b8
- mbm: various fixes for Ericsson F3507g/F3607gw/Dell 5530
d064b8
- nokia: don't power down phones on disconnect
d064b8
- hso: fix disconnection/disable
d064b8
d064b8
* Wed Aug 26 2009 Dan Williams <dcbw@redhat.com> - 0.2-3.20090826
d064b8
- Fixes for Motorola and Ericsson devices
d064b8
- Fixes for CDMA "serving-system" command parsing
d064b8
d064b8
* Fri Jul 31 2009 Matthias Clasen <mclasen@redhat.com>
d064b8
- Fix a typo in one of the udev rules files
d064b8
d064b8
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-2.20090707
d064b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
d064b8
d064b8
* Tue Jul 7 2009 Dan Williams <dcbw@redhat.com> - 0.2-1.20090707
d064b8
- Fix source repo location
d064b8
- Fix directory ownership
d064b8
d064b8
* Tue Jul 7 2009 Dan Williams <dcbw@redhat.com> - 0.2-0.20090707
d064b8
- Initial version
d064b8