This commit is contained in:
parent
cceedb441e
commit
ae01137915
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cb1bea76745ebf907c8bf2ec963d34c0f1bf78b3d35c2f5e0f4410b08b9399e9
|
|
||||||
size 870312
|
|
3
gammu-1.10.0.tar.bz2
Normal file
3
gammu-1.10.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:91062db1fd62095bdda21782e076157a343e0181e684738c2edbfff5fc860f64
|
||||||
|
size 889856
|
@ -1,29 +0,0 @@
|
|||||||
--- common/phone/at/atgen.c
|
|
||||||
+++ common/phone/at/atgen.c
|
|
||||||
@@ -333,7 +333,7 @@
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
-GSM_Error ATGEN_DecodeDateTime(GSM_StateMachine *s, GSM_DateTime *dt, unsigned char *input)
|
|
||||||
+GSM_Error ATGEN_DecodeDateTime(GSM_StateMachine *s, GSM_DateTime *dt, unsigned char *_input)
|
|
||||||
{
|
|
||||||
/* This function parses datetime strings in the format:
|
|
||||||
[YY[YY]/MM/DD,]hh:mm[:ss[+TZ]] , [] enclosed parts are optional */
|
|
||||||
@@ -342,13 +342,16 @@
|
|
||||||
unsigned char buffer[100];
|
|
||||||
unsigned char *pos;
|
|
||||||
unsigned char buffer2[100];
|
|
||||||
+ unsigned char input[100];
|
|
||||||
int len;
|
|
||||||
|
|
||||||
+ strncpy(input, _input, 100);
|
|
||||||
+ input[99] = '\0';
|
|
||||||
pos = input;
|
|
||||||
|
|
||||||
/* Strip possible quotes */
|
|
||||||
if (*pos == '"') pos++;
|
|
||||||
- if (buffer[strlen(pos) - 1] == '"') buffer[strlen(pos) - 1] = 0;
|
|
||||||
+ if (input[strlen(pos) - 1] == '"') input[strlen(pos) - 1] = 0;
|
|
||||||
|
|
||||||
len = strlen(pos);
|
|
||||||
|
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 27 11:18:54 CET 2007 - prusnak@suse.cz
|
||||||
|
|
||||||
|
- update to 1.10.0
|
||||||
|
* added vCard and vCalendar support
|
||||||
|
* added basic Motorola support
|
||||||
|
* added support for location of alarm
|
||||||
|
* added support for sending file to phone
|
||||||
|
* improved battery reporting
|
||||||
|
* various bugfixes
|
||||||
|
- dropped obsoleted patches:
|
||||||
|
* gammu-uninitialized.diff (included in update)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 28 12:57:36 CET 2006 - prusnak@suse.cz
|
Tue Nov 28 12:57:36 CET 2006 - prusnak@suse.cz
|
||||||
|
|
||||||
|
20
gammu.spec
20
gammu.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gammu (Version 1.09.00)
|
# spec file for package gammu (Version 1.10.0)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
Name: gammu
|
Name: gammu
|
||||||
BuildRequires: bluez-libs
|
BuildRequires: bluez-libs
|
||||||
Version: 1.09.00
|
Version: 1.10.0
|
||||||
Release: 1
|
Release: 1
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Group: Hardware/Mobile
|
Group: Hardware/Mobile
|
||||||
@ -20,7 +20,6 @@ License: GNU General Public License (GPL)
|
|||||||
URL: http://www.gammu.org
|
URL: http://www.gammu.org
|
||||||
Summary: Mobile Phone Tools
|
Summary: Mobile Phone Tools
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Patch0: %{name}-uninitialized.diff
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -79,7 +78,6 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --enable-cb --with-docdir=%_defaultdocdir/gammu/ CFLAGS="$RPM_OPT_FLAGS -Wno-pointer-sign"
|
%configure --enable-cb --with-docdir=%_defaultdocdir/gammu/ CFLAGS="$RPM_OPT_FLAGS -Wno-pointer-sign"
|
||||||
@ -113,7 +111,17 @@ rm -rf other/SYMBIAN/gnapplet/CVS
|
|||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%changelog -n gammu
|
%changelog
|
||||||
|
* Tue Feb 27 2007 - prusnak@suse.cz
|
||||||
|
- update to 1.10.0
|
||||||
|
* added vCard and vCalendar support
|
||||||
|
* added basic Motorola support
|
||||||
|
* added support for location of alarm
|
||||||
|
* added support for sending file to phone
|
||||||
|
* improved battery reporting
|
||||||
|
* various bugfixes
|
||||||
|
- dropped obsoleted patches:
|
||||||
|
* gammu-uninitialized.diff (included in update)
|
||||||
* Tue Nov 28 2006 - prusnak@suse.cz
|
* Tue Nov 28 2006 - prusnak@suse.cz
|
||||||
- update to 1.09.00
|
- update to 1.09.00
|
||||||
* Tue Oct 17 2006 - ro@suse.de
|
* Tue Oct 17 2006 - ro@suse.de
|
||||||
|
Loading…
x
Reference in New Issue
Block a user