File R-base.changes of Package R-base
-------------------------------------------------------------------
Fri Sep 27 13:20:39 UTC 2013 - detlef.steuer@gmx.de
- Removed outdated source file
-------------------------------------------------------------------
Wed Sep 25 14:01:26 UTC 2013 - detlef.steuer@gmx.de
- Upstream release 3.0.2
- Most important
CHANGES IN R 3.0.2:
NEW FEATURES:
* The NEWS files have been re-organized.
This file contains news for R >= 3.0.0: news for the 0.x.y, 1.x.y
and 2.x.y releases is in files NEWS.0, NEWS.1 and NEWS.2. The
latter files are now installed when R is installed. An HTML
version of news from 2.10.0 to 2.15.3 is available as
doc/html/NEWS.2.html.
* sum() for integer arguments now uses an integer accumulator of at
least 64 bits and so will be more accurate in the very rare case
that a cumulative sum exceeds 2^53 (necessarily summing more than
4 million elements).
* The example() and tools::Rd2ex() functions now have parameters to
allow them to ignore \dontrun markup in examples. (Suggested by
Peter Solymos.)
* str(x) is considerably faster for very large lists, or factors
with 100,000 levels, the latter as in PR#15337.
* col2rgb() now converts factors to character strings not integer
codes (suggested by Bryan Hanson).
* tail(warnings()) now works, via the new `[` method.
* There is now support for the LaTeX style file zi4.sty which has
in some distributions replaced inconsolata.sty.
* unlist(x) now typically returns all non-list xs unchanged, not
just the "vector" ones. Consequently, format(lst) now also works
when the list lst has non-vector elements.
* The tools::getVignetteInfo() function has been added to give
information about installed vignettes.
* New assertCondition(), etc. utilities in tools, useful for
testing.
* Profiling now records non-inlined calls from byte-compiled code
to BUILTIN functions.
* Various functions in stats and elsewhere that use non-standard
evaluation are now more careful to follow the namespace scoping
rules. E.g. stats::lm() can now find stats::model.frame() even
if stats is not on the search path or if some package defines a
function of that name.
* If an invalid/corrupt .Random.seed object is encountered in the
workspace it is ignored with a warning rather than giving an
error. (This allows R itself to rely on a working RNG, e.g. to
choose a random port.)
* seq() and seq.int() give more explicit error messages if called
with invalid (e.g. NaN) inputs.
* When parse() finds a syntax error, it now makes partial parse
information available up to the location of the error. (Request
of Reijo Sund.)
* Methods invoked by NextMethod() had a different dynamic parent to
the generic. This was causing trouble where S3 methods invoked
via lazy evaluation could lose track of their generic.
(PR#15267)
* Code for the negative binomial distribution now treats the case
size == 0 as a one-point distribution at zero.
* abbreviate() handles without warning non-ASCII input strings
which require no abbreviation.
* read.dcf() no longer has a limit of 8191 bytes per line. (Wish of
PR#15250.)
* formatC(x) no longer copies the class of x to the result, to
avoid misuse creating invalid objects as in PR#15303. A warning
is given if a class is discarded.
* Dataset npk has been copied from MASS to allow more tests to be
run without recommended packages being installed.
* The initialization of the regression coefficients for
non-degenerate differenced models in arima() has been changed and
in some examples avoids a local maximum. (PR#15396)
* termplot() now has an argument transform.x to control the display
of individual terms in the plot. (PR#15329)
* format() now supports digits = 0, to display nsmall decimal
places.
* There is a new read-only par() parameter called "page", which
returns a logical value indicating whether the next plot.new()
call will start a new page.
* Processing Sweave and Rd documents to PDF now renders backticks
and single quotes better in several instances, including in \code
and \samp expressions.
* utils::modifyList() gets a new argument keep.null allowing NULL
components in the replacement to be retained, instead of causing
corresponding components to be deleted.
* tools::pkgVignettes() gains argument check; if set to TRUE, it
will warn when it appears a vignette requests a non-existent
vignette engine.
-------------------------------------------------------------------
Mon Aug 26 14:19:31 UTC 2013 - schwab@suse.de
- tre.patch: Fix tre library for aarch64 where wchar_t is unsigned int
-------------------------------------------------------------------
Thu May 16 13:17:09 UTC 2013 - detlef.steuer@gmx.de
- Improved spec file: R-base-devel requires R-base
-------------------------------------------------------------------
Thu May 16 11:21:09 UTC 2013 - detlef.steuer@gmx.de
- Upstream release 3.0.1
- Most important
CHANGES IN R 3.0.1:
NEW FEATURES:
o chooseCRANmirror() and chooseBioCmirror() gain an ind argument
(like setRepositories()).
o mcparallel has a new argument mc.interactive which can modify the
interactive flag in the child process. The new default is FALSE
which makes child processes non-interactive by default (this
prevents lock-ups due to children waiting for interactive input).
o scan() now warns when end-of-file occurs within a quoted string.
o count.fields() is now consistent with scan() in its handling of
newlines in quoted strings. Instead of triggering an error, this
results in the current line receiving NA as the field count, with
the next line getting the total count of the two lines.
o The default method of image() will plot axes of the class of xlim
and ylim (and hence of x and y if there is a suitable range()
method). Based on a suggestion of Michael Sumner.
o load() now has a verbose argument for debugging support, to print
the names of objects just before loading them.
o When loading a serialized object encounters a reference to a
namespace which cannot be loaded, this is replaced by a reference
to the global environment, with a warning.
o pairs() gains a line.main option for title placement.
o The remaining instances in which serialization to a raw vector
was limited to 2GB have been unlimited on a 64-bit platform, and
in most cases serialization to a vector of more than 1GB will be
substantially faster.
- Improved spec file. Lots of commented out lines finally removed
-------------------------------------------------------------------
Wed Apr 10 07:26:36 UTC 2013 - detlef.steuer@gmx.de
- R-base.spec improved: now uses R-%{version}.tar.bz2 explicitly.
Mistake when version bumping to 3.0.0 corrected
-------------------------------------------------------------------
Wed Apr 3 18:39:35 UTC 2013 - detlef.steuer@gmx.de
- Upstream release 3.0.0
- News for package: some new translation files
- News upstream: /usr/lib/R/doc/NEWS.html
- Most important
CHANGES IN R 3.0.0:
SIGNIFICANT USER-VISIBLE CHANGES:
o Packages need to be (re-)installed under this version (3.0.0) of
R.
o There is a subtle change in behaviour for numeric index values
2^31 and larger. These never used to be legitimate and so were
treated as NA, sometimes with a warning. They are now legal for
long vectors so there is no longer a warning, and x[2^31] <- y
will now extend the vector on a 64-bit platform and give an error
on a 32-bit one.
o It is now possible for 64-bit builds to allocate amounts of
memory limited only by the OS. It may be wise to use OS
facilities (e.g. ulimit in a bash shell, limit in csh), to set
limits on overall memory consumption of an R process,
particularly in a multi-user environment. A number of packages
need a limit of at least 4GB of virtual memory to load.
64-bit Windows builds of R are by default limited in memory usage
to the amount of RAM installed: this limit can be changed by
command-line option --max-mem-size or setting environment
variable R_MAX_MEM_SIZE.
o Negative numbers for colours are consistently an error:
previously they were sometimes taken as transparent, sometimes
mapped into the current palette and sometimes an error.
-------------------------------------------------------------------
Mon Mar 18 14:38:57 UTC 2013 - schwab@suse.de
- Override LIBnn from %{_lib}
-------------------------------------------------------------------
Fri Mar 1 12:15:30 UTC 2013 - detlef.steuer@gmx.de
- There were a few new files in foreign and rpart.
Fixed now. Builds fine.
-------------------------------------------------------------------
Fri Mar 1 10:25:32 UTC 2013 - detlef.steuer@gmx.de
- Upstream release 2.15.3
- see, as usual, /usr/lib/R/doc/NEWS.html
- This is mostly a bugfix release and the final release for the
R-2.x.y series.
- Most important additions:
NEW FEATURES:
o lgamma(x) for very small x (in the denormalized range) is no
longer Inf with a warning.
o image() now sorts an unsorted breaks vector, with a warning.
o The internal methods for tar() and untar() do a slightly more
general job for 'ustar'-style handling of paths of more than 100
bytes.
o Packages compiler and parallel have been added to the reference
index (refman.pdf).
o untar(tar = "internal") has some support for pax headers as
produced by e.g. gnutar --posix (which seems prevalent on
OpenSUSE 12.2) or bsdtar --format pax, including long path and
link names.
o sQuote() and dQuote() now handle 0-length inputs. (Suggestion of
Ben Bolker.)
o summaryRprof() returns zero-row data frames rather than throw an
error if no events are recorded, for consistency.
o The included version of PCRE has been updated to 8.32.
o The tcltk namespace can now be re-loaded after unloading.
The Tcl/Tk event loop is inhibited in a forked child from package
parallel (as in e.g. mclapply()).
o parallel::makeCluster() recognizes the value random for the
environment variable R_PARALLEL_PORT: this chooses a random value
for the port and reduces the chance of conflicts when multiple
users start a cluster at the same time.
-------------------------------------------------------------------
Fri Oct 26 12:35:44 UTC 2012 - detlef.steuer@gmx.de
- Upstream release 2.15.2
- see, as usual, /usr/lib/R/doc/NEWS.html
- most relevant change for rpm are some added translation files
-------------------------------------------------------------------
Tue Jul 10 08:37:58 UTC 2012 - werner@suse.de
- Make it build with latest TeXLive 2012 with new package layout
-------------------------------------------------------------------
Fri Jun 22 14:22:25 UTC 2012 - detlef.steuer@gmx.de
- Fixed: R-base-2.15.1-48.1.x86_64.rpm: directories not owned by a package:
- /usr/lib64/R/share/locale/pl
- /usr/lib64/R/share/locale/pl/LC_MESSAGES
-------------------------------------------------------------------
Fri Jun 22 13:43:05 UTC 2012 - detlef.steuer@gmx.de
- one more forgotten file in polish translation ...
-------------------------------------------------------------------
Fri Jun 22 12:38:18 UTC 2012 - detlef.steuer@gmx.de
- spec file update to incorporate new polish translation
-------------------------------------------------------------------
Fri Jun 22 11:53:39 UTC 2012 - detlef.steuer@gmx.de
- Upstream bugfix only release 2.15.1
- see, as usual, /usr/lib/R/doc/NEWS.html
-------------------------------------------------------------------
Tue Apr 10 21:51:18 UTC 2012 - gregkh@opensuse.org
- make R-base-devel require R-base as some packages think this
dependancy is already there (i.e. some KDE packages).
-------------------------------------------------------------------
Fri Mar 30 09:26:11 UTC 2012 - detlef.steuer@gmx.de
- Upstream updated to 2.15.0
- see, as usual, /usr/lib/R/doc/NEWS.html
-------------------------------------------------------------------
Wed Feb 29 18:00:59 UTC 2012 - detlef.steuer@gmx.de
- upstream minor version increase to 2.14.2
- see, as usual, /usr/lib/R/doc/NEWS.html for details.
-------------------------------------------------------------------
Fri Feb 17 20:53:49 UTC 2012 - detlef.steuer@gmx.de
- Minor cleanup for easier automativ building of R-patched.spec
-------------------------------------------------------------------
Wed Feb 15 19:41:43 UTC 2012 - detlef.steuer@gmx.de
- changed licence string to "GPL-2.0 or GPL-3.0"
-------------------------------------------------------------------
Mon Feb 13 22:39:51 UTC 2012 - detlef.steuer@gmx.de
- uninstall rule for R.conf more than useless ... reverted.
-------------------------------------------------------------------
Mon Feb 13 21:59:13 UTC 2012 - detlef.steuer@gmx.de
- Applications like KDE's Cantor search for the R standard library
- using the library search path. However, in openSUSE's package,
- libraries are installed to %{_libdir}/R/lib, hence attempts to
- load them from these applications will fail.
- This revision adds a R.conf file to ld.so.conf.d to enable
- searching for libraries where R is installed. Once this change
- is in, applications are able to use libR.so.
- Thx to einar@heavensinferno.net for spotting this.
- Thought had done this for release of 2.14.0.
-------------------------------------------------------------------
Thu Dec 22 12:19:10 UTC 2011 - steuer@unibw-hamburg.de
- Upstream updated to 2.14.1
- see, as usual, /usr/lib/R/doc/NEWS.html for details.
- Only minor bug fixes + workaround for missing inconsolata.sty
- on older systems.
-------------------------------------------------------------------
Mon Oct 31 12:40:03 UTC 2011 - detlef.steuer@gmx.de
- merged change infor Oct 5th into working copy
-------------------------------------------------------------------
Mon Oct 31 12:34:30 UTC 2011 - detlef.steuer@gmx.de
- corrected subpackge version number in R-base-devel
-------------------------------------------------------------------
Mon Oct 31 11:12:24 UTC 2011 - detlef.steuer@gmx.de
- Upstream updated to 2.14.0
- see, as usual, /usr/lib/R/doc/NEWS.html for details.
- On system side most important, that /etc/ld.so.conf.d/R-base.conf
- was added to help third party programs, i.e. rpy2, tp link against
- R-base
-------------------------------------------------------------------
Wed Oct 5 07:13:03 UTC 2011 - detlef.steuer@gmx.de
- corrected version string for Matrix subpackage
-------------------------------------------------------------------
Tue Oct 4 14:00:04 UTC 2011 - detlef.steuer@gmx.de
- removed 4 warnings about unescaped macros in comments
-------------------------------------------------------------------
Tue Oct 4 12:13:18 UTC 2011 - detlef.steuer@gmx.de
- explicitly added some locale directories. Worked before implicitly.
-------------------------------------------------------------------
Tue Oct 4 11:10:56 UTC 2011 - detlef.steuer@gmx.de
- update to upstream version 2.13.2
- see, as usual, /usr/lib/R/doc/NEWS.html for details.
-------------------------------------------------------------------
Sat Sep 17 10:18:38 UTC 2011 - jengelh@medozas.de
- Remove redundant tags/sections from specfile
- Use %_smp_mflags for parallel build
-------------------------------------------------------------------
Fri Jul 8 19:32:45 UTC 2011 - detlef.steuer@gmx.de
- resolved some conflicts for R-base.spec after osc up -e && osc pull
-------------------------------------------------------------------
Fri Jul 8 12:51:05 UTC 2011 - detlef.steuer@gmx.de
- corrected version string in R-base.spec
-------------------------------------------------------------------
Fri Jul 8 11:51:35 UTC 2011 - detlef.steuer@gmx.de
- Upstream updated to 2.13.1. Licence change from GPLv2 to GPLv2 || GPLv3.
Packages rpart and survival now GPLed, too.
Various minor bugfixes.
See /usr/lib/R/doc/NEWS.html for details.
-------------------------------------------------------------------
Thu May 12 13:45:43 UTC 2011 - detlef.steuer@gmx.de
- Removed possible dangerous links of libraries. R`s internal
libraries now are only available in $lib/R/lib .
-------------------------------------------------------------------
Fri May 6 07:33:40 UTC 2011 - detlef.steuer@gmx.de
- Changed Licence string to GPLv2, taken from opensuse`s list aof allowed
licences, as requested from coolo
-------------------------------------------------------------------
Wed Apr 13 11:13:38 UTC 2011 - detlef.steuer@gmx.de
- Upstream update to 2.13.0; new package 'compiler'; some new language files
-------------------------------------------------------------------
Fri Mar 4 12:36:54 UTC 2011 - detlef.steuer@gmx.de
- update to 2.12.2
minor bugfixes
see /usr/lib/R/doc/html/NEWS.html for details
-------------------------------------------------------------------
Mon Jan 10 16:56:55 CET 2011 - detlef.steuer@gmx.de
- removed -n parameter from %build/%install
- removed %doc from man/info pages in files section
-------------------------------------------------------------------
Fri Dec 17 14:05:39 UTC 2010 - detlef.steuer@gmx.de
reverting mandir/infodir directiven, didn't build in some releases-
-------------------------------------------------------------------
Fri Dec 17 12:40:12 UTC 2010 - detlef.steuer@gmx.de
sorted out list of problems shown bei mrueckert-
-------------------------------------------------------------------
Mon Nov 29 20:08:31 UTC 2010 - detlef.steuer@gmx.de
Version, to be submitted to factory-