./math/R-backports, Reimplementations of functions introduced since R-3.0.0

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.4.1, Package name: R-backports-1.4.1, Maintainer: pkgsrc-users

Functions introduced or changed since R v3.0.0 are re-implemented in
this package. The backports are conditionally exported in order to let
R resolve the function name to either the implemented backport, or the
respective base version, if available. Package developers can make use
of new functions or arguments by selectively importing specific
backports to support older installations.


Required to run:
[math/R]

Required to build:
[pkgtools/cwrappers]

Master sites: (Expand)


Version history: (Expand)


CVS history: (Expand)


   2022-05-29 02:15:51 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.4.1

Upstream changes:
backports 1.4.1

    Patched ...names() to match the new implementation in r-devel (svn rev 81283).

backports 1.4.0

    Added paste() with support for argument recycle0 for R versions prior to 4.0.1.
    Added paste0() with support for argument recycle0 for R versions prior to 4.0.1.
    Added backport for ...names() for R versions prior to 4.1.0.

backports 1.3.0

    Added backport for stopifnot() for R versions prior to 4.0.0.
    Adapted list2DF() to new behaviour introduced in r81038: the inputs are not \ 
recycled anymore to common length. Instead, an error is thrown.
   2021-10-26 12:56:13 by Nia Alarie | Files touched by this commit (458)
Log message:
math: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes
   2021-10-07 16:28:36 by Nia Alarie | Files touched by this commit (458)
Log message:
math: Remove SHA1 hashes for distfiles
   2021-01-03 12:30:46 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(math/R-backports) Updated 1.1.4 to 1.2.1

# backports 1.2.1

* Adapted `get0()` to work with R-devel / R-4.1.0 for first argument having \ 
length greater than 1.

# backports 1.2.0

* Switched to semantic versioning.
* Added backport for `asplit()` for R versions prior to 3.6.0 (#47).
* Added backport for `removeSource()` which also supports language objects for R \ 
versions prior to 3.6.0 (#50).
* Added backport for `isNamespaceLoaded` for R versions prior to 3.2.0 (#49).

# backports 1.1.10
* Added `suppressMessages()` and `suppressWarnings()` with support for argument \ 
`classes` for R versions prior to 4.0.0

# backports 1.1.9
* Added backports for `str2lang()` and `str2expression()` (#42)
  Thanks to @dmurdoch.
* `import()` imported too many functions and has been fixed.

# backports 1.1.8
* Added backport for `tools::vignetteInfo()` for R versions prior to 3.6.0
* Fixed import of `list2DF()` and `deparse1()`

# backports 1.1.7
* Added backport for `deparse1()` for R versions prior to 4.0.0.
* Added backport for `list2DF()` for R versions prior to 4.0.0.

# backports 1.1.6
* Added backport for `R_user_dir()` for R versions prior to 4.0.0.
* Added `dQuote()` and `sQuote()` with support for argument `q` for R versions \ 
prior to 3.6.0.

# backports 1.1.5
* Changed license from GPL-2 to GPL-2 or GPL-3.
* Added backport for `isTRUE()` implementing the new behaviour introduced in R 3.5.0.
   2019-08-08 21:53:58 by Brook Milligan | Files touched by this commit (189) | Package updated
Log message:
Update all R packages to canonical form.

The canonical form [1] of an R package Makefile includes the
following:

- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
  needed), and CATEGORIES.

- HOMEPAGE is not present but defined in math/R/Makefile.extension to
  refer to the CRAN web page describing the package.  Other relevant
  web pages are often linked from there via the URL field.

This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.

[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html