Jeroen Ooms

Results 244 issues of Jeroen Ooms

After upgrading to libgit2 1.5.0 some actions are showing: ``` Error in libgit2::git_repository_open_ext : config value 'safe.directory' was not found ``` For example [here](https://github.com/r-universe-org/control-room/runs/7971197744?check_suite_focus=true). I think this is a new...

On MacOS, running this a few times will eventually randomly hang at the last "object": ``` > gert::git_clone("https://github.com/hadley/tidytext.git", tempfile()) Transferred 9311 of 9312 objects... ``` Sometimes we see: `Error in...

Most functions currently have `verbose = interactive()` as default. As a result, when gert is used in CI scripts, most errors get muffled under the carpet and you can't see...

It is possible to create have a branch that uses another local branch as the upstream. In that case there is no remote, and we should skip fetching in git_pull....

This keeps happening on Windows in various packages: ``` > revdepcheck::revdep_check("V8", num_workers=3) -- CHECK ------------------------------------------------------------ 37 packages -- √ colormap 0.1.4 -- E: 0 | W: 0 | N: 0...

(same issue as https://github.com/TileDB-Inc/TileDB/issues/1737) For historical reasons, gcc enables sse2 by default on 64-bit, but not 32-bit. From the [gcc manual](https://gcc.gnu.org/onlinedocs/gcc-8.3.0/gcc/x86-Options.html#x86-Options): > For the x86-32 compiler, you must use -march=cpu-type,...

Currently lwgeom is the only r-spatial package that does not have an arm64 binary on r-universe, because it fails to cross compile: https://github.com/r-universe/r-spatial/actions/runs/7473658275/job/20338357207 These are fixed with: https://github.com/r-spatial/lwgeom/pull/86

Currently one check [failing](https://cran.r-project.org/web/checks/check_results_gridGraphics.html) because `convert` is not installed. Maybe try `magick::image_convert` which is available on most platforms. See [here](https://cran.r-project.org/web/packages/magick/vignettes/intro.html#pages) for an example.

There is now a fully portable (windows,mac,linux) standalone version of tesseract on CRAN (no need to manually install anything but the package). https://cran.r-project.org/web/packages/tesseract/index.html

Look into better third party multipart parsers: - [gmime](https://developer.gnome.org/gmime/stable/GMimeMultipart.html) (depends on glibc) - [multipart-parser-c](https://github.com/iafonov/multipart-parser-c)