diff options
author | markd <markd@pkgsrc.org> | 2004-04-27 11:24:31 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2004-04-27 11:24:31 +0000 |
commit | 01318928ff7b1fe2387316cfc4165c9b2fc18732 (patch) | |
tree | a58f52f5e390dccc9f4e8c261e04120234eb608e /math/R/patches/patch-aq | |
parent | 03295665141d6740c74cee0c8c3c17ccc96504cc (diff) | |
download | pkgsrc-01318928ff7b1fe2387316cfc4165c9b2fc18732.tar.gz |
Update R to 1.9.0 and buildlink3ify
USER-VISIBLE CHANGES
o Underscore '_' is now allowed in syntactically valid names, and
make.names() no longer changes underscores. Very old code
that makes use of underscore for assignment may now give
confusing error messages.
o Package 'base' has been split into packages 'base', 'graphics',
'stats' and 'utils'. All four are loaded in a default
installation, but the separation allows a 'lean and mean'
version of R to be used for tasks such as building indices.
Packages ctest, eda, modreg, mva, nls, stepfun and ts have been
merged into stats, and lqs has been returned to MASS. In all
cases a stub has been left that will issue a warning and ensure
that the appropriate new home is loaded. All the time series
datasets have been moved to package stats. Sweave has been
moved to utils.
Package mle has been moved to stats4 which will become the
central place for statistical S4 classes and methods
distributed with base R. Package mle remains as a stub.
Users may notice that code in .Rprofile is run with only the
new base loaded and so functions may now not be found. For
example, ps.options(horizontal = TRUE) should be preceded by
library(graphics) or called as graphics::ps.options or,
better, set as a hook -- see ?setHook.
o There has been a concerted effort to speed up the startup of
an R session: it now takes about 2/3rds of the time of 1.8.1.
o A warning is issued at startup in a UTF-8 locale, as currently R
only supports single-byte encodings.
plus many new features and bug fixes.
Diffstat (limited to 'math/R/patches/patch-aq')
-rw-r--r-- | math/R/patches/patch-aq | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/math/R/patches/patch-aq b/math/R/patches/patch-aq index 81a1ac2d514..4b151dc8a2e 100644 --- a/math/R/patches/patch-aq +++ b/math/R/patches/patch-aq @@ -1,10 +1,10 @@ -$NetBSD: patch-aq,v 1.2 2003/12/03 12:05:19 markd Exp $ +$NetBSD: patch-aq,v 1.3 2004/04/27 11:24:31 markd Exp $ ---- src/library/ts/Makefile.in.orig 2003-09-21 20:13:09.000000000 +1200 +--- src/library/ts/Makefile.in.orig 2004-02-19 08:06:14.000000000 +1300 +++ src/library/ts/Makefile.in -@@ -29,14 +29,14 @@ all: Makefile DESCRIPTION - fi; \ - done +@@ -23,14 +23,14 @@ all: Makefile DESCRIPTION + $(SHELL) $(top_srcdir)/tools/move-if-change $${f} \ + $(top_builddir)/library/$(pkg)/R/$(pkg)) @if test -f DESCRIPTION; then \ - $(INSTALL_DATA) DESCRIPTION $(top_builddir)/library/$(pkg); \ (tmp="Built: R $(VERSION); "; \ @@ -17,5 +17,5 @@ $NetBSD: patch-aq,v 1.2 2003/12/03 12:05:19 markd Exp $ + >> DESCRIPTION; \ + $(INSTALL_DATA) DESCRIPTION $(top_builddir)/library/$(pkg); \ fi - @if test -d $(srcdir)/data; then \ - $(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/data; \ + + Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |