Mailinglist Archive: opensuse-commit (1670 mails)
| < Previous | Next > |
commit tk
- From: root@xxxxxxx (h_root)
- Date: Fri, 20 Oct 2006 12:47:06 +0200 (CEST)
- Message-id: <20061020104706.9AE64847DD@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package tk
checked in at Fri Oct 20 12:47:06 CEST 2006.
--------
--- tk/tk.changes 2006-09-14 17:33:12.000000000 +0200
+++ /mounts/work_src_done/STABLE/tk/tk.changes 2006-10-17 19:57:53.000000000 +0200
@@ -1,0 +2,14 @@
+Tue Oct 17 19:55:05 CEST 2006 - max@xxxxxxx
+
+- New patchlevel release: 8.4.14rc2
+- Fix crash on invalid font name from XServer
+- Unmap canvas window items on canvas Unmap
+- Fix [listbox] crash with namespace var
+- Fix [console] std chan refcount
+- Fix [console] thread safety
+- Prevent excess variable writes by [scale]
+- Add WM_UNICHAR window message
+- Improve speed on [text] delete
+- Alignment fixes in ucs-2be encoding routines
+
+-------------------------------------------------------------------
Old:
----
tk8.4.13-src.tar.bz2
New:
----
tk8.4.14rc2-src.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ tk.spec ++++++
--- /var/tmp/diff_new_pack.a8c6lr/_old 2006-10-20 12:47:01.000000000 +0200
+++ /var/tmp/diff_new_pack.a8c6lr/_new 2006-10-20 12:47:01.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package tk (Version 8.4.13)
+# spec file for package tk (Version 8.4.14)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -13,18 +13,18 @@
Name: tk
BuildRequires: tcl-devel xorg-x11-libX11-devel xorg-x11-libXt-devel
URL: http://www.tcl.tk
-Version: 8.4.13
+Version: 8.4.14
Release: 1
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Graphical User Interface Toolkit for Tcl
-License: BSD
+License: BSD License and BSD-like
Group: Development/Languages/Tcl
Autoreqprov: on
Summary: Graphical User Interface Toolkit for Tcl
Provides: wish wish8.4
Requires: tcl >= %version tcl < 8.5
Prereq: /bin/rm
-Source0: %name%{version}-src.tar.bz2
+Source0: %name%{version}rc2-src.tar.bz2
Patch0: %name.patch
%description
@@ -42,7 +42,7 @@
%package devel
Group: Development/Libraries/Tcl
-License: BSD
+License: BSD License and BSD-like
Summary: Header Files and C API Documentation for Tk
Requires: tk = %version, tcl-devel
@@ -123,6 +123,17 @@
%_libdir/tkConfig.sh
%changelog -n tk
+* Tue Oct 17 2006 - max@xxxxxxx
+- New patchlevel release: 8.4.14rc2
+- Fix crash on invalid font name from XServer
+- Unmap canvas window items on canvas Unmap
+- Fix [listbox] crash with namespace var
+- Fix [console] std chan refcount
+- Fix [console] thread safety
+- Prevent excess variable writes by [scale]
+- Add WM_UNICHAR window message
+- Improve speed on [text] delete
+- Alignment fixes in ucs-2be encoding routines
* Thu Sep 14 2006 - max@xxxxxxx
- New version: 8.4.13
- Fixes the SCIM issues (#77424, obsoletes tk-scim.patch)
++++++ tk.patch ++++++
--- /var/tmp/diff_new_pack.a8c6lr/_old 2006-10-20 12:47:01.000000000 +0200
+++ /var/tmp/diff_new_pack.a8c6lr/_new 2006-10-20 12:47:01.000000000 +0200
@@ -1,6 +1,6 @@
--- unix/Makefile.in
+++ unix/Makefile.in
-@@ -112,7 +112,8 @@
+@@ -113,7 +113,8 @@
TK_PKG_DIR = @TK_PKG_DIR@
# Directory in which to install the pkgIndex.tcl file for loadable Tk
@@ -10,7 +10,7 @@
# Package index file for loadable Tk
PKG_INDEX = $(PKG_INSTALL_DIR)/pkgIndex.tcl
-@@ -470,7 +471,8 @@
+@@ -471,7 +472,8 @@
AQUA_PRIVATE_HDRS = $(MAC_OSX_DIR)/tkMacOSXPort.h $(MAC_OSX_DIR)/tkMacOSXInt.h
@@ -20,11 +20,9 @@
HDRS = bltList.h \
default.h ks_names.h tkPatch.h tk.h tkButton.h tkCanvas.h tkInt.h \
-@@ -632,9 +634,8 @@
- (\
- echo "if {[package vcompare [package provide Tcl]\
- $(TCLVERSION)] != 0} { return }";\
-- relative=`echo | awk '{ORS=" "; split("$(TK_PKG_DIR)",a,"/"); for (f in a) {print ".."}}'`;\
+@@ -634,7 +636,7 @@
+ relative=`echo | awk '{ORS=" "; split("$(TK_PKG_DIR)",a,"/"); for (f in a) {print ".."}}'`;\
+ echo "if {[package vcompare [package provide Tcl] $(TCLVERSION)] != 0} { return }";\
echo "package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION)\
- [list load [file join \$$dir $${relative}$(TK_LIB_FILE)] Tk]";\
+ [list load $(TK_LIB_FILE) Tk]";\
@@ -33,7 +31,7 @@
@echo "Installing $(LIB_FILE) to $(LIB_INSTALL_DIR)/"
--- unix/tcl.m4
+++ unix/tcl.m4
-@@ -1123,7 +1123,7 @@
+@@ -1124,7 +1124,7 @@
# AIX v<=4.1 has some different flags than 4.2+
if test "$system" = "AIX-4.1" -o "`uname -v`" -lt "4" ; then
@@ -42,7 +40,7 @@
DL_LIBS="-lld"
fi
-@@ -1365,7 +1365,7 @@
+@@ -1366,7 +1366,7 @@
# is kind of overkill but it works.
# Disable inlining only when one of the
# files in compat/*.c is being linked in.
@@ -51,7 +49,7 @@
CFLAGS="$CFLAGS -fno-inline"
fi
-@@ -2571,7 +2571,7 @@
+@@ -2585,7 +2585,7 @@
}], tcl_cv_strtod_buggy=ok, tcl_cv_strtod_buggy=buggy,
tcl_cv_strtod_buggy=buggy)])
if test "$tcl_cv_strtod_buggy" = buggy; then
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |