search for: _r_check_force_suggests_

Displaying 16 results from an estimated 16 matches for "_r_check_force_suggests_".

2016 Jun 20
4
RODBC on Mac & _R_CHECK_FORCE_SUGGESTS_
...under Mac OS X 10.11.5 ends as follows: >* checking package dependencies ... ERROR >Package suggested but not available: ?RODBC? > >The suggested packages are required for a complete check. >Checking can be attempted without them by setting the environment >variable _R_CHECK_FORCE_SUGGESTS_ to a false value. Unfortunately, "install.packages('RODBC')" says it's only available in source form. When I attempt to install from sources, it fails as follows: >checking for sqlext.h... no >configure: error: "ODBC headers sql.h and sqlext.h no...
2016 Jun 20
0
RODBC on Mac & _R_CHECK_FORCE_SUGGESTS_
...as follows: > > > >* checking package dependencies ... ERROR > >Package suggested but not available: ?RODBC? > > > >The suggested packages are required for a complete check. > >Checking can be attempted without them by setting the environment > >variable _R_CHECK_FORCE_SUGGESTS_ to a false value. > > > Unfortunately, "install.packages('RODBC')" says it's only available in source form. When I attempt to install from sources, it fails as follows: > > > >checking for sqlext.h... no > >configure: error: "ODBC he...
2016 Jun 20
0
RODBC on Mac & _R_CHECK_FORCE_SUGGESTS_
...follows: > > > >* checking package dependencies ... ERROR > >Package suggested but not available: ?RODBC? > > > >The suggested packages are required for a complete check. > >Checking can be attempted without them by setting the environment > >variable _R_CHECK_FORCE_SUGGESTS_ to a false value. > > > Unfortunately, "install.packages('RODBC')" says it's only available > in source form. When I attempt to install from sources, it fails as > follows: > > > >checking for sqlext.h... no > >configure: error: &quo...
2016 Apr 02
3
Suggested dependencies in context of R CMD check
Dear R team, Are suggested dependencies mandatory in context of `R CMD check` when using env var `_R_CHECK_FORCE_SUGGESTS_=FALSE`? Suggested dependencies are nice because are optional. But that feature often isn't valid when trying to run `R CMD check` on them. I would like to use `export _R_CHECK_FORCE_SUGGESTS_=FALSE`, which according to the comment in `tools/R/check.R`: > The suggested packages are required...
2016 Apr 04
1
Suggested dependencies in context of R CMD check
...h out of R CMD check (and thus the assurances granted by knowing a package passes it). AFAIK (without going off and checking right now) you /could/ force R CMD check to do this now with a combination of options, though, if that's really what you want (which would allow your package to pass when _R_CHECK_FORCE_SUGGESTS_ is set to false). ~G On Mon, Apr 4, 2016 at 7:25 AM, Hadley Wickham <h.wickham at gmail.com> wrote: > On Sat, Apr 2, 2016 at 5:33 AM, Jan G?recki <J.Gorecki at wit.edu.pl> wrote: > > Dear R team, > > > > Are suggested dependencies mandatory in context of `R CMD c...
2020 May 13
1
docs about _R_CHECK_FORCE_SUGGESTS_ ?
...atch for that together if there is a) interest, and b) a patch is preferable to someone on R-core simply doing that migration themselves. I do also agree that given that _R_CHECK_DEPENDS_ONLY_ and _R_CHECK_SUGGESTS_ONLY_ are mentioned in the section you link, it would perhaps make sense to mention _R_CHECK_FORCE_SUGGESTS_ as well. I can put that in the patch as well, if there is agreement from R-core that one or both of these changes make sense. Best, ~G On Wed, May 13, 2020 at 11:07 AM G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: > See at https://cran.r-project.org/doc/manuals/r-devel/R-ints.html#Too...
2020 May 13
2
docs about _R_CHECK_FORCE_SUGGESTS_ ?
Can someone please add documentation for that environment variable to Writing R Extensions? An appropriate place would be section https://cloud.r-project.org/doc/manuals/r-release/R-exts.html#Suggested-packages which already discusses _R_CHECK_DEPENDS_ONLY_=true [[alternative HTML version deleted]]
2016 Apr 04
0
Suggested dependencies in context of R CMD check
On Sat, Apr 2, 2016 at 5:33 AM, Jan G?recki <J.Gorecki at wit.edu.pl> wrote: > Dear R team, > > Are suggested dependencies mandatory in context of `R CMD check` when > using env var `_R_CHECK_FORCE_SUGGESTS_=FALSE`? > > Suggested dependencies are nice because are optional. > But that feature often isn't valid when trying to run `R CMD check` on them. > I would like to use `export _R_CHECK_FORCE_SUGGESTS_=FALSE`, which > according to the comment in `tools/R/check.R`: > >> The...
2012 Feb 01
2
location of check.Renviron on Windows
...indows 7 machine, and I want to tell R check not to worry about the "suggested" packages. I realize this can be done using the ~/.R/check.Renviron file, but what directory corresponds to "~"? Is that supposed to be the user directory? Or is it some other directory? I have this _R_CHECK_FORCE_SUGGESTS_=false (have also tried FALSE) in C:\Users\username\.R I have also tried putting the file in C:\Users\username Using r58183 Thanks, -Robert Robert M. Flight, Ph.D. University of Louisville Bioinformatics Laboratory University of Louisville Louisville, KY PH 502-852-1809 (HSC) PH 502-852-0467 (...
2018 Sep 18
2
Suggested Patch: Adding commas to list of packages after R CMD check
...devtools' 'VennDiagram' 'BiocStyle' 'curatedTCGAData' VignetteBuilder package required for checking but not installed: 'knitr' The suggested packages are required for a complete check. Checking can be attempted without them by setting the environment variable _R_CHECK_FORCE_SUGGESTS_ to a false value. See section 'The DESCRIPTION file' in the 'Writing R Extensions' manual. * DONE Status: 1 ERROR See '/home/ubuntu/Bioconductor/glmSparseNet.Rcheck/00check.log' for details. ``` Suggested Patch: To return a list of missing dependencies delimited by a...
2018 Sep 18
0
Suggested Patch: Adding commas to list of packages after R CMD check
...am' 'BiocStyle' 'curatedTCGAData' > > VignetteBuilder package required for checking but not installed: 'knitr' > > The suggested packages are required for a complete check. > Checking can be attempted without them by setting the environment > variable _R_CHECK_FORCE_SUGGESTS_ to a false value. > > See section 'The DESCRIPTION file' in the 'Writing R Extensions' > manual. > * DONE > > Status: 1 ERROR > See > '/home/ubuntu/Bioconductor/glmSparseNet.Rcheck/00check.log' > for details. > ``` > > > Suggeste...
2011 Dec 15
1
DESCRIPTION Suggests entry help
How should the Suggests entry be written in this case? Have package that supports parallel processing available for multiple R versions. Original package DESCRIPTION Suggests entry only listed 'multicore' and life was good. Since R-2.14+ includes 'parallel' package, thought I could reference that on the Suggests entry too. But not so fast. As it doesn't exist for previous
2012 May 15
1
Need your help setting $R_check_force_suggests = "FALSE" on Windows system
r-help at r-project.org Dear friends, I want to make the following change of R setting on a windows 7 desktop. $R_check_force_suggests = "FALSE" Since I have no experience using Unix, I don't how to make the suggestions in "writing R extension" works for windows. I will appreciate if you would help me to figure out what is the equivalent of the following settings in
2009 Sep 02
2
Dependencies of packages' CHECK....
I'm working to automate the building of RPM packages for CRAN &c. In the process, I'm trying to get a sense of the correct dependencies. It's my sense that R CMD CHECK is the Right Way to check to see if a package is built properly. But according to Writing R Extensions, I could reasonably expect anything in Suggests or Imports to be used by CHECK. In RPM parlance, this turns
2016 Apr 12
0
Dispatch issue in package check?
...ON meta-information ... OK * checking for LF line-endings in source and make files * checking for empty or unneeded directories * building '<pkg>_0.0.0.9001.tar.gz' Setting env vars --------------------------------------------------------------- _R_CHECK_CRAN_INCOMING_ : FALSE _R_CHECK_FORCE_SUGGESTS_: FALSE Checking <other arguments>) --------------------------------------------------------------- "C:/PROGRA~1/R/R-32~1.4/bin/i386/R" --no-site-file --no-environ --no-save \ --no-restore --quiet CMD check \ "C:\Users\szumiloj\AppData\Local\Temp\RtmpWKHu33/<pkg>...
2010 Oct 15
1
Package 'nlme' fails 'make check-all' in R 2.12.0 patched built from source
Hi all, I am building R 2.12.0 patched this morning from source on Snow Leopard (10.6.4). In fact, three times now, with separate clean source and build directories each time, just to be sure that the issue is predictable. I would be happy to have somebody tell me that I am missing something fundamental here also... After running make check-all, I get the following error for 'nlme': *