# CHANGES IN xfun VERSION 0.20 ## NEW FEATURES - Added a function `msg_cat()` to generate a message with `cat()`. See the help page `?xfun::msg_cat` for more information. - Added a function `mark_dirs()` to mark directories with a trailing slash in a vector of paths to differentiate them from normal filenames (#44). ## BUG FIXES - `xfun::proc_kill()` failed to work on *nix. - `xfun::del_empty_dir()` failed to delete empty dirs. - `xfun::file_string()` preserves emptiness (thanks, @MichaelChirico, #38). - `xfun::raw_string()` preserves the class(es) of the input now (thanks, @MichaelChirico, #40). ## MINOR CHANGES - Exported the function `dir_create()`.
22 lines
624 B
Makefile
22 lines
624 B
Makefile
# $NetBSD: Makefile,v 1.6 2021/02/08 12:20:48 mef Exp $
|
|
|
|
R_PKGNAME= xfun
|
|
R_PKGVER= 0.20
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Miscellaneous functions by 'Yihui Xie'
|
|
LICENSE= mit
|
|
|
|
# Packages suggested but not available:
|
|
# 'testit', 'pak'
|
|
TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
|
|
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
|
|
TEST_DEPENDS+= R-tinytex-[0-9]*:../../print/R-tinytex
|
|
TEST_DEPENDS+= R-testit-[0-9]*:../../devel/R-testit
|
|
TEST_DEPENDS+= R-pak-[0-9]*:../../devel/R-pak
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|