diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-07-21 12:14:04 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-07-21 12:14:04 +0200 |
commit | 999c3e1920cecffb5bc16180b1cfb14286dd1c74 (patch) | |
tree | 642fd35f87f5bb08f83f375bd3657db72baefdeb | |
parent | f59968a5c32ce5a4198eb203dee99068039ecade (diff) |
Manually specify exports in NAMESPACEv0.7.4
Thanks for Ivan Krylov on r-pkg-devel for explaining why using
export(".") lead to a NOTE on R-devel (win-builder) and why
it is preferable to explicitly specify exports.
-rw-r--r-- | NAMESPACE | 10 | ||||
-rw-r--r-- | check.log | 12 |
2 files changed, 18 insertions, 4 deletions
@@ -1,4 +1,12 @@ -exportPattern(".") +export("checkcontrols") +export("checkexperiment") +export("checkplate") +export("checksubstance") +export("drcfit") +export("drdata") +export("drfit") +export("drplot") +export("linlogitf") import( graphics, @@ -10,7 +10,7 @@ * checking for file ‘drfit/DESCRIPTION’ ... OK * this is package ‘drfit’ version ‘0.7.4’ * package encoding: UTF-8 -* checking CRAN incoming feasibility ... [3s/10s] Note_to_CRAN_maintainers +* checking CRAN incoming feasibility ... [3s/11s] Note_to_CRAN_maintainers Maintainer: ‘Johannes Ranke <jranke@uni-bremen.de>’ * checking package namespace information ... OK * checking package dependencies ... OK @@ -26,7 +26,9 @@ Maintainer: ‘Johannes Ranke <jranke@uni-bremen.de>’ * checking package directory ... OK * checking for future file timestamps ... OK * checking DESCRIPTION meta-information ... OK -* checking top-level files ... OK +* checking top-level files ... NOTE +Non-standard file/directory found at top level: + ‘tmp.txt’ * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK @@ -79,5 +81,9 @@ Maintainer: ‘Johannes Ranke <jranke@uni-bremen.de>’ * checking for detritus in the temp directory ... OK * DONE -Status: OK +Status: 1 NOTE +See + ‘/home/jranke/git/drfit/drfit.Rcheck/00check.log’ +for details. + |