head 1.16; access; symbols pkgsrc-2013Q2:1.16.0.10 pkgsrc-2013Q2-base:1.16 pkgsrc-2012Q4:1.16.0.8 pkgsrc-2012Q4-base:1.16 pkgsrc-2011Q4:1.16.0.6 pkgsrc-2011Q4-base:1.16 pkgsrc-2011Q2:1.16.0.4 pkgsrc-2011Q2-base:1.16 pkgsrc-2009Q4:1.16.0.2 pkgsrc-2009Q4-base:1.16 pkgsrc-2009Q3:1.15.0.12 pkgsrc-2009Q3-base:1.15 pkgsrc-2009Q2:1.15.0.10 pkgsrc-2009Q2-base:1.15 pkgsrc-2009Q1:1.15.0.8 pkgsrc-2009Q1-base:1.15 pkgsrc-2008Q4:1.15.0.6 pkgsrc-2008Q4-base:1.15 pkgsrc-2008Q3:1.15.0.4 pkgsrc-2008Q3-base:1.15 cube-native-xorg:1.15.0.2 cube-native-xorg-base:1.15 pkgsrc-2008Q2:1.14.0.18 pkgsrc-2008Q2-base:1.14 pkgsrc-2008Q1:1.14.0.16 pkgsrc-2008Q1-base:1.14 pkgsrc-2007Q4:1.14.0.14 pkgsrc-2007Q4-base:1.14 pkgsrc-2007Q3:1.14.0.12 pkgsrc-2007Q3-base:1.14 pkgsrc-2007Q2:1.14.0.10 pkgsrc-2007Q2-base:1.14 pkgsrc-2007Q1:1.14.0.8 pkgsrc-2007Q1-base:1.14 pkgsrc-2006Q4:1.14.0.6 pkgsrc-2006Q4-base:1.14 pkgsrc-2006Q3:1.14.0.4 pkgsrc-2006Q3-base:1.14 pkgsrc-2006Q2:1.14.0.2 pkgsrc-2006Q2-base:1.14 pkgsrc-2006Q1:1.13.0.2 pkgsrc-2006Q1-base:1.13 pkgsrc-2005Q4:1.11.0.2 pkgsrc-2005Q4-base:1.11 pkgsrc-2005Q3:1.8.0.12 pkgsrc-2005Q3-base:1.8 pkgsrc-2005Q2:1.8.0.10 pkgsrc-2005Q2-base:1.8 pkgsrc-2005Q1:1.8.0.8 pkgsrc-2005Q1-base:1.8 pkgsrc-2004Q4:1.8.0.6 pkgsrc-2004Q4-base:1.8 pkgsrc-2004Q3:1.8.0.4 pkgsrc-2004Q3-base:1.8 pkgsrc-2004Q2:1.8.0.2 pkgsrc-2004Q2-base:1.8 pkgsrc-2004Q1:1.7.0.2 pkgsrc-2004Q1-base:1.7 pkgsrc-2003Q4:1.6.0.4 pkgsrc-2003Q4-base:1.6 netbsd-1-6-1:1.6.0.2 netbsd-1-6-1-base:1.6 buildlink2-base:1.5 netbsd-1-4-PATCH002:1.3 comdex-fall-1999:1.2 netbsd-1-4-PATCH001:1.1; locks; strict; comment @# @; 1.16 date 2009.12.24.19.25.04; author adam; state dead; branches; next 1.15; 1.15 date 2008.08.31.12.33.53; author markd; state Exp; branches; next 1.14; 1.14 date 2006.06.13.12.28.09; author markd; state dead; branches 1.14.18.1; next 1.13; 1.13 date 2006.02.26.11.58.25; author markd; state Exp; branches; next 1.12; 1.12 date 2005.12.29.23.23.53; author markd; state dead; branches; next 1.11; 1.11 date 2005.12.19.12.51.50; author markd; state Exp; branches; next 1.10; 1.10 date 2005.12.11.14.37.12; author markd; state dead; branches; next 1.9; 1.9 date 2005.12.01.23.11.27; author joerg; state Exp; branches; next 1.8; 1.8 date 2004.05.07.22.47.26; author markd; state dead; branches; next 1.7; 1.7 date 2003.12.03.12.05.19; author markd; state Exp; branches; next 1.6; 1.6 date 2002.12.10.11.58.12; author markd; state Exp; branches; next 1.5; 1.5 date 2000.08.11.23.02.39; author jlam; state dead; branches; next 1.4; 1.4 date 2000.04.19.15.30.06; author jlam; state Exp; branches; next 1.3; 1.3 date 2000.01.12.22.05.33; author rh; state Exp; branches; next 1.2; 1.2 date 99.08.26.23.52.22; author jlam; state Exp; branches; next 1.1; 1.1 date 99.05.25.23.51.12; author jlam; state Exp; branches; next ; 1.14.18.1 date 2008.09.02.19.39.45; author tron; state Exp; branches; next ; desc @@ 1.16 log @patch-ae is not needed any more @ text @$NetBSD: patch-ae,v 1.15 2008/08/31 12:33:53 markd Exp $ From SVN revision r46461 --- src/scripts/javareconf.orig 2008-03-26 01:26:44.000000000 +1300 +++ src/scripts/javareconf @@@@ -125,16 +125,28 @@@@ fi javac_works='not present' if test -n "$JAVAC"; then javac_works='not functional' - rm -rf /tmp/A.java /tmp/A.class - echo "public class A { }" > /tmp/A.java - if test -e /tmp/A.java; then - if "${JAVAC}" /tmp/A.java >/dev/null; then - if test -e /tmp/A.class; then +# tempdir=`mktemp -d` + + : ${TMPDIR=/tmp} + { tempdir=`(mktemp -d -q "${TMPDIR}/RJRECONF.XXXXXX") 2>/dev/null` \ + && test -n "${tempdir}" && test -d "${tempdir}" ; } || + { test -n "${RANDOM}" && tempdir=${TMPDIR}/RJRECONF$$-${RANDOM} \ + && (mkdir "${tempdir}") ; } || + { tempdir=${TMPDIR}/RJRECONF.$$-`date +%m%d%H%M%S` \ + && (mkdir "${tempdir}"); } || + { tempdir=${TMPDIR}/RJRECONF.$$ && (mkdir "${tempdir}") ; } || + (error "cannot create temporary directory" && exit 1) + + echo "public class A { }" > ${tempdir}/A.java + if test -e ${tempdir}/A.java; then + if "${JAVAC}" ${tempdir}/A.java >/dev/null; then + if test -e ${tempdir}/A.class; then javac_works=yes fi fi fi - rm -rf /tmp/A.java /tmp/A.class + rm -rf ${tempdir} + fi if test "${javac_works}" = yes; then echo "Java compiler : ${JAVAC}" @ 1.15 log @Fix for http://secunia.com/advisories/31647/ from R svn. @ text @d1 1 a1 1 $NetBSD$ @ 1.14 log @Update to R 2.3.1 This version contains several minor fixups and removes a couple of bad bugs such as NA-handling of mean() for integer vectors. Changes 2.3.0 This version contains several changes and additions, mostly incremental. @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.13 2006/02/26 11:58:25 markd Exp $ d3 39 a41 22 --- src/nmath/log1p.c.orig 2005-12-06 12:00:17.000000000 +1300 +++ src/nmath/log1p.c @@@@ -98,16 +98,18 @@@@ double log1p(double x) -.33410026677731010351377066666666e-30, +.63533936180236187354180266666666e-31, }; - const static double xmin = -1 + sqrt(DBL_EPSILON);/*was sqrt(d1mach(4)); */ #ifdef NOMORE_FOR_THREADS static int nlnrel = 0; + static double xmin = 0.0; + if (xmin == 0.0) xmin = -1 + sqrt(DBL_EPSILON);/*was sqrt(d1mach(4)); */ if (nlnrel == 0) {/* initialize chebychev coefficients */ nlnrel = chebyshev_init(alnrcs, 43, DBL_EPSILON/20);/*was .1*d1mach(3)*/ } #else # define nlnrel 22 + const static double xmin = -0.999999985; /* 22: for IEEE double precision where DBL_EPSILON = 2.22044604925031e-16 */ #endif @ 1.14.18.1 log @Pullup ticket #2513 - requested by markd R: security patch Revisions pulled up: - math/R/Makefile 1.99 - math/R/distinfo 1.39 - math/R/patches/patch-ae 1.15 --- Module Name: pkgsrc Committed By: markd Date: Sun Aug 31 12:33:53 UTC 2008 Modified Files: pkgsrc/math/R: Makefile distinfo Added Files: pkgsrc/math/R/patches: patch-ae Log Message: Fix for http://secunia.com/advisories/31647/ from R svn. @ text @d1 1 a1 1 $NetBSD$ d3 22 a24 39 From SVN revision r46461 --- src/scripts/javareconf.orig 2008-03-26 01:26:44.000000000 +1300 +++ src/scripts/javareconf @@@@ -125,16 +125,28 @@@@ fi javac_works='not present' if test -n "$JAVAC"; then javac_works='not functional' - rm -rf /tmp/A.java /tmp/A.class - echo "public class A { }" > /tmp/A.java - if test -e /tmp/A.java; then - if "${JAVAC}" /tmp/A.java >/dev/null; then - if test -e /tmp/A.class; then +# tempdir=`mktemp -d` + + : ${TMPDIR=/tmp} + { tempdir=`(mktemp -d -q "${TMPDIR}/RJRECONF.XXXXXX") 2>/dev/null` \ + && test -n "${tempdir}" && test -d "${tempdir}" ; } || + { test -n "${RANDOM}" && tempdir=${TMPDIR}/RJRECONF$$-${RANDOM} \ + && (mkdir "${tempdir}") ; } || + { tempdir=${TMPDIR}/RJRECONF.$$-`date +%m%d%H%M%S` \ + && (mkdir "${tempdir}"); } || + { tempdir=${TMPDIR}/RJRECONF.$$ && (mkdir "${tempdir}") ; } || + (error "cannot create temporary directory" && exit 1) + + echo "public class A { }" > ${tempdir}/A.java + if test -e ${tempdir}/A.java; then + if "${JAVAC}" ${tempdir}/A.java >/dev/null; then + if test -e ${tempdir}/A.class; then javac_works=yes fi fi fi - rm -rf /tmp/A.java /tmp/A.class + rm -rf ${tempdir} + fi if test "${javac_works}" = yes; then echo "Java compiler : ${JAVAC}" @ 1.13 log @Patch from R's svn trunk. Should fix build on NetBSD 1.6.2. @ text @d1 1 a1 1 $NetBSD$ @ 1.12 log @Update R to 2.2.1 USER-VISIBLE CHANGES o options("expressions") has been reduced to 1000: the limit of 5000 introduced in 2.1.0 was liable to give crashes from C stack overflow. NEW FEATURES o Use of 'pch' (e.g. in points) in the symbol font 5 is now interpreted in the single-byte encoding used by that font. Similarly, strwidth now recognizes that font 5 has a different encoding from that of the locale. (These are likely to affect the answer only in MBCS locales such as UTF-8.) o The URW font metrics have been updated to versions from late 2002 which cover more glyphs, including Cyrillic. o New postscript encodings for CP1250 (Windows East European), ISO Latin-7 (8859-13, Latvian, Lithuanian and Maori), Cyrillic (8859-5), KOI8-R, KOI8-U and CP1251. o configure has more support for the Intel and Portland Group compilers on ix86 and x86_64 Linux. o R CMD INSTALL will clean up if interrupted (e.g. by ctrl-C from the keyboard). o There is now a comprehensive French translation of the messages, thanks to Philippe Grosjean. DEPRECATED & DEFUNCT o The undocumented use of atan() with two arguments is deprecated: instead use atan2() (as documented). o The 'vfont' argument of axis() and mtext() is deprecated (it currently warns and does nothing). o The function mauchley.test() is deprecated (was a misspelling) and replaced by mauchly.test() Many BUG FIXES @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.11 2005/12/19 12:51:50 markd Exp $ d3 1 a3 1 --- src/nmath/log1p.c.orig 2005-07-28 08:10:05.000000000 +1200 d5 1 a5 1 @@@@ -98,16 +98,17 @@@@ double log1p(double x) d9 1 a9 1 - const static double xmin = -1 + sqrt(1/DBL_EPSILON);/*was sqrt(d1mach(4)); */ a14 1 - if (nlnrel == 0) {/* initialize chebychev coefficients */ d16 1 a16 1 + if (nlnrel == 0) /* initialize chebychev coefficients */ d18 1 a18 1 - } @ 1.11 log @avoid computed static constant (which was in any case the wrong value) in log1p(). From R svn. Should fix build on NetBSD-1.6.2. @ text @d1 1 a1 1 $NetBSD$ @ 1.10 log @Update R to 2.2.0 Changes: This version contains several changes and additions, mostly incremental. @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.9 2005/12/01 23:11:27 joerg Exp $ d3 21 a23 9 --- src/main/pcre.c.orig 2005-12-01 22:44:25.000000000 +0000 +++ src/main/pcre.c @@@@ -37,7 +37,7 @@@@ #ifdef HAVE_ALLOCA_H #include #endif -#if !HAVE_DECL_ALLOCA && !defined(__FreeBSD__) +#if !HAVE_DECL_ALLOCA && !defined(__FreeBSD__) && !defined(__DragonFly__) extern char *alloca(size_t); @ 1.9 log @- correctly depend on devel/gettext-lib, bump revision for this - this uses libtool, tell the framework so - don't declare alloca on DragonFly, it conflicts with system headers - patch libtool.m4 fragment for DrgaonFly @ text @d1 1 a1 1 $NetBSD$ @ 1.8 log @R assumes it can append to the DESCRIPTION files of each R package while building even though it uses INSTALL_DATA on them so set SHAREMODE=644 rather than have to patch an ever increasing number of files. Idea from Julio M. Merino Vidal. @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.7 2003/12/03 12:05:19 markd Exp $ d3 11 a13 19 --- src/library/base/Makefile.in.orig 2003-09-21 20:13:04.000000000 +1200 +++ src/library/base/Makefile.in @@@@ -33,14 +33,14 @@@@ all: Makefile DESCRIPTION fi; \ done @@if test -f DESCRIPTION; then \ - $(INSTALL_DATA) DESCRIPTION $(top_builddir)/library/$(pkg); \ (tmp="Built: R $(VERSION); "; \ if test -d $(srcdir)/src; then \ tmp="$${tmp}$(R_PLATFORM)"; \ fi; \ tmp="$${tmp}; `date`; $(R_OSTYPE)"; \ echo "$${tmp}") \ - >> $(top_builddir)/library/$(pkg)/DESCRIPTION; \ + >> DESCRIPTION; \ + $(INSTALL_DATA) DESCRIPTION $(top_builddir)/library/$(pkg); \ fi @@$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/data @@for f in `ls -d $(srcdir)/data/* | sed '/CVS/d'`; do \ @ 1.7 log @Update R to 1.8.1. Changes since 1.6.2 Many new features. Language changes. Additional standard package 'mle'. Some old features deprecated or defunct. Many many bug fixes. Update to 1.8.0 from Ray Brownrigg in private communication, cleaned up and updated to 1.8.1 by me. @ text @d1 1 a1 1 $NetBSD$ @ 1.6 log @Update R to version 1.6.1. Pkgsrc changes: Now builds the libR.so and provides a buildlink2.mk for packages that want to use it. From suggestions from Kent Polk. Recommended library set is now included in the base package. Changes: CHANGES IN R VERSION 1.6.1 NEW FEATURES o Added a few "trivial and obviously missing" functions to tcltk: tkchooseDirectory, tkpopup, tkdialog, tkread o barplot() has a new argument `axis.lty', which if set to 1 allows the pre-1.6.0 behaviour of plotting the axis and tick marks for the categorical axis. (This was apparently not intentional, but axis() used to ignore lty=0.) The argument `border' is no longer ".NotYetUsed". CHANGES IN R VERSION 1.6.0 USER-VISIBLE CHANGES o The default colour palette now has "grey" instead of "white" in location 8. See palette(). o grid(nx) behaves differently (but the same as in R versions <= 0.64). NEW FEATURES o Preparations for name space support: o The objects created in the methods package to represent classes, generic functions, method definitions, and inheritance relations now themselves belong to true classes. In particular, the "classRepresentation" objects follow the description in "Programming with Data" (section 7.6). o Other additions and changes to the methods package: o New methods ([[, print, str) and extended plot() method (incl. logical `horiz') for "dendrogram" class. o sprintf() now checks the agreement between formats and object types, and handles special values (NA, Inf, ...) correctly. o chol() now uses a tolerance for non-positive-definiteness and so should give more consistent results across platforms. o New function agrep() for approximate (fuzzy) string matching. o help.search() can now use both approximate (fuzzy) and regular expression matching. By default, if the pattern to be matched consists of only alphanumeric characters, whitespace or a dash, approximate matching is used. o axis() has three new optional arguments `col', `lty', and `lwd' all for drawing the axis line and tick marks. o Function vcov() (formerly in MASS), a generic function to return the variance-covariance matrix of the parameter estimates of a fitted model. o duplicated() and unique() have methods for matrices and arrays (based on ideas from Jens Oehlschlgel). o Internally memory sizes and counts of cons cells are now stored in unsigned longs. This allows memory limits to be set and objects created in the range 2-4Gb on 32-bit platforms, and allows 64-bit platforms to use much larger amounts of memory. o Command-line flags to set memory can now use the suffix `G' for gigabytes. The setting of maximum vsize is now only limited by the platform's address space. o All warning and error messages are truncated to a length set by options(warning.length=), defaulting to 1000. (Previously most (but not quite all) were truncated at 8192 characters.) o [dpqr]gamma() check for shape parameter > 0. o as.POSIX[cl]t can now convert logical NAs. o All installed packages (even those shipped with R) are given a `Built' field in the DESCRIPTION file. o as.data.frame() now coerces logical matrices into logical columns (rather than factors). o [[<-.data.frame no longer coerces character replacement values to factor. This is consistent with using $ to replace and with S4. o library() attempts to detect improperly installed packages, so as from this version an installed package must have a DESCRIPTION file and that file must have been stamped with a `Built:' line (which was introduced in 1.2.0). Under Unix-alikes, the platform is checked against that used for installation. o print.factor() has new arguments `max.levels' (with a smart default) and `width'. print.ordered() is no longer needed. o RNGkind() has an additional option for normal random generators: "Inversion". o data.frame() recycles factors and "AsIs" objects as well as atomic vectors. o rect() accepts additional graphics parameters through a ... argument (in the same way as polygon). o strwidth/strheight() now coerce their first argument in exactly the same way text() does, so a wider range of inputs is allowed. o prompt()'s default and data.frame methods have a new 3rd argument `name' allowing them to used more easily in scripts and loops. o rgb() has a new `maxColorValue' argument, allowing r,g,b in [0,M], particularly in {0:255}, efficiently and non-error-prone. o summaryRprof() provides the functionality of R CMD Rprof in R code, though more slowly. o pdf() now uses PDF not R code for clipping, which ensures that partially visible text strings are (partially) shown. o Each R session uses a per-session temporary directory which is removed at normal termination. The directory name is given by the tempdir() function, and filenames returned by tempfile() will be within that directory. o help.start() on Unix now uses a .R subdirectory of the per-session temporary directory and not ~/.R. A side effect is that ~/.R is now never deleted by R. o cbind/rbind() used to ignore all zero-length vectors, an undocumented quirk for S-compatibility. This caused problems when combining zero-extent matrices and zero-length vectors, and now zero-length vectors are ignored unless the result would have zero rows/columns. o plot.spec(x) now also works for other x than AR and Pgram results. o New functions La.chol() and La.chol2inv() for Cholesky decomposition and inverse of positive definite matrices using Lapack. o Changes to the tcltk package o New function axTicks() returning tick mark locations like axis(). o grid() has a more sensible default behavior. Tick axis alignment only happens when no numbers of grid cells are specified. New arguments lwd and equilogs; nx/ny = NA for not drawing, see ?grid. o installed.packages() has a new argument `priority'. o termplot() uses factor levels rather than 1,2,3... for x-axis. o The trace() function has been robustified and a new function tracingState() added to turn tracing temporarily on and off. o New cophenetic() in "mva" as utility for hierarchical clustering. o p.adjust() has two new methods, 'Hommel' and 'FDR', contributed by Gordon Smyth . o stars() now has add and plot arguments. and lots of bug fixes. @ text @d3 4 a6 4 --- src/library/base/Makefile.in.orig Mon Jul 22 00:32:05 2002 +++ src/library/base/Makefile.in Mon Dec 9 23:58:45 2002 @@@@ -29,10 +29,10 @@@@ fi; \ d8 11 a18 7 @@if test -f $(top_builddir)/$(subdir)/DESCRIPTION; then \ + echo "Built: R" @@VERSION@@\; @@R_PLATFORM@@\; `date` >> \ + $(top_builddir)/$(subdir)/DESCRIPTION; \ $(INSTALL_DATA) $(top_builddir)/$(subdir)/DESCRIPTION \ $(top_builddir)/library/$(pkg); \ - echo "Built: R" @@VERSION@@\; @@R_PLATFORM@@\; `date` >> \ - $(top_builddir)/library/$(pkg)/DESCRIPTION; \ @ 1.5 log @Update R to 1.1.0. Many additions and bug-fixes from 1.1.0 make this a more usable replacement for S/S-PLUS. @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.4 2000/04/19 15:30:06 jlam Exp $ d3 4 a6 8 --- Makefile.in.orig Mon Feb 21 02:03:26 2000 +++ Makefile.in Mon Apr 17 16:11:47 2000 @@@@ -74,7 +74,7 @@@@ @@for f in `ls bin/* | grep -v '^bin/R\**$$' \ | grep -v '^bin/R.X11\**$$' \ | grep -v '^bin/R.GNOME\**$$'`; do \ - $(INSTALL) $${f} $(rhome)/bin; \ + $(INSTALL_SCRIPT) $${f} $(rhome)/bin; \ d8 10 a17 2 @@echo "installing headers ..." @@for f in include/*.h; do \ @ 1.4 log @Update to R-1.0.1. Move R library tree to ${PREFIX}/lib (a la perl5) since it contains loadable shared object files that are platform-specific. Lots of bug-fixes and additions ... it's getting closer to a usable replacement for S-PLUS. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Update R to 0.90.1. Changes are tons of changes and bugfixes, too numerous to list here (see http://cran.r-project.org/src/base/NEWS for more information). @ text @d3 3 a5 12 --- Makefile.in.orig Wed Jan 12 20:01:29 2000 +++ Makefile.in Wed Jan 12 20:07:14 2000 @@@@ -51,7 +51,7 @@@@ $(INSTALL_DATA) $${f} $(rhome); \ done) @@echo "Installing executables ..." - @@$(INSTALL_PROGRAM) bin/R.X11 $(rhome)/bin + @@$(INSTALL_PROGRAM) bin/R.X11 $(bindir) @@if test -x bin/R.gnome; then \ $(INSTALL_PROGRAM) bin/R.gnome $(rhome)/bin; \ fi @@@@ -61,10 +61,10 @@@@ d7 2 a8 2 | grep -v '^bin/R.X11\**$$' \ | grep -v '^bin/R.gnome\**$$'`; do \ d12 1 a12 5 @@for f in Rd2txt Rdconv Rdindex Sd2Rd; do \ - $(INSTALL) bin/$${f} $(bindir); \ + $(INSTALL_OWN_SCRIPT) bin/$${f} $(bindir); \ done @@echo "Installing headers ..." @ 1.2 log @Update R to 0.64.2. Changes from 0.64.1: NEW FEATURES o new target for R installation testing : make strict-tests. o symnum(x) now nicely codes logical x. o convolve() has a new type = c("circular", "open", "filter") argument allowing more than the only circular convolution. o par(xpd) now has three settings: FALSE (clip to plot region), TRUE (clip to figure region), or NA (clip to device region). o zapsmall(x) works for complex x. o new global variable R.version.string (for plots & reports). Deprecated version & Version for new R.version & R.Version. o R CMD Rd2dvi has builtin "Usage" help and works for multiple files. Useful for automatic reference manual of a package. (doc/manual/lib2tex is more efficient for installed packages, however). BUG FIXES o power() is now fully implemented and documented. o A couple of problems with group generic operations. o A bug which meant that it was not possible to add elements to zero length lists in the obvious way has been fixed. x <- list(); x[[1]] <- 10 x <- list(); x[["a"]] <- 11 both now work. o save.image() ignored dot-names. (esp. .First()) o lab= argument to plot() misinterpreted by axis() via ... passing o NULL labels in text() caused segfault o matrix(f,...) with f a factor now coerces to character o documentation errors for substitute and is.vector, minor fixups for trig and nlm o Background colours are set properly on X11 devices with colortype="pseudo": sometimes they were not allocated separately. o C() works (again?) for a single argument. o is.na() didn't work properly for "list" arguments. o symnum() sometimes failed with arrays of rank >= 3. o in some cases one could get nonblack color instead of black on 2nd x11() window. o influence.measures(.) $ is.influential was wrong on the cooks.distance. o printing of complex NaN/Inf was wrong as well. o printing of complex named vectors had a wrong initial space. o allow trailing space in character->numeric coercion o library() gave wrong "masked" warnings in some cases. o par(xpd) semantics were not compatible with S. o rect() output was not clipped in PostScript. o par(pin=c(width, height)) was behaving as par(pin=c(width, width)). o Non-blank separated data files didn't have their 1st field handled properly. o "aux" directory moved to "tools" to avoid difficulties on Windows. o structure() clobbered factors with missing levels. o pmatch() misbehaved on duplicate matches. o R CMD Rd2dvi works again. o logical binops tried to set time series parameters before dimensions. o upped the BUFSIZE in model.c (NOT proper long-term solution). o dput(), dump() and deparse() now always use DBL_DIG (=15) digits for numeric formatting. o chull() now works for vertical borders, such as in chull(c(1,1,2),3:1). @ text @d3 3 a5 3 --- Makefile.in.orig Mon Jun 28 09:46:08 1999 +++ Makefile.in Thu Aug 26 18:41:20 1999 @@@@ -49,16 +49,20 @@@@ d9 6 a14 8 - @@$(INSTALL_PROGRAM) bin/R.binary $(rhome)/bin + @@$(INSTALL_PROGRAM) bin/R.binary $(bindir) + @@if [ -f bin/R.gnome ]; then \ + $(INSTALL_PROGRAM) bin/R.gnome $(bindir); \ + fi @@cat bin/R | sed "s@@RHOME=.*@@RHOME=$(rhome)@@" > $(rhome)/bin/R @@cat bin/R | sed "s@@RHOME=.*@@RHOME=$(rhome)@@" > $(bindir)/R @@chmod 755 $(bindir)/R $(rhome)/bin/R d16 2 a17 2 + | grep -v '^bin/R.gnome\**$$' \ | grep -v '^bin/R.binary\**$$'`; do \ @ 1.1 log @Oops...still learning CVS. Forgot to add these files before the commit. @ text @d3 3 a5 3 --- Makefile.in.orig Fri Apr 16 09:25:20 1999 +++ Makefile.in Tue May 25 02:48:46 1999 @@@@ -49,15 +49,19 @@@@ d17 3 a19 1 - @@for f in `ls bin/* | grep -v '^bin/\(R\|R.binary\)\**$$'`; do \ a20 2 + @@for f in \ + `ls bin/* | grep -v '^bin/\(R\|R.binary\|R.gnome\)\**$$'`; do \ @