From ae0113791570b844d1e850b74f53f54c66b55f9dea3e87691c5befedf694259f Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Tue, 27 Feb 2007 14:03:17 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gammu?expand=0&rev=2 --- gammu-1.09.00.tar.bz2 | 3 --- gammu-1.10.0.tar.bz2 | 3 +++ gammu-uninitialized.diff | 29 ----------------------------- gammu.changes | 13 +++++++++++++ gammu.spec | 20 ++++++++++++++------ 5 files changed, 30 insertions(+), 38 deletions(-) delete mode 100644 gammu-1.09.00.tar.bz2 create mode 100644 gammu-1.10.0.tar.bz2 delete mode 100644 gammu-uninitialized.diff diff --git a/gammu-1.09.00.tar.bz2 b/gammu-1.09.00.tar.bz2 deleted file mode 100644 index c8d3710..0000000 --- a/gammu-1.09.00.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cb1bea76745ebf907c8bf2ec963d34c0f1bf78b3d35c2f5e0f4410b08b9399e9 -size 870312 diff --git a/gammu-1.10.0.tar.bz2 b/gammu-1.10.0.tar.bz2 new file mode 100644 index 0000000..9026350 --- /dev/null +++ b/gammu-1.10.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91062db1fd62095bdda21782e076157a343e0181e684738c2edbfff5fc860f64 +size 889856 diff --git a/gammu-uninitialized.diff b/gammu-uninitialized.diff deleted file mode 100644 index 4c80431..0000000 --- a/gammu-uninitialized.diff +++ /dev/null @@ -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); - diff --git a/gammu.changes b/gammu.changes index 2bda3c1..9f55e8d 100644 --- a/gammu.changes +++ b/gammu.changes @@ -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 diff --git a/gammu.spec b/gammu.spec index e4bc227..e64c93a 100644 --- a/gammu.spec +++ b/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 # package are under the same license as the package itself. # @@ -12,7 +12,7 @@ Name: gammu BuildRequires: bluez-libs -Version: 1.09.00 +Version: 1.10.0 Release: 1 AutoReqProv: on Group: Hardware/Mobile @@ -20,7 +20,6 @@ License: GNU General Public License (GPL) URL: http://www.gammu.org Summary: Mobile Phone Tools Source: %{name}-%{version}.tar.bz2 -Patch0: %{name}-uninitialized.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -79,7 +78,6 @@ Authors: %prep %setup -q -%patch0 %build %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 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 - update to 1.09.00 * Tue Oct 17 2006 - ro@suse.de