pkgsrc/devel/R-purrr/Makefile
mef 683e4f11f6 (devel/R-purrr) Updated 1.0.0 to 1.0.1
# purrr 1.0.1

* As of purrr 1.0.0, the `map()` family of functions wraps all errors generated
  by `.f` inside an wrapper error that tracks the iteration index. As of purrr
  1.0.1, this error now has a custom class (`purrr_error_indexed`),
  `location` and `name` fields, and is documented in `?purrr_error_indexed`
  (#1027).

* `map()` errors with named inputs also report the name of the element that
  errored.

* Fixed an issue where progress bars weren't being closed when user interrupts
  or errors were encountered during a `map()` call (#1024).

* Fixed an invalid C signature for `pluck()` (#1018).

* Set `Biarch: true` to build purrr on 32-bit Windows on R < 4.2.0 (#1017).
2023-06-05 14:14:37 +00:00

29 lines
909 B
Makefile

# $NetBSD: Makefile,v 1.8 2023/06/05 14:14:37 mef Exp $
R_PKGNAME= purrr
R_PKGVER= 1.0.1
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Functional programming tools
LICENSE= gnu-gpl-v3
DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr
DEPENDS+= R-rlang>=0.3.1:../../devel/R-rlang
DEPENDS+= R-vctrs-[0-9]*:../../math/R-vctrs
DEPENDS+= R-lifecycle-[0-9]*:../../devel/R-lifecycle
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
TEST_DEPENDS+= R-httr-[0-9]*:../../www/R-httr
TEST_DEPENDS+= R-lubridate-[0-9]*:../../time/R-lubridate
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
TEST_DEPENDS+= R-tidyselect-[0-9]*:../../devel/R-tidyselect
USE_LANGUAGES= c
.include "../../math/R/Makefile.extension"
.include "../../devel/R-cli/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"