Revisions of R-base

buildservice-autocommit accepted request 512757 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 61)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 60)
-  Corrected "bug" "https://bugzilla.suse.com/show_bug.cgi?id=1049503
   R now installs zip and unzip, what in turn eases the installation
   of packages directly from github via devtools.
buildservice-autocommit accepted request 507288 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 59)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 58)
- upstream update to 3.4.1
CHANGES IN R 3.4.1:
  INSTALLATION on a UNIX-ALIKE:
    * The deprecated support for PCRE versions older than 8.20 has been
      removed.
  BUG FIXES:
    * getParseData() gave incorrect column information when code
      contained multi-byte characters.  (PR#17254)
    * Asking for help using expressions like ?stats::cor() did not
      work.  (PR#17250)
    * readRDS(url(....)) now works.
    * R CMD Sweave again returns status = 0 on successful completion.
    * Vignettes listed in .Rbuildignore were not being ignored
      properly.  (PR#17246)
    * file.mtime() no longer returns NA on Windows when the file or
      directory is being used by another process.  This affected
      installed.packages(), which is now protected against this.
    * R CMD INSTALL Windows .zip file obeys --lock and --pkglock flags.
    * (Windows only) The choose.files() function could return incorrect
      results when called with multi = FALSE.  (PR#17270)
    * aggregate(<data.frame>, drop = FALSE) now also works in case of
      near-equal numbers in by.  (PR#16918)
    * fourfoldplot() could encounter integer overflow when calculating
      the odds ratio. (PR#17286)
    * parse() no longer gives spurious warnings when extracting srcrefs
      from a file not encoded in the current locale.
      This was seen from R CMD check with inst/doc/*.R files, and check
      has some additional protection for such files.
    * print.noquote(x) now always returns its argument x (invisibly).
    * Non-UTF-8 multibyte character sets were not handled properly in
buildservice-autocommit accepted request 489881 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 57)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 56)
- upstream update to 3.4.0
  CHANGES IN R 3.4.0:
  SIGNIFICANT USER-VISIBLE CHANGES:
   * (Unix-alike) The default methods for download.file() and url()
     now choose "libcurl" except for file:// URLs.  There will be
     small changes in the format and wording of messages, including in
     rare cases if an issue is a warning or an error.  For example,
     when HTTP re-direction occurs, some messages refer to the final
     URL rather than the specified one.
     Those who use proxies should check that their settings are
     compatible (see ?download.file: the most commonly used forms work
     for both "internal" and "libcurl").
   * table() has been amended to be more internally consistent and
     become back compatible to R <= 2.7.2 again.  Consequently,
     table(1:2, exclude = NULL) no longer contains a zero count for
     <NA>, but useNA = "always" continues to do so.
   * summary.default() no longer rounds, but its print method does
     resulting in less extraneous rounding, notably of numbers in the
     ten thousands.
   * factor(x, exclude = L) behaves more rationally when x or L are
     character vectors.  Further, exclude = <factor> now behaves as
     documented for long.
   * Arithmetic, logic (&, |) and comparison (aka 'relational', e.g.,
     <, ==) operations with arrays now behave consistently, notably
     for arrays of length zero.
     Arithmetic between length-1 arrays and longer non-arrays had
     silently dropped the array attributes and recycled.  This now
     gives a warning and will signal an error in the future, as it has
     always for logic and comparison operations in these cases (e.g.,
     compare matrix(1,1) + 2:3 and matrix(1,1) < 2:3).
buildservice-autocommit accepted request 489054 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 55)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 54)
- And again that ldconfig call. Newline was obviously wrong.
  Hopefully correct now.
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 53)
- Jan Engelhardt <jengelh@inai.de> asked for reverting the change
  to the ldconfig call. So be it.
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 52)
- improvements for
  a) calling /sbin/ldconfig, which no longer gives a warning
  b) unregistering info-pages in %preun instead of %postun
buildservice-autocommit accepted request 477409 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 51)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 50)
- a change in OBS now requires a BuildRequire: shadow for
  some openSUSE releases.
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 49)
Forgot to remove old sources.
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 48)
- upstream release 3.3.3
- Most important changes
  CHANGES IN R 3.3.3:
  NEW FEATURES:
    * Changes when redirection of a http:// URL to a https:// URL is
      encountered:
        * The internal methods of download.file() and url() now report
          that they cannot follow this (rather than failing silently).
        * (Unix-alike) download.file(method = "auto") (the default)
          re-tries with method = "libcurl".
        * (Unix-alike) url(method = "default") with an explicit open
          argument re-tries with method = "libcurl".  This covers many
          of the usages, e.g. readLines() with a URL argument.
  INSTALLATION on a UNIX-ALIKE:
    * The configure check for the zlib version is now robust to
      versions longer than 5 characters, including 1.2.11.
  UTILITIES:
    * Environmental variable _R_CHECK_TESTS_NLINES_ controls how R CMD
      check reports failing tests (see SS8 of the 'R Internals' manual).
  DEPRECATED AND DEFUNCT:
    * (C-level Native routine registration.)  The undocumented styles
      field of the components of R_CMethodDef and R_FortranMethodDef is
      deprecated.
  BUG FIXES:
    * vapply(x, *) now works with long vectors x.  (PR#17174)
    * isS3method("is.na.data.frame") and similar are correct now.
      (PR#17171)
    * grepRaw(<long>, <short>, fixed = TRUE) now works, thanks to a
      patch by Mikko Korpela.  (PR#17132)
    * Package installation into a library where the package exists
buildservice-autocommit accepted request 438022 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 47)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 46)
- upstream release 3.3.2
- Most important changes
  CHANGES IN R 3.3.2:
  NEW FEATURES:
    * extSoftVersion() now reports the version (if any) of the readline
      library in use.
    * The version of LAPACK included in the sources has been updated to
      3.6.1, a bug-fix release including a speedup for the
      non-symmetric case of eigen().
    * Use options(deparse.max.lines=) to limit the number of lines
      recorded in .Traceback and other deparsing activities.
    * format(<AsIs>) looks more regular, also for non-character atomic
      matrices.
    * abbreviate() gains an option named = TRUE.
    * The online documentation for package methods is extensively
      rewritten.  The goals are to simplify documentation for basic
      use, to note old features not recommended and to correct
      out-of-date information.
    * Calls to setMethod() no longer print a message when creating a
      generic function in those cases where that is natural: S3
      generics and primitives.
  INSTALLATION and INCLUDED SOFTWARE:
    * Versions of the readline library >= 6.3 had been changed so that
      terminal window resizes were not signalled to readline: code has
      been added using a explicit signal handler to work around that
      (when R is compiled against readline >= 6.3).  (PR#16604)
    * configure works better with Oracle Developer Studio 12.5.
  UTILITIES:
    * R CMD check reports more dubious flags in files
      src/Makevars[.in], including -w and -g.
buildservice-autocommit accepted request 406738 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 45)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) accepted request 405931 from Todd R's avatar Todd R (TheBlackCat) (revision 44)
Fix typo in Group tag.
buildservice-autocommit accepted request 403835 from Detlef Steuer's avatar Detlef Steuer (dsteuer) (revision 43)
baserev update by copy to link target
Detlef Steuer's avatar Detlef Steuer (dsteuer) committed (revision 42)
- upstream release 3.3.1
- Most important changes
  CHANGES IN R 3.3.1:
  BUG FIXES:
    * R CMD INSTALL and hence install.packages() gave an internal error
      installing a package called description from a tarball on a
      case-insensitive file system.
    * match(x, t) (and hence x %in% t) failed when x was of length one,
      and either character and x and t only differed in their Encoding
      or when x and t where complex with NAs or NaNs.  (PR#16885.)
    * unloadNamespace(ns) also works again when ns is a 'namespace', as
      from getNamespace().
    * rgamma(1,Inf) or rgamma(1, 0,0) no longer give NaN but the
      correct limit.
    * length(baseenv()) is correct now.
    * pretty(d, ..) for date-time d rarely failed when "halfmonth" time
      steps were tried (PR#16923) and on 'inaccurate' platforms such as
      32-bit windows or a configuration with --disable-long-double; see
      comment #15 of PR#16761.
    * In text.default(x, y, labels), the rarely(?) used default for
      labels is now correct also for the case of a 2-column matrix x
      and missing y.
    * as.factor(c(a = 1L)) preserves names() again as in R < 3.1.0.
    * strtrim(""[0], 0[0]) now works.
    * Use of Ctrl-C to terminate a reverse incremental search started
      by Ctrl-R in the readline-based Unix terminal interface is now
      supported for readline >= 6.3 (Ctrl-G always worked).  (PR#16603)
    * diff(<difftime>) now keeps the "units" attribute, as subtraction
      already did, PR#16940.
Displaying revisions 81 - 100 of 141
openSUSE Build Service is sponsored by