Hello community, here is the log from the commit of package Source-Navigator checked in at Tue Dec 12 23:10:50 CET 2006. -------- --- Source-Navigator/Source-Navigator.changes 2006-01-25 21:33:58.000000000 +0100 +++ /mounts/work_src_done/STABLE/Source-Navigator/Source-Navigator.changes 2006-12-12 15:20:27.000000000 +0100 @@ -1,0 +2,11 @@ +Tue Dec 12 15:15:33 CET 2006 - lmichnovic@suse.cz + +- rewritten *2much_elements.patch [#134534] renamed to *cache.patch + +------------------------------------------------------------------- +Tue Dec 12 14:31:32 CET 2006 - lmichnovic@suse.cz + +- fixed non deterministic evaluation of code (increment.patch) +- building with flex, flex-old is not needed any more + +------------------------------------------------------------------- Old: ---- sourcenav-5.1.4-2much_elements.patch New: ---- sourcenav-5.1.4-cache.patch sourcenav-5.1.4-increment.patch zaloha.spe ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Source-Navigator.spec ++++++ --- /var/tmp/diff_new_pack.AUuCih/_old 2006-12-12 23:09:59.000000000 +0100 +++ /var/tmp/diff_new_pack.AUuCih/_new 2006-12-12 23:09:59.000000000 +0100 @@ -1,24 +1,23 @@ # # spec file for package Source-Navigator (Version 5.1.4) # -# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2006 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. # -# Please submit bugfixes or comments via http://bugs.opensuse.org +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild Name: Source-Navigator -#!BuildIgnore: flex -BuildRequires: flex-old xorg-x11-devel -License: GPL, LGPL +BuildRequires: flex xorg-x11-devel +License: GNU General Public License (GPL), GNU Library General Public License v. 2.0 and 2.1 (LGPL) Group: Development/Tools/IDE Provides: SN snavig Autoreqprov: on Version: 5.1.4 -Release: 186 +Release: 219 Source: sourcenav-%{version}.tar.bz2 Source1: snavigator Patch: returnval.patch @@ -27,9 +26,10 @@ Patch3: sourcenav-%{version}-gcc.patch Patch4: sourcenav-%{version}-uninitialized.patch Patch5: sourcenav-%{version}-includes.patch -Patch6: sourcenav-%{version}-2much_elements.patch +Patch6: sourcenav-%{version}-cache.patch Patch7: sourcenav-%{version}-always_false_if.patch Patch8: sourcenav-%{version}-tcl_config.patch +Patch9: sourcenav-%{version}-increment.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build URL: http://sourcenav.sourceforge.net/ Summary: Cygnus Source-Navigator @@ -60,6 +60,7 @@ %patch6 %patch7 %patch8 +%patch9 %build %{?suse_update_config:%{suse_update_config -f}} @@ -129,6 +130,11 @@ /usr/bin/snavigator %changelog -n Source-Navigator +* Tue Dec 12 2006 - lmichnovic@suse.cz +- rewritten *2much_elements.patch [#134534] renamed to *cache.patch +* Tue Dec 12 2006 - lmichnovic@suse.cz +- fixed non deterministic evaluation of code (increment.patch) +- building with flex, flex-old is not needed any more * Wed Jan 25 2006 - mls@suse.de - converted neededforbuild to BuildRequires * Fri Dec 23 2005 - ro@suse.de ++++++ sourcenav-5.1.4-cache.patch ++++++ --- snavigator/hyper/tkTreeTable.h +++ snavigator/hyper/tkTreeTable.h @@ -135,7 +135,7 @@ #define USE_PARENT_CACHE #define USE_CACHE -#define MAX_CACHED 5 +#define MAX_CACHED 8 #undef USE_BITMAP_COLORS #define USE_PATHFINDER ++++++ sourcenav-5.1.4-increment.patch ++++++ --- libgui/src/tkTableCmds.c +++ libgui/src/tkTableCmds.c @@ -108,7 +108,8 @@ /* no error checking because GetIndex did it for us */ p++; x = strtol(p, &p, 0) - x - tablePtr->activeX; - y = strtol(++p, &p, 0) - y - tablePtr->activeY; + p++; + y = strtol(p, &p, 0) - y - tablePtr->activeY; textLayout = Tk_ComputeTextLayout(tagPtr->tkfont, tablePtr->activeBuf, -1, ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org