Subject: CVS commit: pkgsrc
To: None <pkgsrc-changes@netbsd.org>
From: Jason Beegan <jtb@netbsd.org>
List: pkgsrc-changes
Date: 03/09/2001 02:32:17
Module Name:	pkgsrc
Committed By:	jtb
Date:		Fri Mar  9 00:32:17 UTC 2001

Modified Files:
	pkgsrc/math/tela: Makefile
	pkgsrc/math/tela/files: md5 patch-sum
	pkgsrc/math/tela/patches: patch-aa patch-ab patch-ad
	pkgsrc/math/tela/pkg: PLIST

Log Message:
Updated to tela-1.31.

Version 1.31 (Released 8 Mar 2001)
----------------------------------

USER-VISIBLE CHANGES

- copying an object array (see help voids) is now "deep" copy rather than "shallow" copy.
  This means that when an object array is assigned to another variable, a completely new
  copy is made (before, only the first array level was copied). Mostly this won't affect
  you at all because (1) you are using object arrays only if you are using voids() in some
  phase in your program, (2) if you are, then you are probably using only single-level
  object array. The old behaviour was simply stupid. Object arrays are a crude but working
  mechanism for using heterogeneous combined types in Tela; the only relevant function
  (in the present Tela version) is voids(), which acts as a constructor for such things.
  Thanks to Ch. Spiel for suggesting this change (object.C).
- quit() and exit() now accept input argument (the exit value) (std.ct)
- sort() function now accepts second input argument (user-defined comparison function) (std.ct)
  (old function still available as sort_old in case of problems).
- slight change in semantics of --shared option for telakka (telakka.in)
The above were contributed by Christoph Spiel <cspiel@hammersmith-consulting.com>

- added incomplete gamma and beta functions (specfun.t)
  (specfun.t not autoloaded, but after source("specfun.t") functions are available).
- added function polymul and added polyadd,polymul to autoload (poly.t,telainit.t)
- added function applyfilter (numerics.ct)
- added functionwise profiling option (tela -p) (tela.C,prg.C)

BUG FIXES

- doing dot product (**) of two zero-length integer vectors produced a LAPACK error message
  and Tela quit (la.ct)
- tree.C:DeleteObjects() accessed memory after it being freed, which however did not cause
  any problems in practice (unless using malloc debug libraries), but is anyway now fixed

INTERNAL CHANGES

- Some modernizations in configure script (e.g., now tries to link with
  libatlas by default instead of libblas if available) (configure.in)


To generate a diff of this commit:
cvs rdiff -r1.2 -r1.3 pkgsrc/math/tela/Makefile
cvs rdiff -r1.1.1.1 -r1.2 pkgsrc/math/tela/files/md5
cvs rdiff -r1.5 -r1.6 pkgsrc/math/tela/files/patch-sum
cvs rdiff -r1.1.1.1 -r1.2 pkgsrc/math/tela/patches/patch-aa \
    pkgsrc/math/tela/patches/patch-ab
cvs rdiff -r1.4 -r1.5 pkgsrc/math/tela/patches/patch-ad
cvs rdiff -r1.2 -r1.3 pkgsrc/math/tela/pkg/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.