From 7cc6377624518e74e1946ad6598917b4d9e556ad Mon Sep 17 00:00:00 2001 From: Jim Hester Date: Thu, 4 Feb 2016 10:50:28 -0500 Subject: [PATCH] Final tweaks before CRAN submission --- .Rbuildignore | 1 - DESCRIPTION | 2 +- cran-comments.md | 5 ++--- revdep/.gitignore | 1 + revdep/check.R | 4 ++++ revdep/summary.md | 48 +++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 56 insertions(+), 5 deletions(-) create mode 100644 revdep/.gitignore create mode 100644 revdep/check.R create mode 100644 revdep/summary.md diff --git a/.Rbuildignore b/.Rbuildignore index ab88d6d9..e91d9604 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -3,7 +3,6 @@ ^withr\.Rcheck$ ^\.travis\.yml$ ^\.lintr$ -^NEWS\.MD$ ^appveyor\.yml$ ^\.Rproj\.user$ ^man-roxygen$ diff --git a/DESCRIPTION b/DESCRIPTION index 074914e2..6e00cf7c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -37,4 +37,4 @@ Collate: 'wrap.R' 'sink.R' 'with.R' -RoxygenNote: 5.0.0 +RoxygenNote: 5.0.1 diff --git a/cran-comments.md b/cran-comments.md index 97f82a24..bb479e43 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -2,14 +2,13 @@ * OS X El Capitan, R 3.2.3 * ubuntu 12.04 (on travis-ci), R 3.2.3 * Windows Server 2012 R2 (x64), R 3.2.3 +* win-builder (devel and release) ## R CMD check results There were no NOTEs, ERRORs or WARNINGs. ## Downstream dependencies -There are currently no downstream dependencies for this package. - * I ran R CMD check on all 1 downstream dependencies of withr Summary at: https://github.com/jimhester/withr/blob/master/revdep/summary.md -* There were No ERRORs +* There were no ERRORs diff --git a/revdep/.gitignore b/revdep/.gitignore new file mode 100644 index 00000000..530234ef --- /dev/null +++ b/revdep/.gitignore @@ -0,0 +1 @@ +**/ diff --git a/revdep/check.R b/revdep/check.R new file mode 100644 index 00000000..940dd2d8 --- /dev/null +++ b/revdep/check.R @@ -0,0 +1,4 @@ +library("devtools") + +res <- revdep_check() +revdep_check_save_summary(res) diff --git a/revdep/summary.md b/revdep/summary.md new file mode 100644 index 00000000..4ef32f27 --- /dev/null +++ b/revdep/summary.md @@ -0,0 +1,48 @@ +# Setup + +## Platform + +|setting |value | +|:--------|:----------------------------| +|version |R version 3.2.3 (2015-12-10) | +|system |x86_64, darwin15.2.0 | +|ui |unknown | +|language |(EN) | +|collate |en_US.UTF-8 | +|tz |America/New_York | +|date |2016-02-04 | + +## Packages + +|package | * |version |date |source | * | +|:-------|:--|:-------|:----|:------|:--| + +# Check results +1 checked out of 1 dependencies + +## devtools (1.10.0) +Maintainer: Hadley Wickham +Bug reports: https://github.com/hadley/devtools/issues + +``` +checking foreign function calls ... NOTE +Registration problem: + Evaluating ‘dll$foo’ during check gives error +‘object 'dll' not found’: + .C(dll$foo, 0L) +See chapter ‘System and foreign language interfaces’ in the ‘Writing R +Extensions’ manual. +``` +``` +checking R code for possible problems ... NOTE +Found the following calls to attach(): +File ‘devtools/R/package-env.r’: + attach(NULL, name = pkg_env_name(pkg)) +File ‘devtools/R/shims.r’: + attach(e, name = "devtools_shims", warn.conflicts = FALSE) +See section ‘Good practice’ in ‘?attach’. +``` +``` +DONE +Status: 2 NOTEs +```