Hello community, here is the log from the commit of package tcl for openSUSE:Factory checked in at 2013-08-13 12:59:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tcl (Old) and /work/SRC/openSUSE:Factory/.tcl.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tcl" Changes: -------- --- /work/SRC/openSUSE:Factory/tcl/tcl.changes 2013-04-14 13:00:22.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.tcl.new/tcl.changes 2013-08-13 12:59:33.000000000 +0200 @@ -1,0 +2,52 @@ +Thu Jun 20 12:18:58 UTC 2013 - [email protected] + +- New version: 8.6.0. +- Itcl is now part of the Tcl main package. +- Disable profile feedback based optimization for now. +- Highlihhts of the new version: + * Object Oriented Programming: The commands of the TclOO package + are now part of Tcl itself. This gives Tcl a built-in object + system that is fully dynamic, class-based, and includes + advanced features such as meta-classes, filters, and mixins. + * New version 4 of the popular package Itcl (aka incr Tcl) is + also included, now built on a TclOO foundation, granting + support for some traditional OO Tcl programming out of the box + as well. + * Stackless Evaluation: The evaluation of many levels of nested + proc calls are no longer implemented as a stack of nested C + routine calls. This revision in the internal implementation of + Tcl evaluation makes deep recursion in Tcl scripts safe to + do. But there's more... + * This new implementation enables a collection of new commands, + coroutine, tailcall, yield, and yieldto that provide profound + new capabilities and models of concurrency to Tcl scripts. + * Enhanced Exceptions: New commands try and throw and a wealth + of new -errorcode values enable far more precise trapping and + handling of exceptions using a familiar construct. + * Batteries Included: Tcl delivers in the pkgs subdirectory a + bundled collection of third-party packages built and installed + along with Tcl. + * Thread-enabled Operations: A thread-enabled default build, a + bundled Thread package, and new command interp cancel make Tcl + 8.6 ready for your multi-threaded programming tasks. + * SQL Database Powered: The bundled Tcl DataBase Connectivity + (tdbc) interface package makes it possible to write your SQL + database-powered scripts decoupled from any particular + database engine. The bundled sqlite3 and tdbc::sqlite3 + packages supply a powerful and popular SQL database engine + ready to use. + * IPv6 Networking: Both client and server sockets support IPv6 + where platform support exists. + * Built-in Zlib Compression: New command zlib provides utilities + to handle compression of data and streams. + * List Processing: New commands lmap and dict map enable the + elegant expression of transformations over Tcl containers. + * Stacked Channels by Script: New commands chan push and chan + pop expose the power of stacked channels without the need to + write C code. + * Additional New Features: Temporary file creation, enhancements + to list sorting and setting, dict filtering, half-close of + bidirectional channels, encoding and decoding of binary + sequences, finer control over load, and many many more. + +------------------------------------------------------------------- Old: ---- tcl8.5.12-src.tar.gz New: ---- tcl8.6.0-src.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tcl.spec ++++++ --- /var/tmp/diff_new_pack.rlJtKu/_old 2013-08-13 12:59:36.000000000 +0200 +++ /var/tmp/diff_new_pack.rlJtKu/_new 2013-08-13 12:59:36.000000000 +0200 @@ -18,7 +18,7 @@ Name: tcl Url: http://www.tcl.tk -Version: 8.5.12 +Version: 8.6.0 Release: 0 %define rrc %nil %define TCL_MINOR %(echo %version | cut -c1-3) @@ -33,14 +33,15 @@ # Provides: tclsh Provides: tclsh%{TCL_MINOR} +Obsoletes: itcl < 4.0.0 +Provides: itcl = 4.0.0 PreReq: /bin/rm -Source0: ftp://ftp.tcl.tk/pub/tcl/tcl8_5/%name%{version}%{rrc}-src.tar.gz +Source0: ftp://ftp.tcl.tk/pub/tcl/tcl8_6/%name%{version}%{rrc}-src.tar.gz Source1: tcl-rpmlintrc Source2: baselibs.conf Source3: macros.tcl -Patch0: tcl.patch -Patch1: tcl-unload.patch BuildRequires: autoconf +BuildRequires: pkg-config # Required for test suite: BuildRequires: timezone @@ -63,6 +64,8 @@ %ifarch ppc64 Obsoletes: tcl-devel-64bit %endif +Obsoletes: itcl-devel < 4.0.0 +Provides: itcl-devel = 4.0.0 # %description devel @@ -75,31 +78,21 @@ %prep %setup -q -n %name%version -%patch0 -%patch1 %build cd unix autoconf %configure \ --enable-man-symlinks \ - --enable-man-compression=gzip + --enable-man-compression=gzip \ + --without-tzdata %define scriptdir %_libdir/tcl -MAKE='make %{?_smp_mflags} - TCL_LIBRARY="%scriptdir/tcl%TCL_MINOR" +make %{?_smp_mflags} \ + PACKAGE_DIR=%_libdir/tcl \ + TCL_LIBRARY="%scriptdir/tcl%TCL_MINOR" \ TCL_PACKAGE_PATH="%_libdir/tcl %_datadir/tcl" -%ifnarch hppa - CFLAGS="%optflags $PFLAGS" -%else - CFLAGS="%optflags $PFLAGS -DTCL_NO_STACK_CHECK=1" -%endif - LDFLAGS_OPTIMIZE="%optflags $PFLAGS" - SHLIB_LD="%__cc -shared %optflags $PFLAGS"' -%ifnarch %sparc -# Build with instrumentation for profiling -PFLAGS="%{?cflags_profile_generate}" -%endif -eval $MAKE + +%check # Some of the regressioin tests write to $HOME, so better redirect them mkdir home export HOME=$PWD/home @@ -110,16 +103,9 @@ mathop-25.14 EOF %ifnarch %arm -eval $MAKE test 2>&1 | tee testresults +make test 2>&1 | tee testresults grep FAILED testresults | grep -Fqvwf known-failures && exit 1 %endif -# If we don't do profile based optimisation, we are done at this point. -if test -n "$PFLAGS"; then - # Rebuild and use the profiling results - make clean - PFLAGS="%cflags_profile_feedback" - eval $MAKE -fi %install make -C unix install install-private-headers \ @@ -146,6 +132,8 @@ %_libdir/lib*.so %_datadir/tcl %scriptdir +%exclude %scriptdir/*/*.a +%exclude %scriptdir/*/*Config.sh %exclude %scriptdir/*/tclAppInit.c %config /etc/rpm/macros.tcl @@ -154,7 +142,10 @@ %doc %_mandir/man3/* %_includedir/* %scriptdir/*/tclAppInit.c -%_libdir/*.a -%_libdir/tclConfig.sh +%attr(0644,root,root) %_libdir/*.a +%attr(0644,root,root) %scriptdir/*/*.a +%scriptdir/*/*Config.sh +%_libdir/*Config.sh +%_libdir/pkgconfig/* %changelog ++++++ tcl8.5.12-src.tar.gz -> tcl8.6.0-src.tar.gz ++++++ /work/SRC/openSUSE:Factory/tcl/tcl8.5.12-src.tar.gz /work/SRC/openSUSE:Factory/.tcl.new/tcl8.6.0-src.tar.gz differ: char 5, line 1 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
