Fix a typo Upstream changes: rlang 0.4.10 New hash() function to generate 128-bit hashes for arbitrary R objects using the xxHash library. The implementation is modeled after xxhashlite, created by @coolbutuseless. New check_installed() function. Unlike is_installed(), it asks the user whether to install missing packages. If the user accepts, the packages are installed with pak::pkg_install() if available, or utils::install.packages() otherwise. If the session is non interactive or if the user chooses not to install the packages, the current evaluation is aborted (#1075). rlang is now licensed as MIT (#1063). Fixed an issue causing extra empty lines in inform() messages with .frequency (#1076, @schloerke). expr_deparse() now correctly wraps code using :: and ::: (#1072, @krlmlr).
18 lines
488 B
Makefile
18 lines
488 B
Makefile
# $NetBSD: Makefile,v 1.11 2021/04/29 08:16:04 wen Exp $
|
|
|
|
R_PKGNAME= rlang
|
|
R_PKGVER= 0.4.10
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
COMMENT= Functions for base types and core R and 'Tidyverse' features
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
|
|
TEST_DEPENDS+= tex-inconsolata-[0-9]*:../../fonts/tex-inconsolata
|
|
TEST_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|