yonicd/texPreview

texPreview cannot be installed (Travis)

bestdan opened this issue · 2 comments

texPreview is a dependency of a dependency of the slackr package. It recently started error'ing on build on Travis:

https://travis-ci.com/bestdan/slackr

* installing *source* package ‘texPreview’ ...
** package ‘texPreview’ successfully unpacked and MD5 sums checked
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
** help
Error : (converted from warning) Rd macro package 'details' is not installed.
ERROR: installing Rd objects failed for package ‘texPreview’

Any suggestions for how to fix this? Something in the travis yaml?

Related to Issue #31. This will corrected in the upcoming CRAN submission.

In the mean time update the travis yml with

r_packages:
- details 

which will install the missing package.

Thanks, solved!