OBS User unknown 2007-11-08 23:05:14 +00:00 committed by Git OBS Bridge
parent 955f3b7c29
commit 07c59dbf2b
4 changed files with 118 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:543cd847431d85cbbbd96c7914a2dd4d9fdcf74419dbe5693b93d8dc94ba945a
size 964504

3
gammu-1.14.0.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d4a69cf03f229e54893e3cabb92e16af7f0bc3ec34cf1aa1edac22bdaea05cb5
size 993760

View File

@ -1,3 +1,58 @@
-------------------------------------------------------------------
Thu Nov 8 10:55:59 CET 2007 - prusnak@suse.cz
- update to 1.14.0
* Fallback to empty model if user specifies wrong.
* Fixed wrong PDU encoding (bug #412).
* Provide API for cleaning SMS backup structure.
* Added testing of SMS PDU encoding.
* Fixes OBEX crash (Debian bug #446923).
* Correctly check various return values (bug #409).
* Fixed several bugs in vCard decoder.
* Removed UCS decoding heuristics, it can not work in all cases.
* Provide at least some basic information from dumb AT phones.
* SMSD now logs also error descriptions.
* SMSD can be configured not to check for security status.
* Correctly handle hard deletes on IrMC (bug #414).
* GSM_ReadConfig now returns GSM_Error instead of just bool.
* Many functions now use size_t for passing size values.
* Backups API now rather accepts format than guessing by filename.
* Increased soname due to API/ABI changes.
* Fixed crash in wrong config handling (Debian bug #446781).
* Initial support for Motorola SMS implementation (bug #408).
* Automatically fall back to AT commands when OBEX does not work.
* Initial support for IrMC index access.
* RunOnReceive is now also supported on Windows.
* Handle correctly case when memory is full (OBEX) (bug #404).
* Fixed handling of errors when saving SMS (bug #396).
* Fixed number type detection.
* Added support for Nokia 6070, thanks to Lúcio Corrêa.
* Added flag -nopower to connection to handle cables with different
handling of DTR/RTS signals.
* Fixed reading of empty calendar/todo/contacts/notes over OBEX
(thanks to Gianni Ceccarelli).
* Fixed overwriting of Java applications in Nokia phones (thanks to
Martin Thierer, bug 382).
* Fixed compilation with older PostgreSQL libraries.
* Handle correcly internal phone errors in OBEX module.
* Fixed crash on invalid config file (Debian bug #444046).
* Better report errors when using default configuration.
* Fix several buffer overflows in 6510 (thanks to Tobias Sunderdiek
for debugging this).
* Fixed crash on decoding messages with special numbering plans with
long numbers (bug 281).
* Command nokiaaddfile can now either keep or delete user data on
uploading new application (thanks to Martin Thierer, bug 385).
* Fixed parsing of date/time reply from some broken AT phones.
* Added support for Option GlobeTrotter.
* Handle correctly when phone automatically saves message to
different memory than we ask.
* Fixed buffer overflows, thanks to Gentoo folks for noticing.
* Detect when phone is waiting for phone code.
* Added experimental support for Bluetooth on FreeBSD.
* SMSD can execute programs on message receiving (thanks to zaf).
* Allow to define Bluetooth channel in configuration.
-------------------------------------------------------------------
Tue Sep 25 12:20:16 CEST 2007 - prusnak@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package gammu (Version 1.13.0)
# spec file for package gammu (Version 1.14.0)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -12,7 +12,7 @@
Name: gammu
BuildRequires: bluez-libs cmake
Version: 1.13.0
Version: 1.14.0
Release: 1
AutoReqProv: on
Group: Hardware/Mobile
@ -89,24 +89,24 @@ make install DESTDIR=$RPM_BUILD_ROOT
if [ "lib" != "%{_lib}" ]; then
mv $RPM_BUILD_ROOT%{_prefix}/lib $RPM_BUILD_ROOT%{_prefix}/%{_lib}
fi
%find_lang %name
%find_lang %{name}
%post
%{run_ldconfig}
/sbin/ldconfig
%postun
%{run_ldconfig}
/sbin/ldconfig
%files -f %name.lang
%defattr(-,root,root)
%doc docs/user/gammu.htm docs/user/readme.htm
%doc COPYING README SUPPORTERS docs/user/gammu.htm docs/user/readme.htm
%doc %{_mandir}/man1/*
%{_bindir}/*
%{_libdir}/libGammu*so.*
%{_libdir}/libGammu*.so.*
%files devel
%defattr(-,root,root)
%doc docs/develop/protocol docs/develop/Gammu.htm docs/develop/gammu_hints.txt docs/develop/examples docs/examples
%doc docs/develop docs/examples
%{_includedir}/gammu
%{_libdir}/libGammu*so
%{_libdir}/pkgconfig/gammu.pc
@ -114,6 +114,58 @@ fi
%clean
rm -rf $RPM_BUILD_ROOT
%changelog
* Thu Nov 08 2007 - prusnak@suse.cz
- update to 1.14.0
* Fallback to empty model if user specifies wrong.
* Fixed wrong PDU encoding (bug #412).
* Provide API for cleaning SMS backup structure.
* Added testing of SMS PDU encoding.
* Fixes OBEX crash (Debian bug #446923).
* Correctly check various return values (bug #409).
* Fixed several bugs in vCard decoder.
* Removed UCS decoding heuristics, it can not work in all cases.
* Provide at least some basic information from dumb AT phones.
* SMSD now logs also error descriptions.
* SMSD can be configured not to check for security status.
* Correctly handle hard deletes on IrMC (bug #414).
* GSM_ReadConfig now returns GSM_Error instead of just bool.
* Many functions now use size_t for passing size values.
* Backups API now rather accepts format than guessing by filename.
* Increased soname due to API/ABI changes.
* Fixed crash in wrong config handling (Debian bug #446781).
* Initial support for Motorola SMS implementation (bug #408).
* Automatically fall back to AT commands when OBEX does not work.
* Initial support for IrMC index access.
* RunOnReceive is now also supported on Windows.
* Handle correctly case when memory is full (OBEX) (bug #404).
* Fixed handling of errors when saving SMS (bug #396).
* Fixed number type detection.
* Added support for Nokia 6070, thanks to Lúcio Corrêa.
* Added flag -nopower to connection to handle cables with different
handling of DTR/RTS signals.
* Fixed reading of empty calendar/todo/contacts/notes over OBEX
(thanks to Gianni Ceccarelli).
* Fixed overwriting of Java applications in Nokia phones (thanks to
Martin Thierer, bug 382).
* Fixed compilation with older PostgreSQL libraries.
* Handle correcly internal phone errors in OBEX module.
* Fixed crash on invalid config file (Debian bug #444046).
* Better report errors when using default configuration.
* Fix several buffer overflows in 6510 (thanks to Tobias Sunderdiek
for debugging this).
* Fixed crash on decoding messages with special numbering plans with
long numbers (bug 281).
* Command nokiaaddfile can now either keep or delete user data on
uploading new application (thanks to Martin Thierer, bug 385).
* Fixed parsing of date/time reply from some broken AT phones.
* Added support for Option GlobeTrotter.
* Handle correctly when phone automatically saves message to
different memory than we ask.
* Fixed buffer overflows, thanks to Gentoo folks for noticing.
* Detect when phone is waiting for phone code.
* Added experimental support for Bluetooth on FreeBSD.
* SMSD can execute programs on message receiving (thanks to zaf).
* Allow to define Bluetooth channel in configuration.
* Tue Sep 25 2007 - prusnak@suse.cz
- update to 1.13.0
* Fixed several crashes of 6510 driver.