From f3557ad402196c74082003518d1ce79bf0f4a768 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Thu, 1 Jan 2004 16:14:30 +0000 Subject: [PATCH] * Finalize release 1.1.6. --- ChangeLog | 4 ++++ Makefile.devel | 24 +++++++++++++++++++++--- NEWS | 13 ++++++++++--- 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 87d8e0f..5fb1b22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-01-01 Richard B. Kreckel + + * Version 1.1.6 released. + 2004-01-01 Richard B. Kreckel * include/cln/univpoly.h, include/cln/univpoly_complex.h, diff --git a/Makefile.devel b/Makefile.devel index 74e9e7f..6081c7b 100644 --- a/Makefile.devel +++ b/Makefile.devel @@ -7,11 +7,14 @@ SHELL = /bin/sh MAKE = make -# GNU tar together with GNU bzip2. Excellent performance. +# GNU tar together with GNU bzip2. Slow, but excellent compresion rates. PACK = tar PACKOPT = cvfhj PACKEXT = .tar.bz2 +EXCLUDE=--exclude CVS --exclude \*.o --exclude *.lo --exclude .cvsignore \ + --exclude \*~ --exclude .\#\* --exclude .libs \ + --exclude ${AUTOCONF_CACHE} all: configures documentation @@ -20,18 +23,33 @@ CONFIGURES = configure CONFIGURES_IN = configure.ac AUTOCONF_FILES = autoconf/aclocal.m4 +AUTOCONF = autoconf +AUTOCONF_CACHE = autom4te.cache configures: ${CONFIGURES} configure: configure.ac ${AUTOCONF_FILES} - autoconf --include=autoconf + ${AUTOCONF} --include=autoconf +# This is the upstream location for most of the .m4 files: CLISP_M4DIR = ~/contrib/clisp/src/m4 autoconf/aclocal.m4: ${wildcard m4/*.m4} aclocal -I m4 -I ${CLISP_M4DIR} --output=autoconf/aclocal.m4 -# Syntaxcheck +# Release: +SRC_DIST=/tmp/cln-${VER}${PACKEXT} +VER=${shell echo `grep "CL_VERSION " include/cln/version.h |sed 's/^.*CL_VERSION \(.*\)$$/\1/'`} + +src-distrib: include/cln/version.h force + ${MAKE} -f Makefile.devel src--distrib TOPDIR=cln-${VER} + +src--distrib: force + ln -s . ${TOPDIR} + ${PACK} ${PACKOPT} ${SRC_DIST} ${EXCLUDE} --exclude ${TOPDIR}/${TOPDIR} ${TOPDIR} + rm -f ${TOPDIR} + +# Syntaxcheck: check-configures: ${CONFIGURES} set -e; for f in ${CONFIGURES}; do bash -x -n $$f; done diff --git a/NEWS b/NEWS index 87fb466..52639dd 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,16 @@ -2003-12-xy, version 1.1.6 +2004-01-01, version 1.1.6 + +Functional changes +------------------ + +* New function + `sintL ldegree(const cl_UP& x)'. + (Suggested by Munagala Ramanath.) Implementation changes ---------------------- -* Fix a bug in polynomial subtraction. +* Fixed a bug in polynomial subtraction. (Reported by Munagala Ramanath.) Other changes @@ -13,7 +20,7 @@ Other changes * Updated infrastructure to autoconf-2.57. -* Fix compilation issues with GCC-3.4 and on Mac OSX. +* Fixed compilation issues with GCC-3.4 prereleases and on Mac OSX. 2002-05-28, version 1.1.5