Jim Hester
Jim Hester
I am not sure 4 is actually a worthwhile goal and quickly becomes computationally infeasible for all but the most trivial of functions. QuickCheck et. al. are useful to approximate...
just found (https://github.com/klutometis/roxygen/issues/88) which is actually pretty close to what @leeper is proposing. Might not be too hard to update to current roxygen.
I think if rdoc just called `help()` rather than `utils::help()`at https://github.com/mdequeljoe/rdoc/blob/75fcca917c4f7b93c7972f674b157b392cb5a71c/R/rdoc.R#L19 it would work with the devtools shims. But you might have to do something like `get("help")()` to avoid a...
I have to do similar hooking for the code manipulation in covr in my still in development [v2 implementation](https://github.com/jimhester/covr/blob/v2/R/covr.R#L185-L192) which adds an `onLoad()` hook to the installed package lazy loading...
You can use the [BFG repo cleaner](https://rtyley.github.io/bfg-repo-cleaner/) to strip out uneeded binaries and files bigger than a given size from the git history. Note however that forks prior to the...
FWIW it looks like [pandoc](https://github.com/travis-ci/apt-package-whitelist/blob/577aecfe6eaf53ccf91206937fbec2f1e113d3cd/ubuntu-precise#L5115-L5116) and [texlive](https://github.com/travis-ci/apt-package-whitelist/blob/577aecfe6eaf53ccf91206937fbec2f1e113d3cd/ubuntu-precise#L5647-L5832) are already whitelisted packages on ubuntu-precise. I am also unclear if once you have a whitelisted source if you need to also whitelist...
@yihui I opened https://github.com/travis-ci/travis-ci/issues/3729#issuecomment-94945908 which should whitelist what you are looking for once someone from travis takes a look at it.
Perhaps just use `base::writeBin()` or possibly `brio::write_file_raw()` if you want to write bytes to disk and not do any transformations of the data.
I didn't realize this was occurring only when running x86 R on a m1 mac. I think most likely this is an artifact of the x86 virtualization on arm, likely...
I believe this is intentional behavior, the idea is that libraries should be self contained, e.g. all packages a project or package needs should be installed in the same library....